:root {
    --primary-color: #C61F1F;
    --secondary-color: #E53030;
    --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
    --card-bg: #2A1212;
    --page-bg: #140C0C;
    --text-main: #FFF1E8;
    --border-color: #6A1E1E;
    --gold-color: #F3C54D;
    --deep-red-color: #7E0D0D;
    --text-dark: #333333; /* For light backgrounds */
    --text-light: #FFF1E8; /* For dark backgrounds */
}

body {
    background-color: var(--page-bg); /* Assuming shared.css sets this via var(--background-color) */
    color: var(--text-light); /* Default text color for dark body background */
}

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

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

/* HERO Section */
.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, body handles header offset */
    background-color: var(--page-bg);
}

.page-promotions__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure full width for flex item */
}

.page-promotions__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

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

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.page-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 2.8em); /* Responsive H1 font size */
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
    max-width: 900px; /* To prevent extremely long lines */
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__lead-text {
    font-size: 1.2em;
    color: var(--text-light);
    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: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button:hover {
    filter: brightness(1.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Section Styling */
.page-promotions__section-title {
    font-size: 2.2em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promotions__text-block {
    font-size: 1.1em;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__dark-section {
    background-color: var(--deep-red-color); /* Darker background for contrast */
    padding: 60px 0;
}

.page-promotions__introduction-section {
    padding: 60px 0;
}

/* Quick Access Buttons */
.page-promotions__quick-access-section {
    padding: 60px 0;
}

.page-promotions__button-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.page-promotions__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
}

/* Game Cards */
.page-promotions__games-promo-section {
    padding: 60px 0;
}

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

.page-promotions__game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-promotions__game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions__game-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.page-promotions__card-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin: 20px 15px 10px;
    font-weight: bold;
}

.page-promotions__card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: var(--gold-color);
    text-decoration: underline;
}

.page-promotions__game-card p {
    color: var(--text-light);
    font-size: 0.95em;
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-promotions__card-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__card-button:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Promo Details Section */
.page-promotions__promo-details-section {
    padding: 60px 0;
}

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

.page-promotions__promo-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-promotions__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions__promo-card-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__promo-card img {
    width: 100%;
     /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.page-promotions__promo-card p {
    color: var(--text-light);
    font-size: 0.95em;
    margin-bottom: 25px;
}

/* Security & Support Section */
.page-promotions__security-support-section {
    padding: 60px 0;
}

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

.page-promotions__feature-item {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-promotions__feature-title {
    font-size: 1.3em;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__feature-item p {
    color: var(--text-light);
    font-size: 0.95em;
}

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

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

.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(--border-color);
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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(--gold-color); /* Question text color */
}
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: rgba(var(--primary-color), 0.1); /* Lighter hover for dark background */
}
details.page-promotions__faq-item[open] summary.page-promotions__faq-question {
    background: rgba(var(--primary-color), 0.15);
}

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

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

details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 25px 25px;
    background: rgba(var(--primary-color), 0.05); /* Slightly lighter background for answer */
    border-radius: 0 0 12px 12px;
    color: var(--text-light);
}

.page-promotions__faq-answer p {
    margin: 0;
    font-size: 1em;
    color: var(--text-light);
}

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

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

.page-promotions__blog-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.page-promotions__blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions__blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.page-promotions__blog-card .page-promotions__card-title {
    font-size: 1.3em;
    margin: 20px 20px 10px;
    color: var(--gold-color);
}

.page-promotions__blog-card .page-promotions__card-title a {
    color: inherit;
    text-decoration: none;
}
.page-promotions__blog-card .page-promotions__card-title a:hover {
    text-decoration: underline;
}

.page-promotions__blog-date {
    font-size: 0.9em;
    color: #888;
    margin: 0 20px 10px;
}

.page-promotions__blog-card p {
    font-size: 0.95em;
    color: var(--text-light);
    padding: 0 20px 20px;
    margin: 0;
}

.page-promotions__blog-card .page-promotions__card-button {
    margin: 0 20px 20px;
    padding: 8px 18px;
    font-size: 0.85em;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__main-title {
        font-size: 2.4em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__lead-text,
    .page-promotions__text-block {
        font-size: 1em;
    }
    .page-promotions__hero-image img {
        height: 450px;
    }
    .page-promotions__game-card img,
    .page-promotions__promo-card img,
    .page-promotions__blog-card img {
        
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-top: 10px !important; /* body handles offset, small top padding for section */
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-promotions__main-title {
        font-size: clamp(1.8em, 5vw, 2.2em); /* Responsive H1 font size */
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .page-promotions__lead-text {
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    .page-promotions__cta-button {
        padding: 12px 30px;
        font-size: 1em;
        margin-top: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-promotions__section-title {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-promotions__text-block {
        font-size: 0.9em;
    }

    .page-promotions__button-group {
        flex-direction: column;
        gap: 10px;
    }

    .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: 12px 20px;
    }

    .page-promotions__game-cards,
    .page-promotions__promo-grid,
    .page-promotions__features-grid,
    .page-promotions__blog-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-promotions__game-card img,
    .page-promotions__promo-card img,
    .page-promotions__blog-card img {
        
    }

    .page-promotions__card-title,
    .page-promotions__promo-card-title,
    .page-promotions__feature-title {
        font-size: 1.2em;
    }

    .page-promotions__game-card p,
    .page-promotions__promo-card p,
    .page-promotions__feature-item p,
    .page-promotions__blog-card p {
        font-size: 0.9em;
    }

    .page-promotions__card-button {
        padding: 8px 15px;
        font-size: 0.8em;
    }

    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: 24px;
        width: 25px;
    }
    details.page-promotions__faq-item .page-promotions__faq-answer {
        padding: 0 20px 20px;
    }

    /* All images responsive */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        object-fit: cover;
    }

    /* All containers responsive */
    .page-promotions__introduction-section,
    .page-promotions__quick-access-section,
    .page-promotions__games-promo-section,
    .page-promotions__promo-details-section,
    .page-promotions__security-support-section,
    .page-promotions__faq-section,
    .page-promotions__blog-news-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}