/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

.page-promotions__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-promotions__section--dark {
    background-color: #2D3748;
    color: #E0E0E0;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-promotions__section-title--light {
    color: #FFD700;
}

.page-promotions__section-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #CCCCCC; /* Slightly lighter grey for paragraph text */
}

.page-promotions__section-text--light {
    color: #E0E0E0;
}

.page-promotions__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1em;
    cursor: pointer;
    border: none;
}

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A202C; /* Dark text on gold */
}

.page-promotions__btn--primary:hover {
    background-color: #E5C100;
}

.page-promotions__btn--secondary {
    background-color: #3A475C;
    color: #FFD700;
    border: 1px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-promotions__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 450px;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-content {
    z-index: 1;
    max-width: 900px;
}

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

.page-promotions__hero-description {
    font-size: 1.3em;
    color: #E0E0E0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Promotion Types Grid */
.page-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions__type-card {
    background-color: #2D3748;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-image {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: #B0B0B0;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* How to Claim Steps */
.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 40px auto;
}

.page-promotions__steps-list li {
    background-color: #2D3748;
    border-left: 5px solid #FFD700;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps-list li strong {
    color: #FFD700;
    font-weight: bold;
}

.page-promotions__steps-list li a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions__steps-list li a:hover {
    color: #E5C100;
}

/* Detail Pages Grid */
.page-promotions__detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.page-promotions__detail-card {
    background-color: #1A202C;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease;
}

.page-promotions__detail-card:hover {
    transform: translateY(-5px);
}

.page-promotions__detail-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions__detail-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions__detail-title a:hover {
    text-decoration: underline;
    color: #E5C100;
}

.page-promotions__detail-description {
    font-size: 0.9em;
    color: #B0B0B0;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Benefits List */
.page-promotions__benefits-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-promotions__benefits-list li {
    background-color: #2D3748;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.05em;
    color: #E0E0E0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #FFD700;
}

.page-promotions__benefits-list li strong {
    color: #FFD700;
}

.page-promotions__benefits-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Responsible Gambling */
.page-promotions__responsible-list {
    list-style: disc;
    text-align: left;
    max-width: 800px;
    margin: 30px auto;
    color: #E0E0E0;
    padding-left: 20px;
}

.page-promotions__responsible-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-promotions__responsible-list--light li {
    color: #E0E0E0;
}

/* FAQ */
.page-promotions__faq-container {
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

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

.page-promotions__faq-question {
    padding: 20px;
    cursor: pointer;
    font-size: 1.2em;
    color: #FFD700;
    background-color: #3A475C;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: #4A5B70;
}

.page-promotions__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1.0em;
    color: #B0B0B0;
    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 as needed */
    padding: 20px;
}

/* Final CTA */
.page-promotions__cta-final {
    background: linear-gradient(90deg, #FFD700 0%, #E5C100 100%);
    padding: 80px 20px;
    color: #1A202C; /* Dark text on gold background */
    border-radius: 10px;
    margin-top: 60px;
    margin-bottom: 60px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-final .page-promotions__section-title {
    color: #1A202C;
    margin-bottom: 20px;
}

.page-promotions__cta-final .page-promotions__section-text {
    color: #333;
    margin-bottom: 40px;
}

.page-promotions__cta-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.3));
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }

    .page-promotions__hero-description {
        font-size: 1.1em;
    }

    .page-promotions__section-title {
        font-size: 2em;
    }

    .page-promotions__grid, .page-promotions__detail-grid, .page-promotions__benefits-list {
        grid-template-columns: 1fr;
    }

    .page-promotions__section {
        padding: 40px 15px;
    }

    .page-promotions__hero {
        padding: 60px 15px;
    }

    .page-promotions__cta-final {
        padding: 50px 15px;
    }

    .page-promotions__faq-question {
        font-size: 1.1em;
    }

    .page-promotions__faq-answer {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }

    .page-promotions__hero-description {
        font-size: 1em;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-promotions__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
}