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

.page-promo__hero-section {
    background-color: #1A202C;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-promo__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.page-promo__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promo__btn {
    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.2s ease;
    white-space: nowrap;
}

.page-promo__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    border: 2px solid #FFD700;
}

.page-promo__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-promo__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promo__btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.page-promo__hero-image-wrapper {
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
    margin-top: 40px;
}

.page-promo__hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promo__section-title {
    font-size: 2.5em;
    color: #1A202C;
    text-align: center;
    margin-bottom: 20px;
    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: #FFD700;
    border-radius: 2px;
}

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

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

.page-promo__feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-promo__feature-icon {
    width: 200px; /* Minimum size */
    height: 150px; /* Minimum size */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

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

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

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

.page-promo__promo-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promo__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

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

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

.page-promo__promo-title {
    font-size: 1.8em;
    color: #1A202C;
    margin-bottom: 15px;
}

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

.page-promo__promo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-promo__promo-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: #444444;
    font-size: 0.95em;
}

.page-promo__promo-features li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

.page-promo__btn--card {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

.page-promo__claim-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.page-promo__claim-step {
    background-color: #ffffff;
    border-left: 5px solid #FFD700;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
}

.page-promo__claim-step::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: -15px;
    top: 20px;
    background-color: #FFD700;
    color: #1A202C;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promo__claim-step-title {
    font-size: 1.6em;
    color: #1A202C;
    margin-bottom: 10px;
    padding-left: 25px;
}

.page-promo__claim-step-description {
    color: #555555;
    padding-left: 25px;
}

.page-promo__claim-step-description a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promo__claim-step-description a:hover {
    text-decoration: underline;
}

.page-promo__section-actions {
    text-align: center;
    margin-top: 40px;
}

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

.page-promo__info-block {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__info-block-title {
    font-size: 1.4em;
    color: #1A202C;
    margin-bottom: 10px;
}

.page-promo__info-block-description {
    color: #666666;
}

.page-promo__read-more-text {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #555555;
}

.page-promo__read-more-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promo__read-more-text a:hover {
    text-decoration: underline;
}

.page-promo__section--responsible-gaming {
    background-color: #f0f0f0;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    margin-top: 60px;
}

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

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

.page-promo__faq-question {
    font-size: 1.3em;
    color: #1A202C;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fdfdfd;
    border-bottom: 1px solid #eee;
}

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

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

.page-promo__faq-answer {
    font-size: 1.05em;
    color: #666666;
    padding: 0 25px 20px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promo__faq-item.active .page-promo__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding: 10px 25px 20px;
}

.page-promo__faq-answer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promo__faq-answer a:hover {
    text-decoration: underline;
}

.page-promo__section--cta {
    background-color: #1A202C;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
    margin-top: 60px;
    border-radius: 10px;
}

.page-promo__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-promo__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

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

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

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

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

    .page-promo__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        padding: 60px 15px;
        flex-direction: column;
        gap: 30px;
    }

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

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

    .page-promo__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-promo__btn {
        width: 100%;
        max-width: 300px;
    }

    .page-promo__hero-image-wrapper {
        margin-top: 30px;
    }

    .page-promo__hero-image {
        max-width: 100%;
        height: auto;
    }

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

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

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

    .page-promo__features-grid, .page-promo__promo-cards-grid, .page-promo__info-blocks {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-promo__feature-icon {
        width: 200px; /* Minimum size */
        height: 150px; /* Minimum size */
    }

    .page-promo__promo-image {
        height: 180px;
    }

    .page-promo__promo-details {
        padding: 20px;
    }

    .page-promo__promo-title {
        font-size: 1.4em;
    }

    .page-promo__claim-step-title {
        font-size: 1.4em;
    }

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

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

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

    /* Ensure all images within .page-promo are responsive */
    .page-promo img {
        max-width: 100%;
        height: auto;
    }
}