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

.page-promotions {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-background-main);
    color: var(--color-text-main);
    line-height: 1.6;
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, header offset handled by body */
    background-color: var(--color-background-main);
    overflow: hidden;
}

.page-promotions__hero-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.page-promotions__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.page-promotions__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-promotions__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size for H1 */
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-promotions__hero-description {
    font-size: clamp(1em, 2vw, 1.3em);
    color: var(--color-text-main);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button--large {
    padding: 18px 50px;
    font-size: 1.2em;
}

.page-promotions__overview-section,
.page-promotions__promo-categories,
.page-promotions__how-to-claim-section,
.page-promotions__terms-section,
.page-promotions__faq-section,
.page-promotions__cta-final-section {
    padding: 80px 0;
    background-color: var(--color-background-main);
}

.page-promotions__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: var(--color-text-main);
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
}

.page-promotions__section-description {
    font-size: 1.1em;
    color: var(--color-text-main);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    opacity: 0.9;
}

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

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

.page-promotions__feature-card:hover,
.page-promotions__step-card:hover,
.page-promotions__category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__feature-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-height: 200px; /* Enforce min image size */
}

.page-promotions__feature-title,
.page-promotions__step-title,
.page-promotions__card-title {
    font-size: 1.4em;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions__feature-text,
.page-promotions__step-text,
.page-promotions__card-text {
    font-size: 1em;
    color: var(--color-text-main);
    opacity: 0.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--button-gradient);
    color: var(--color-light-text);
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(255, 211, 107, 0.5);
}

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

.page-promotions__btn-secondary {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.page-promotions__btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-dark-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 211, 107, 0.3);
}

.page-promotions__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: var(--button-gradient);
    color: var(--color-light-text);
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.95em;
    font-weight: bold;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions__terms-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0 auto;
    max-width: 900px;
}

.page-promotions__terms-list li {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1em;
    color: var(--color-text-main);
    opacity: 0.85;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

details.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    background-color: var(--color-card-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--color-text-main);
    font-weight: 600;
}

details.page-promotions__faq-item summary.page-promotions__faq-question::-webkit-details-marker {
    display: none;
}

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
    background-color: rgba(255, 211, 107, 0.1);
}

.page-promotions__faq-qtext {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.5;
    text-align: left;
    color: var(--color-text-main);
}

.page-promotions__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 25px 25px;
    background-color: var(--color-card-bg);
    color: var(--color-text-main);
    font-size: 0.95em;
    line-height: 1.6;
    opacity: 0.85;
}

.page-promotions__faq-answer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-section {
        padding: 40px 15px;
    }
    .page-promotions__overview-section,
    .page-promotions__promo-categories,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__cta-final-section {
        padding: 60px 0;
    }
    .page-promotions__section-title {
        font-size: clamp(1.5em, 3vw, 2.2em);
    }
    .page-promotions__section-description {
        font-size: 1em;
        margin-bottom: 40px;
    }
    .page-promotions__feature-card,
    .page-promotions__step-card,
    .page-promotions__category-card {
        padding: 25px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: 10px !important; /* Ensure small top padding on mobile */
        padding-bottom: 30px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__hero-image {
        margin-bottom: 20px;
    }
    .page-promotions__hero-image img {
        border-radius: 8px;
    }
    .page-promotions__main-title {
        font-size: clamp(1.6em, 7vw, 2.5em);
        margin-bottom: 10px;
    }
    .page-promotions__hero-description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }
    .page-promotions__cta-button {
        padding: 12px 30px;
        font-size: 1em;
        width: 100% !important; /* Ensure buttons are full width */
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions__cta-button--large {
        padding: 15px 40px;
        font-size: 1.1em;
    }

    .page-promotions__overview-section,
    .page-promotions__promo-categories,
    .page-promotions__how-to-claim-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__cta-final-section {
        padding: 40px 0;
    }

    .page-promotions__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions__section-title {
        font-size: clamp(1.4em, 6vw, 2em);
        margin-bottom: 20px;
    }
    .page-promotions__section-description {
        font-size: 0.9em;
        margin-bottom: 30px;
    }
    .page-promotions__features-grid,
    .page-promotions__steps-grid,
    .page-promotions__category-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions__feature-card,
    .page-promotions__step-card,
    .page-promotions__category-card {
        padding: 20px;
    }
    .page-promotions__feature-card img {
        min-
    }
    .page-promotions__feature-title,
    .page-promotions__step-title,
    .page-promotions__card-title {
        font-size: 1.2em;
    }
    .page-promotions__feature-text,
    .page-promotions__step-text,
    .page-promotions__card-text {
        font-size: 0.9em;
    }
    .page-promotions__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }

    .page-promotions__terms-list li {
        padding: 15px;
        font-size: 0.9em;
    }

    details.page-promotions__faq-item summary.page-promotions__faq-question {
        padding: 15px 20px;
    }
    .page-promotions__faq-qtext {
        font-size: 1em;
    }
    .page-promotions__faq-toggle {
        font-size: 20px;
        width: 24px;
    }
    details.page-promotions__faq-item .page-promotions__faq-answer {
        padding: 0 20px 20px;
        font-size: 0.85em;
    }

    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-promotions__section, .page-promotions__card, .page-promotions__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__btn-primary, .page-promotions__btn-secondary, .page-promotions a[class*="button"], .page-promotions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}