:root {
    --primary-color: #26A9E0;
    --secondary-color: #FFFFFF;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-dark: #0d0d0d; /* Assuming --black-color from shared.css is dark */
    --btn-login-color: #EA7C07;
    --max-content-width: 1200px;
}

.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--bg-dark); /* Ensure it matches shared.css body background */
    padding-top: var(--header-offset, 120px);
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    padding: 20px;
}

.page-promotions__hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.page-promotions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: var(--secondary-color);
}

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

.page-promotions__container {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 40px 20px;
}

.page-promotions__dark-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.page-promotions__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-light);
}

.page-promotions__intro-section .page-promotions__section-title {
    color: var(--text-light);
}

.page-promotions__types-section .page-promotions__section-title,
.page-promotions__how-to-claim .page-promotions__section-title,
.page-promotions__terms-conditions .page-promotions__section-title,
.page-promotions__faq-section .page-promotions__section-title,
.page-promotions__cta-section .page-promotions__section-title {
    color: var(--primary-color);
}

.page-promotions__dark-section .page-promotions__section-title,
.page-promotions__dark-section .page-promotions__section-description {
    color: var(--text-light);
}

.page-promotions__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

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

.page-promotions__btn-primary:hover {
    background-color: #1a88bb;
    border-color: #1a88bb;
}

.page-promotions__btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.page-promotions__btn-login {
    background-color: var(--btn-login-color);
    color: var(--secondary-color);
    border: 2px solid var(--btn-login-color);
}

.page-promotions__btn-login:hover {
    background-color: #c06306;
    border-color: #c06306;
}

.page-promotions__btn-large {
    padding: 18px 35px;
    font-size: 1.1em;
}

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

.page-promotions__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__feature-text {
    font-size: 1em;
    color: #f0f0f0;
}

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

.page-promotions__promo-card {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
}

.page-promotions__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-promotions__promo-card .page-promotions__promo-title {
    font-size: 1.4em;
    margin: 0 20px 10px;
    color: var(--primary-color);
}

.page-promotions__promo-card .page-promotions__promo-text {
    font-size: 1em;
    margin: 0 20px 20px;
    flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__btn-primary,
.page-promotions__promo-card .page-promotions__btn-secondary {
    margin: 0 20px;
    align-self: flex-start;
    width: calc(100% - 40px);
}

.page-promotions__how-to-claim {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.page-promotions__step-item {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions__step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

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

.page-promotions__step-text {
    font-size: 1em;
    color: #f0f0f0;
}

.page-promotions__step-text a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-promotions__step-text a:hover {
    color: #e0e0e0;
}

.page-promotions__cta-center {
    text-align: center;
    margin-top: 60px;
}

.page-promotions__claim-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-promotions__terms-conditions {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.page-promotions__terms-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
}

.page-promotions__terms-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.page-promotions__terms-list {
    list-style: disc inside;
    font-size: 1.1em;
    padding-left: 20px;
    color: var(--text-dark);
}

.page-promotions__terms-list li {
    margin-bottom: 10px;
}

.page-promotions__terms-list a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-promotions__terms-list a:hover {
    color: #1a88bb;
}

.page-promotions__faq-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

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

.page-promotions__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.15);
    transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.page-promotions__faq-title {
    font-size: 1.2em;
    margin: 0;
    color: var(--secondary-color);
}

.page-promotions__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
    transform: rotate(45deg);
}

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #f0f0f0;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 1000px !important;
    padding: 20px !important;
}

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

.page-promotions__faq-answer a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.page-promotions__faq-answer a:hover {
    color: #e0e0e0;
}

.page-promotions__cta-section {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    text-align: center;
}

.page-promotions__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-promotions__hero-section {
        height: auto;
        min-height: 400px;
        padding: 80px 15px 40px;
    }

    .page-promotions__hero-title {
        font-size: 2.2em;
    }

    .page-promotions__hero-description {
        font-size: 1em;
    }

    .page-promotions__hero-buttons,
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions__btn-login,
    .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;
    }
    
    .page-promotions__cta-buttons,
    .page-promotions__button-group,
    .page-promotions__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
    }

    .page-promotions__container {
        padding: 30px 15px;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
    }

    .page-promotions__section-description {
        font-size: 0.95em;
    }

    .page-promotions__promo-grid,
    .page-promotions__steps-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions__terms-content {
        flex-direction: column;
        align-items: center;
    }

    .page-promotions__terms-image {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .page-promotions__promo-image,
    .page-promotions__claim-image,
    .page-promotions__terms-image,
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-promotions__promo-card,
    .page-promotions__feature-item,
    .page-promotions__step-item,
    .page-promotions__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-promotions video,
    .page-promotions__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-promotions__video-section,
    .page-promotions__video-container,
    .page-promotions__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
}

.page-promotions__promo-image,
.page-promotions__claim-image,
.page-promotions__terms-image {
    min-width: 200px;
    min-height: 200px;
}

.page-promotions img {
    filter: none !important;
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .page-promotions__promo-image {
        height: auto;
        min-height: 200px;
    }
}

.page-promotions__promo-card .page-promotions__promo-text {
    color: var(--text-dark);
}
.page-promotions__terms-conditions p {
    color: var(--text-dark);
}
.page-promotions__cta-section .page-promotions__section-description {
    color: var(--text-dark);
}
.page-promotions__cta-section .page-promotions__section-title {
    color: var(--primary-color);
}

.page-promotions__step-text a {
    color: var(--secondary-color);
}
.page-promotions__faq-answer a {
    color: var(--secondary-color);
}