:root {
    --primary-color: #F2C14E;
    --secondary-color: #FFD36B;
    --background-color: #0A0A0A;
    --card-background: #111111;
    --text-color-main: #FFF6D6;
    --border-color: #3A2A12;
    --glow-color: #FFD36B;
    --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --button-gradient-hover: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
}

.page-promotions {
    background-color: var(--background-color);
    color: var(--text-color-main);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles main offset */
    padding-bottom: 40px;
    background-color: var(--background-color);
}

.page-promotions__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px; /* Consistent with card style */
}

.page-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
    position: relative; /* Ensure content is above any potential background issues */
    z-index: 1;
}

.page-promotions__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-promotions__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--background-color);
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-promotions__cta-button:hover {
    background: var(--button-gradient-hover);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.page-promotions__cta-button--secondary {
    background: var(--card-background);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.page-promotions__cta-button--secondary:hover {
    background: var(--primary-color);
    color: var(--background-color);
}

.page-promotions__current-offers-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-summary-section,
.page-promotions__faq-section,
.page-promotions__cta-bottom-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-promotions__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.page-promotions__section-description {
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

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

.page-promotions__offer-card {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
}

.page-promotions__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__offer-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-promotions__offer-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions__offer-text {
    font-size: 0.95rem;
    color: var(--text-color-main);
    margin-bottom: 20px;
    flex-grow: 1; /* Allows text to take available space */
}

.page-promotions__card-cta {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--background-color);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    width: auto; /* Adjust to content */
    align-self: flex-start; /* Align button to the left in flex container */
}

.page-promotions__card-cta:hover {
    background: var(--button-gradient-hover);
    transform: translateY(-1px);
}

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

.page-promotions__step-card {
    background-color: var(--card-background);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-promotions__step-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__step-text {
    font-size: 0.95rem;
    color: var(--text-color-main);
}

.page-promotions__step-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

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

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-promotions__terms-list-item {
    background-color: var(--card-background);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 15px;
    font-size: 1rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions__terms-list-item strong {
    color: var(--secondary-color);
}

.page-promotions__full-terms-text {
    margin-top: 30px;
    font-size: 1rem;
}

.page-promotions__full-terms-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__full-terms-text a:hover {
    text-decoration: underline;
}

.page-promotions__faq-items {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__faq-item {
    background-color: var(--card-background);
    border-radius: 8px;
    margin-bottom: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
    overflow: hidden; /* For future accordion if needed */
}

.page-promotions__faq-question {
    font-size: 1.2rem;
    color: var(--primary-color);
    padding: 18px 20px;
    margin: 0;
    cursor: pointer;
    background-color: #1a1a1a; /* Slightly darker for question header */
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

.page-promotions__faq-answer {
    font-size: 1rem;
    color: var(--text-color-main);
    padding: 15px 20px;
    display: block; /* Always visible for now, can be toggled with JS */
}

.page-promotions__cta-bottom-section {
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: 8px; /* Slightly less padding for smaller screens */
        padding-bottom: 30px;
    }

    .page-promotions__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-promotions__hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .page-promotions__current-offers-section,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-summary-section,
    .page-promotions__faq-section,
    .page-promotions__cta-bottom-section {
        padding: 40px 15px;
    }

    .page-promotions__section-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .page-promotions__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .page-promotions__offers-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .page-promotions__offer-title {
        font-size: 1.3rem;
    }

    .page-promotions__offer-text {
        font-size: 0.9rem;
    }

    .page-promotions__card-cta {
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .page-promotions__step-title {
        font-size: 1.15rem;
    }

    .page-promotions__faq-question {
        font-size: 1.05rem;
        padding: 15px;
    }

    .page-promotions__faq-answer {
        font-size: 0.95rem;
        padding: 12px 15px;
    }

    .page-promotions img {
        max-width: 100%;
        height: auto;
    }
}