:root {
    --primary-color: #0A1931;
    --secondary-color: #FFD700;
    --text-light: #ffffff;
    --text-dark: #333333;
    --card-background: rgba(255, 255, 255, 0.08);
    --button-hover-darken: #e6c200;
}

.page-promo {
    color: var(--text-light);
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-promo__hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, #000000 100%);
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.3; /* Subtle overlay for text readability */
}

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

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

.page-promo__hero-description {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promo__hero-cta,
.page-promo__promo-cta,
.page-promo__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-promo__hero-cta:hover,
.page-promo__promo-cta:hover,
.page-promo__cta-button:hover {
    background-color: var(--button-hover-darken);
    transform: translateY(-2px);
}

.page-promo__section-title {
    font-size: 2.8em;
    color: var(--secondary-color);
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__promotions-grid-section,
.page-promo__how-to-claim-section,
.page-promo__terms-summary-section,
.page-promo__why-choose-section,
.page-promo__faq-section,
.page-promo__cta-final-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

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

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

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

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

.page-promo__promo-title {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promo__promo-description {
    font-size: 1em;
    color: var(--text-light);
    margin-bottom: 20px;
}

.page-promo__how-to-claim-section .page-promo__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-promo__step-card {
    background-color: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__step-title {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-promo__step-description {
    color: var(--text-light);
}

.page-promo__step-description a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

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

.page-promo__terms-summary-section .page-promo__summary-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
}

.page-promo__terms-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px auto;
    max-width: 800px;
    background-color: var(--card-background);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__terms-item {
    padding: 15px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1em;
}

.page-promo__terms-item:last-child {
    border-bottom: none;
}

.page-promo__terms-link {
    display: block;
    text-align: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 20px;
}

.page-promo__terms-link:hover {
    text-decoration: underline;
}

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

.page-promo__feature-card {
    background-color: var(--card-background);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promo__feature-title {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-promo__feature-description {
    color: var(--text-light);
}

.page-promo__faq-section .page-promo__faq-item {
    background-color: var(--card-background);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-promo__faq-question {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-promo__faq-answer {
    color: var(--text-light);
    font-size: 1em;
}

.page-promo__cta-final-section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--primary-color);
    border-radius: 15px;
    margin-top: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promo__cta-description {
    font-size: 1.3em;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promo__cta-button--register {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.page-promo__cta-button--login {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.page-promo__cta-button--login:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

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

@media (max-width: 768px) {
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1.1em;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__hero-section {
        padding: 60px 15px;
    }
    .page-promo__promotions-grid,
    .page-promo__how-to-claim-section .page-promo__steps-grid,
    .page-promo__why-choose-section .page-promo__features-grid {
        grid-template-columns: 1fr;
    }
    .page-promo__promo-image {
        height: 200px;
    }
    .page-promo__promo-title {
        font-size: 1.5em;
    }
    .page-promo__cta-final-section {
        padding: 40px 15px;
    }
    .page-promo__cta-description {
        font-size: 1.1em;
    }
    .page-promo__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__hero-image,
    .page-promo__promotions-grid-section img,
    .page-promo__how-to-claim-section img,
    .page-promo__why-choose-section img,
    .page-promo__faq-section img,
    .page-promo__cta-final-section img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images are not too small */
    .page-promo img {
        min-width: 200px;
        min-height: 200px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__hero-cta,
    .page-promo__promo-cta,
    .page-promo__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo__section-title {
        font-size: 1.5em;
    }
    .page-promo__promo-title {
        font-size: 1.3em;
    }
    .page-promo__step-title,
    .page-promo__feature-title {
        font-size: 1.3em;
    }
    .page-promo__faq-question {
        font-size: 1.2em;
    }
}