:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000000; /* Black */
    --accent-color: #FF0000; /* Red */
    --text-light: #ffffff;
    --text-dark: #333333;
    --dark-bg-1: #0d0d0d; /* From shared.css, assuming a dark body background */
    --dark-bg-2: #1a1a1a;
    --border-color: #333333;
}

.page-promotions {
    color: var(--text-light); /* Default text color for dark body background */
    background-color: var(--dark-bg-1);
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.page-promotions__video-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Desktop: Adjust for fixed header */
    background-color: var(--dark-bg-2);
}

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

.page-promotions__video-link {
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__video-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    object-fit: cover;
    pointer-events: none; /* Prevent video controls from blocking click event */
}

.page-promotions__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.page-promotions__video-link:hover .page-promotions__video-overlay {
    opacity: 1;
}

.page-promotions__video-click-hint {
    color: var(--text-light);
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.8); /* Primary color with opacity */
    border-radius: 5px;
    white-space: nowrap;
}

.page-promotions__video-cta {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.page-promotions__play-now-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-promotions__play-now-button:hover {
    background: #e6c200; /* Darker gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__play-now-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__title-section {
    background-color: var(--dark-bg-1);
    padding: 80px 20px 40px;
    text-align: center;
}

.page-promotions__title-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions__main-title {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    min-width: 180px;
}

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

.page-promotions__cta-button--primary:hover {
    background: #e6c200;
    border-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-promotions__section-title {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions__text-block {
    font-size: 17px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.8;
}

.page-promotions__dark-section {
    background-color: var(--dark-bg-2);
    padding: 80px 0;
}

.page-promotions__general-intro-section {
    padding: 80px 0;
}

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

.page-promotions__feature-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-promotions__feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.page-promotions__feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions__feature-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-promotions__feature-description {
    font-size: 16px;
    color: var(--text-light);
}

.page-promotions__types-section {
    padding: 80px 0;
    background-color: var(--dark-bg-1);
}

.page-promotions__promotion-category {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    margin-bottom: 40px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-promotions__category-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions__category-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.page-promotions__category-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__category-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.page-promotions__category-text strong {
    color: var(--primary-color);
}

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

.page-promotions__btn-primary:hover {
    background: #e6c200;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__how-to-section {
    padding: 80px 0;
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin: 50px auto;
    max-width: 800px;
}

.page-promotions__step-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 17px;
    color: var(--text-light);
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-item strong {
    color: var(--primary-color);
}

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

.page-promotions__btn-primary--large {
    padding: 18px 45px;
    font-size: 20px;
    border-radius: 10px;
}

.page-promotions__terms-section {
    padding: 80px 0;
    background-color: var(--dark-bg-1);
}

.page-promotions__terms-list {
    list-style: disc;
    color: var(--text-light);
    margin: 30px auto;
    max-width: 800px;
    padding-left: 20px;
}

.page-promotions__terms-item {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.7;
}

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

/* FAQ Section */
.page-promotions__faq-section {
    padding: 80px 0;
}

.page-promotions__faq-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.page-promotions__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-promotions__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--dark-bg-2);
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-promotions__faq-question:hover {
    background: #2a2a2a;
}

.page-promotions__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--primary-color);
    pointer-events: none;
}

.page-promotions__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
    color: var(--primary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

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

.page-promotions__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 25px;
    opacity: 0;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    font-size: 16px;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 2000px !important;
    padding: 20px 25px !important;
    opacity: 1;
    border-radius: 0 0 8px 8px;
}

.page-promotions__faq-answer p {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 16px;
}

.page-promotions__cta-app-download {
    text-align: center;
    margin-top: 20px;
}

/* Brand Section */
.page-promotions__brand-section {
    padding: 80px 0;
    background-color: var(--dark-bg-1);
}

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

.page-promotions__brand-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-promotions__brand-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.page-promotions__brand-image {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions__brand-item-title {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Blog Section */
.page-promotions__blog-section {
    padding: 80px 0;
}

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

.page-promotions__blog-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-promotions__blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__blog-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding-bottom: 20px;
}

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

.page-promotions__blog-item-title {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0 20px 10px;
    line-height: 1.4;
}

.page-promotions__blog-item-excerpt {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 20px 15px;
}

.page-promotions__blog-item-date {
    font-size: 14px;
    color: #aaaaaa;
    margin: 0 20px;
    display: block;
}

.page-promotions__final-cta-section {
    padding: 80px 0;
    background-color: var(--dark-bg-2);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 38px;
    }

    .page-promotions__section-title {
        font-size: 32px;
    }

    .page-promotions__category-content {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions__category-image {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .page-promotions__category-text {
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .page-promotions {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-promotions__video-section {
        padding-top: 10px !important; /* Mobile: Adjust for fixed header */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-promotions__video-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden !important;
    }

    .page-promotions__video-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-promotions__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 4px;
        overflow: hidden !important;
    }

    .page-promotions__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 4px;
        object-fit: contain;
    }

    .page-promotions__video-cta {
        margin-top: 20px;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-promotions__play-now-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 12px 30px !important;
        font-size: 16px !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__video-click-hint {
        font-size: 14px !important;
        padding: 8px 16px !important;
    }

    .page-promotions__title-section {
        padding: 60px 15px 30px;
    }

    .page-promotions__main-title {
        font-size: 32px;
    }

    .page-promotions__title-description {
        font-size: 16px;
    }

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

    .page-promotions__cta-button {
        width: 100%;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 25px !important;
        font-size: 16px !important;
    }

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

    .page-promotions__section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .page-promotions__text-block {
        font-size: 15px;
    }

    .page-promotions__dark-section,
    .page-promotions__general-intro-section,
    .page-promotions__types-section,
    .page-promotions__how-to-section,
    .page-promotions__terms-section,
    .page-promotions__faq-section,
    .page-promotions__brand-section,
    .page-promotions__blog-section,
    .page-promotions__final-cta-section {
        padding: 40px 0;
    }

    .page-promotions__feature-item,
    .page-promotions__promotion-category,
    .page-promotions__brand-item,
    .page-promotions__blog-item {
        padding: 20px;
    }

    .page-promotions__feature-icon,
    .page-promotions__brand-image {
        width: 80px;
        height: 80px;
    }

    .page-promotions__feature-title,
    .page-promotions__brand-item-title {
        font-size: 20px;
    }

    .page-promotions__category-image {
        height: 150px;
    }

    .page-promotions__btn-primary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 10px 20px !important;
        font-size: 15px !important;
    }

    .page-promotions__btn-primary--large {
        padding: 15px 30px !important;
        font-size: 18px !important;
    }

    .page-promotions__steps-list {
        margin-top: 30px;
    }

    .page-promotions__step-item {
        font-size: 15px;
    }

    .page-promotions__terms-list {
        margin-top: 20px;
    }

    .page-promotions__terms-item {
        font-size: 15px;
    }

    .page-promotions__faq-question {
        padding: 15px;
    }

    .page-promotions__faq-question h3 {
        font-size: 16px;
    }

    .page-promotions__faq-toggle {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }

    .page-promotions__faq-item.active .page-promotions__faq-answer {
        padding: 15px !important;
    }

    .page-promotions__blog-image {
        height: 160px;
    }

    .page-promotions__blog-item-title {
        font-size: 18px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .page-promotions__blog-item-excerpt,
    .page-promotions__blog-item-date {
        margin-left: 15px;
        margin-right: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: 28px;
    }

    .page-promotions__section-title {
        font-size: 24px;
    }

    .page-promotions__feature-title,
    .page-promotions__brand-item-title {
        font-size: 18px;
    }

    .page-promotions__blog-item-title {
        font-size: 16px;
    }
}