/* style/promo.css */
.page-promo {
    color: #333333; /* Default text color for light body background */
}

.page-promo__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px);
    padding-bottom: 60px;
    text-align: center;
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    overflow: hidden;
}

.page-promo__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
}

.page-promo__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-promo__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Login color for emphasis */
}

.page-promo__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-promo__hero-button {
    display: inline-block;
    background-color: #FCBC45; /* Login color */
    color: #000000; /* Primary color for text */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-promo__hero-button:hover {
    background-color: #e0a53b;
}

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

.page-promo__overview-section,
.page-promo__promo-grid,
.page-promo__how-to-claim,
.page-promo__terms-section,
.page-promo__responsible-gaming,
.page-promo__faq-section,
.page-promo__cta-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

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

.page-promo__text-content {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promo__cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-promo__card {
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

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

.page-promo__card-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Push button to bottom */
}

.page-promo__card-button:hover {
    background-color: #e0a53b;
}

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

.page-promo__step-item {
    background-color: #f8f8f8;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

.page-promo__step-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    margin-top: auto;
}

.page-promo__step-button:hover {
    background-color: #e0a53b;
}

.page-promo__terms-list {
    list-style: disc;
    padding-left: 25px;
    font-size: 1.1em;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 30px;
}

.page-promo__terms-item strong {
    color: #000000;
}

.page-promo__button-terms,
.page-promo__button-responsible {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    background-color: #000000;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.page-promo__button-terms:hover,
.page-promo__button-responsible:hover {
    background-color: #333333;
}

.page-promo__faq-item {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-promo__faq-answer {
    font-size: 1em;
    line-height: 1.7;
    color: #555555;
}

.page-promo__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}

.page-promo__cta-section .page-promo__section-title {
    color: #FCBC45;
}

.page-promo__cta-section .page-promo__text-content {
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

.page-promo__cta-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, color 0.3s ease;
}

.page-promo__button-register {
    background-color: #FFFFFF;
    color: #000000;
}

.page-promo__button-register:hover {
    background-color: #e0e0e0;
}

.page-promo__button-login {
    background-color: #FCBC45;
    color: #000000;
}

.page-promo__button-login:hover {
    background-color: #e0a53b;
}

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

@media (max-width: 768px) {
    .page-promo__hero-section {
        padding-top: var(--header-offset, 120px);
        padding-bottom: 40px;
    }
    .page-promo__hero-title {
        font-size: 2.2em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo__overview-section,
    .page-promo__promo-grid,
    .page-promo__how-to-claim,
    .page-promo__terms-section,
    .page-promo__responsible-gaming,
    .page-promo__faq-section,
    .page-promo__cta-section {
        padding: 40px 0;
    }
    .page-promo__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promo__text-content {
        font-size: 0.95em;
    }
    .page-promo__card-image,
    .page-promo__card-image img {
        max-width: 100%;
        height: auto;
        min-height: 200px; /* Ensure minimum height for images */
    }
    .page-promo__card,
    .page-promo__step-item {
        padding: 25px;
    }
    .page-promo__card-title,
    .page-promo__step-title {
        font-size: 1.4em;
    }
    .page-promo__card-description,
    .page-promo__step-description {
        font-size: 0.9em;
    }
    .page-promo__card-button,
    .page-promo__step-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promo__terms-list,
    .page-promo__faq-answer {
        font-size: 0.95em;
    }
    .page-promo__button-terms,
    .page-promo__button-responsible {
        width: 100%;
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo__faq-question {
        font-size: 1.2em;
    }
    .page-promo__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    /* Ensure all images within .page-promo are responsive and don't overflow */
    .page-promo img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 1.8em;
    }
    .page-promo__hero-description {
        font-size: 0.9em;
    }
    .page-promo__section-title {
        font-size: 1.5em;
    }
    .page-promo__text-content {
        font-size: 0.9em;
    }
}