/* style/promo.css */
.page-promo {
    color: #333333; /* Dark text for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

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

.page-promo__container--centered {
    text-align: center;
}

.page-promo__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promo__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    border-radius: 2px;
}

.page-promo__section-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-promo__button--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
}

.page-promo__button--register:hover {
    background-color: #FCBC45;
    color: #FFFFFF;
    border-color: #FCBC45;
    transform: translateY(-2px);
}

.page-promo__button--claim, .page-promo__button--large, .page-promo__button--extra-large {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo__button--claim:hover, .page-promo__button--large:hover, .page-promo__button--extra-large:hover {
    background-color: #e0a53b;
    border-color: #e0a53b;
    transform: translateY(-2px);
}

.page-promo__button--secondary {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-promo__button--secondary:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
}

.page-promo__button--card {
    padding: 10px 20px;
    font-size: 1em;
    margin-top: 20px;
}

.page-promo__button--extra-large {
    font-size: 1.3em;
    padding: 18px 35px;
}

/* Hero Section */
.page-promo__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
}

.page-promo__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-promo__hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-promo__hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    max-width: 900px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.page-promo__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-promo__hero-actions .page-promo__button {
    margin: 0 10px;
}

/* Why Choose Section */
.page-promo__why-choose-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-promo__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.page-promo__feature-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__feature-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo__feature-description {
    font-size: 1em;
    color: #555555;
}

/* Featured Promos Section */
.page-promo__featured-promos-section {
    padding: 80px 0;
    background-color: #f2f2f2;
}

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

.page-promo__promo-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.page-promo__promo-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.page-promo__promo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promo__promo-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo__promo-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-promo__promo-title a:hover {
    color: #FCBC45;
}

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

/* How to Claim Section */
.page-promo__how-to-claim-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-promo__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.page-promo__step-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #FCBC45;
}

.page-promo__step-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-promo__step-description {
    font-size: 1em;
    color: #555555;
}

.page-promo__call-to-action {
    text-align: center;
    margin-top: 60px;
}

/* Responsible Gaming Section */
.page-promo__responsible-gaming-section {
    padding: 80px 0;
    background-color: #000000;
    color: #FFFFFF;
}

.page-promo__responsible-gaming-section .page-promo__section-title {
    color: #FFFFFF;
}

.page-promo__responsible-gaming-section .page-promo__section-title::after {
    background-color: #FCBC45;
}

.page-promo__responsible-gaming-section .page-promo__section-text {
    color: #f0f0f0;
}

.page-promo__responsible-gaming-section .page-promo__button {
    margin-top: 40px;
}

/* FAQ Section */
.page-promo__faq-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-promo__faq-item {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.page-promo__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.page-promo__faq-question {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promo__faq-answer {
    font-size: 1em;
    color: #555555;
    padding-left: 20px;
}

/* Final CTA Section */
.page-promo__final-cta-section {
    padding: 80px 0;
    background-color: #f2f2f2;
}

.page-promo__final-cta-section .page-promo__section-text {
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__hero-description {
        font-size: 1.2em;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        min-height: 400px;
    }
    .page-promo__hero-content {
        padding: 30px 15px;
    }
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-actions .page-promo__button {
        margin: 5px 0;
        display: block;
        width: 100%;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__section-text {
        font-size: 0.95em;
    }
    .page-promo__features-grid, .page-promo__promo-grid, .page-promo__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promo__promo-image {
        height: 200px;
    }
    .page-promo__promo-card, .page-promo__feature-item, .page-promo__step-item {
        margin: 0 10px;
    }
    /* Ensure content area images do not overflow */
    .page-promo img {
        max-width: 100%;
        height: auto;
    }
    .page-promo__button--extra-large {
        width: 100%;
        font-size: 1.1em;
        padding: 15px 25px;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__hero-description {
        font-size: 0.9em;
    }
    .page-promo__section-title {
        font-size: 1.5em;
    }
    .page-promo__button {
        font-size: 1em;
        padding: 12px 20px;
    }
}