/* style/promo.css */
.page-promo {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure header offset for PC */
}

.page-promo__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f8f8;
    overflow: hidden;
}

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

.page-promo__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    color: #FFFFFF; /* Light text over hero image */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
}

.page-promo__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

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

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

.page-promo__button--register {
    background-color: #FFFFFF; /* Custom color for Register */
    color: #000000;
    border: 2px solid #FFFFFF;
}

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

.page-promo__button--login {
    background-color: #FCBC45; /* Custom color for Login */
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo__button--login:hover {
    background-color: #e0a53b;
    transform: translateY(-2px);
}

.page-promo__section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promo__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promo__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-promo__feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

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

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

.page-promo__feature-text {
    color: #666666;
}

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

.page-promo__category-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-promo__category-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-promo__category-heading {
    font-size: 1.4em;
    color: #000000;
    margin: 20px 15px 10px;
}

.page-promo__category-text {
    color: #666666;
    padding: 0 15px 20px;
    font-size: 0.95em;
}

.page-promo__offers-list {
    margin-top: 40px;
}

.page-promo__offer-card {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #000000;
    margin-bottom: 20px;
}

.page-promo__offer-title {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #000000;
}

.page-promo__offer-link {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promo__offer-link:hover {
    color: #FCBC45;
}

.page-promo__offer-description {
    color: #555555;
    margin-bottom: 20px;
}

.page-promo__button--view-details {
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.page-promo__button--view-details:hover {
    background-color: #333333;
}

.page-promo__steps-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promo__step-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    counter-increment: step-counter;
    position: relative;
    padding-top: 60px; /* Space for step number */
}

.page-promo__step-item::before {
    content: counter(step-counter);
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
}

.page-promo__step-heading {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
}

.page-promo__step-text {
    color: #666666;
}

.page-promo__cta-final {
    text-align: center;
    margin-top: 60px;
}

.page-promo__button--large {
    padding: 18px 40px;
    font-size: 1.2em;
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-promo__button--large:hover {
    background-color: #333333;
    border-color: #333333;
}

.page-promo__fair-play-promise .page-promo__section-text {
    text-align: left;
    max-width: 900px;
    margin: 20px auto;
    color: #444444;
}

.page-promo__faq-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

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

.page-promo__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
    color: #666666;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
    padding-top: 0;
}

.page-promo__faq-answer.open {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-promo__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

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

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

    .page-promo__feature-list, .page-promo__category-grid, .page-promo__steps-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promo {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    }

    .page-promo__hero-title {
        font-size: 2.5em;
    }

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

    .page-promo__hero-cta {
        flex-direction: column;
    }

    .page-promo__button {
        width: 100%;
    }

    .page-promo__section {
        margin: 40px auto;
        padding: 30px 15px;
    }

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

    .page-promo__section-description {
        font-size: 0.95em;
    }

    .page-promo__category-image {
        height: 200px;
    }

    .page-promo__offer-title {
        font-size: 1.5em;
    }

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

    .page-promo__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-promo__cta-buttons {
        flex-direction: column;
    }

    /* Prevent content overflow on mobile */
    .page-promo img {
        max-width: 100%;
        height: auto;
    }
    .page-promo__hero-section {
        padding: 40px 15px;
    }
}

@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.6em;
    }
    .page-promo__feature-item, .page-promo__category-card, .page-promo__step-item {
        padding: 20px;
    }
}

/* Ensure no image filter */
.page-promo img {
    filter: none; /* Absolutely no CSS filters to change image colors */
}

/* Content area image size enforcement */
.page-promo__hero-image,
.page-promo__category-image,
.page-promo__offers-list img,
.page-promo__how-to-claim img,
.page-promo__fair-play-promise img,
.page-promo__faq img,
.page-promo__final-cta img {
    min-width: 200px;
    min-height: 200px;
}