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

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

.page-promo__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-promo__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4; /* Soften image to make text readable */
    z-index: 0;
}

.page-promo__hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for text */
    border-radius: 10px;
}

.page-promo__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FCBC45; /* Highlight title with login button color */
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #FFFFFF;
}

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

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

.page-promo__button--register:hover {
    background-color: transparent;
    color: #FFFFFF;
    transform: translateY(-3px);
}

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

.page-promo__button--login:hover {
    background-color: transparent;
    color: #FCBC45;
    transform: translateY(-3px);
}

.page-promo__section {
    padding: 60px 20px;
    background-color: #FFFFFF;
    text-align: center;
}

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

.page-promo__section-title {
    font-size: 2.8em;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-promo__section-intro {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promo__feature-item, .page-promo__offer-card, .page-promo__promo-card {
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.page-promo__feature-item:hover, .page-promo__offer-card:hover, .page-promo__promo-card:hover, .page-promo__list-item:hover {
    transform: translateY(-5px);
}

.page-promo__feature-image, .page-promo__promo-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-promo__feature-title, .page-promo__offer-title, .page-promo__promo-card-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
    min-height: 60px; /* Ensure consistent title height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promo__feature-text, .page-promo__offer-description, .page-promo__promo-card-description {
    font-size: 1em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promo__subsection-title {
    font-size: 2.2em;
    color: #000000;
    margin-top: 50px;
    margin-bottom: 30px;
}

.page-promo__steps-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 700px;
    text-align: left;
}

.page-promo__step-item {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.page-promo__step-item::before {
    content: attr(data-step);
    counter-increment: step-counter;
    content: counter(step-counter);
    background-color: #FCBC45;
    color: #000000;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 3px;
}

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

.page-promo__step-item a {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

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

.page-promo__terms-text {
    font-size: 0.9em;
    color: #888888;
    margin-top: 20px;
    margin-bottom: 40px;
}

.page-promo__button--claim, .page-promo__button--learn-vip {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    padding: 15px 40px;
    margin-top: 20px;
}

.page-promo__button--claim:hover, .page-promo__button--learn-vip:hover {
    background-color: transparent;
    color: #FCBC45;
}

.page-promo__button--claim-small, .page-promo__button--view, .page-promo__button--details {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 6px;
    margin-top: auto; /* Push button to bottom */
}

.page-promo__button--claim-small:hover, .page-promo__button--view:hover, .page-promo__button--details:hover {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

.page-promo__vip-program {
    background-color: #F5F5F5;
}

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

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

.page-promo__vip-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px;
}

.page-promo__vip-item-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
}

.page-promo__vip-item-description {
    font-size: 0.95em;
    color: #666666;
    line-height: 1.6;
}

.page-promo__vip-join-text {
    font-size: 1.1em;
    color: #555555;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-promo__details-list {
    background-color: #FFFFFF;
}

.page-promo__list-items {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.page-promo__list-item {
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.page-promo__list-item-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #000000;
}

.page-promo__list-item-title a {
    color: #000000;
    text-decoration: none;
}

.page-promo__list-item-title a:hover {
    color: #FCBC45;
    text-decoration: underline;
}

.page-promo__list-item-description {
    font-size: 0.95em;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promo__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
}

.page-promo__cta-content {
    max-width: 900px;
}

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

.page-promo__cta-description {
    font-size: 1.2em;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 2.8em;
    }
    .page-promo__section-title {
        font-size: 2.4em;
    }
    .page-promo__subsection-title {
        font-size: 2em;
    }
    .page-promo__cta-title {
        font-size: 2.5em;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        padding-top: var(--header-offset, 120px);
        padding-bottom: 40px;
    }
    .page-promo__hero-image, .page-promo__feature-image, .page-promo__promo-image, .page-promo__vip-image, .page-promo__list-item img {
        max-width: 100%;
        height: auto;
    }
    .page-promo__hero-title {
        font-size: 2.2em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-actions {
        flex-direction: column;
    }
    .page-promo__button {
        width: 100%;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
    .page-promo__section-intro {
        font-size: 1em;
    }
    .page-promo__subsection-title {
        font-size: 1.8em;
    }
    .page-promo__feature-grid, .page-promo__offers-grid, .page-promo__promo-cards, .page-promo__vip-features {
        grid-template-columns: 1fr;
    }
    .page-promo__cta-title {
        font-size: 2em;
    }
    .page-promo__cta-description {
        font-size: 1em;
    }
    .page-promo__cta-actions {
        flex-direction: column;
    }
    .page-promo__button--claim-small, .page-promo__button--view, .page-promo__button--details {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 1.8em;
    }
    .page-promo__hero-content {
        padding: 15px;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__feature-title, .page-promo__offer-title, .page-promo__promo-card-title {
        font-size: 1.5em;
    }
    .page-promo__cta-title {
        font-size: 1.8em;
    }
}