/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* White text for readability on dark background */
    background-color: #1a1a1a; /* Dark background */
}

.page-promotions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main titles */
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #8B0000; /* Dark Red accent */
    border-radius: 2px;
}

.page-promotions-main-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-promotions-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #330000 50%, #1a1a1a 100%); /* Dark gradient for hero */
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-promotions-hero-description {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-promotions-hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promotions-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.page-promotions-btn-primary {
    background-color: #FFD700; /* Gold button */
    color: #1a1a1a; /* Dark text on gold */
    border-color: #FFD700;
}

.page-promotions-btn-primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-btn-secondary {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-promotions-btn-secondary:hover {
    background-color: #FFD700;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.page-promotions-btn-outline {
    background-color: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 25px;
    font-size: 1em;
}

.page-promotions-btn-outline:hover {
    background-color: #FFD700;
    color: #1a1a1a;
}

.page-promotions-btn-text {
    background: none;
    border: none;
    color: #FFD700;
    text-decoration: underline;
    padding: 0;
    font-size: 1em;
}

.page-promotions-btn-text:hover {
    color: #e6c200;
}

.page-promotions-btn-large {
    padding: 18px 45px;
    font-size: 1.3em;
}

.page-promotions-intro p {
    max-width: 900px;
    margin: 20px auto 40px auto;
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-promotions-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-feature-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-feature-item:hover {
    transform: translateY(-10px);
}

.page-promotions-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-feature-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-promotions-feature-item p {
    color: #CCCCCC;
    line-height: 1.5;
}

.page-promotions-offer-types p {
    max-width: 900px;
    margin: 20px auto 40px auto;
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-promotions-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.page-promotions-offer-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s ease;
}

.page-promotions-offer-card:hover {
    transform: translateY(-10px);
}

.page-promotions-offer-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.page-promotions-offer-title {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
    padding: 0 20px;
}

.page-promotions-offer-description {
    color: #CCCCCC;
    line-height: 1.5;
    margin-bottom: 25px;
    padding: 0 20px;
    min-height: 90px; /* Ensure consistent height */
}

.page-promotions-detail-list p {
    max-width: 900px;
    margin: 20px auto 40px auto;
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-promotions-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-promotions-detail-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-promotions-detail-item:hover {
    transform: translateY(-10px);
}

.page-promotions-detail-title {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-promotions-detail-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-detail-title a:hover {
    color: #e6c200;
}

.page-promotions-detail-description {
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 80px; /* Ensure consistent height */
}

.page-promotions-btn-link {
    color: #8B0000; /* Dark Red for link buttons */
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.page-promotions-btn-link:hover {
    color: #FFD700;
}

.page-promotions-arrow {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.page-promotions-btn-link:hover .page-promotions-arrow {
    transform: translateX(5px);
}

.page-promotions-how-to-claim p {
    max-width: 900px;
    margin: 20px auto 40px auto;
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-promotions-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-step-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-promotions-step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px #8B0000);
}

.page-promotions-step-item h3 {
    color: #FFD700;
    font-size: 1.6em;
    margin-bottom: 15px;
}

.page-promotions-step-item p {
    color: #CCCCCC;
    line-height: 1.5;
    margin-bottom: 25px;
    min-height: 90px;
}

.page-promotions-step-item p a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions-step-item p a:hover {
    color: #e6c200;
}

.page-promotions-responsible-gambling p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-promotions-faq {
    text-align: left;
}

.page-promotions-faq p {
    max-width: 900px;
    margin: 20px auto 40px auto;
    font-size: 1.1em;
    line-height: 1.6;
    color: #E0E0E0;
}

.page-promotions-faq-item {
    background-color: #2a2a2a;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.page-promotions-faq-question {
    color: #FFD700;
    font-size: 1.3em;
    padding: 20px 25px;
    cursor: pointer;
    position: relative;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-promotions-faq-question:hover {
    background-color: #3a3a3a;
}

.page-promotions-faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #8B0000;
    transition: transform 0.3s ease;
}

.page-promotions-faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-faq-answer {
    color: #CCCCCC;
    padding: 0 25px 20px 25px;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 0 25px 20px 25px;
}

.page-promotions-cta-final {
    background: linear-gradient(90deg, #8B0000 0%, #FFD700 100%); /* Red to Gold gradient */
    padding: 80px 0;
    color: #1a1a1a; /* Dark text on bright background */
}

.page-promotions-cta-final .page-promotions-section-title {
    color: #1a1a1a; /* Dark text for title */
}

.page-promotions-cta-final .page-promotions-section-title::after {
    background-color: #1a1a1a; /* Dark line */
}

.page-promotions-cta-final p {
    font-size: 1.2em;
    color: #333333;
    max-width: 800px;
    margin: 20px auto 40px auto;
    line-height: 1.6;
}

.page-promotions-cta-final .page-promotions-btn-primary {
    background-color: #1a1a1a;
    color: #FFD700;
    border-color: #1a1a1a;
}

.page-promotions-cta-final .page-promotions-btn-primary:hover {
    background-color: #333333;
    color: #e6c200;
    border-color: #333333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions-section-title {
        font-size: 2.2em;
    }
    .page-promotions-main-title {
        font-size: 2.8em;
    }
}

@media (max-width: 768px) {
    .page-promotions-hero {
        padding: 80px 0;
    }
    .page-promotions-main-title {
        font-size: 2.2em;
    }
    .page-promotions-hero-description {
        font-size: 1em;
    }
    .page-promotions-hero-cta {
        flex-direction: column;
    }
    .page-promotions-btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-promotions-features, .page-promotions-offer-grid, .page-promotions-detail-grid, .page-promotions-steps {
        grid-template-columns: 1fr;
    }
    .page-promotions-section-title {
        font-size: 1.8em;
    }
    .page-promotions-offer-description, .page-promotions-detail-description, .page-promotions-step-item p, .page-promotions-faq-answer {
        min-height: auto; /* Allow content to dictate height on small screens */
    }
}

@media (max-width: 480px) {
    .page-promotions-hero {
        padding: 60px 0;
    }
    .page-promotions-main-title {
        font-size: 1.8em;
    }
    .page-promotions-section-title {
        font-size: 1.5em;
    }
    .page-promotions-btn {
        font-size: 0.9em;
        padding: 12px 25px;
    }
    .page-promotions-faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions-faq-question::after {
        right: 20px;
    }
    .page-promotions-faq-answer {
        padding: 0 20px 15px 20px;
    }
}