:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #000080; /* Dark Blue */
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: rgba(0, 0, 0, 0.1);
}

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

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

.page-promotions .content-block {
    padding: 60px 0;
}

.page-promotions .bg-light {
    background-color: var(--bg-light);
}

.page-promotions .bg-primary-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.page-promotions .text-center {
    text-align: center;
}

/* Section Titles */
.page-promotions .section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-promotions .section-title-light {
    font-size: 2.5em;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions .section-title-light::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--text-light);
    border-radius: 2px;
}

.page-promotions .description-light {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Buttons */
.page-promotions .cta-button,
.page-promotions .button,
.page-promotions .cta-button-secondary,
.page-promotions .cta-button-outline {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent; /* Default transparent border */
}

.page-promotions .cta-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 10px var(--shadow-light);
}

.page-promotions .cta-button:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions .button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    box-shadow: 0 4px 10px var(--shadow-light);
}

.page-promotions .button:hover {
    background-color: darken(var(--secondary-color), 10%);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions .cta-button-secondary {
    background-color: var(--text-light);
    color: var(--secondary-color);
    box-shadow: 0 4px 10px var(--shadow-light);
}

.page-promotions .cta-button-secondary:hover {
    background-color: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions .cta-button-outline {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.page-promotions .cta-button-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Banner */
.page-promotions .hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-promotions .hero-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.page-promotions .hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.page-promotions .hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
    padding: 40px 20px;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
}

.page-promotions .hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions .hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Promo Grid */
.page-promotions .promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions .promo-item {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions .promo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions .promo-item .promo-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions .promo-item h3 {
    font-size: 1.8em;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.page-promotions .promo-item p {
    margin-bottom: 20px;
}

.page-promotions .promo-item ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.page-promotions .promo-item ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-promotions .promo-item ul li .icon-check {
    color: #28a745; /* Green for checkmark */
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2em;
}

/* Promo Cards */
.page-promotions .promo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions .card {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-promotions .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-promotions .card p {
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions .card .button {
    margin-top: auto; /* Push button to bottom */
}

/* List with check icons */
.page-promotions .list-check {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-promotions .list-check li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-promotions .list-check li .icon-check {
    color: #28a745;
    font-size: 1.4em;
    margin-right: 15px;
    line-height: 1;
    flex-shrink: 0;
}

/* Game Specific Promo Grid */
.page-promotions .promo-grid-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions .promo-card-game {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-promotions .promo-card-game:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions .game-promo-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions .promo-card-game h3 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.page-promotions .promo-card-game p {
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Events and Tournaments */
.page-promotions .event-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions .event-item {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions .event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions .event-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions .event-item h4 {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* VIP Program */
.page-promotions .vip-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions .vip-benefit-item {
    background-color: var(--bg-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions .vip-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

.page-promotions .vip-benefit-item h4 {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* FAQ Section */
.page-promotions .faq-container {
    margin-top: 40px;
}

.page-promotions .faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--bg-white);
}

.page-promotions .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: var(--bg-white);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-promotions .faq-question:hover {
    background-color: var(--bg-light);
}

.page-promotions .faq-question h3 {
    font-size: 1.2em;
    color: var(--secondary-color);
    margin: 0;
    flex-grow: 1;
}

.page-promotions .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--primary-color);
    margin-left: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.page-promotions .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    background: var(--bg-light);
    color: var(--text-dark);
}

.page-promotions .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
}

.page-promotions .faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

/* Back to Top Button */
.page-promotions .back-to-top-btn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    text-align: center;
    font-size: 1.5em;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions .back-to-top-btn:hover {
    background-color: darken(var(--primary-color), 10%);
    transform: translateY(-3px);
}

.page-promotions .back-to-top-btn .arrow-up {
    display: block;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions .section-title {
        font-size: 2em;
    }
    .page-promotions .section-title-light {
        font-size: 2em;
    }
    .page-promotions .hero-title {
        font-size: 2.5em;
    }
    .page-promotions .hero-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions .content-block {
        padding: 40px 0;
    }
    .page-promotions .container {
        padding: 0 15px;
    }
    .page-promotions .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions .section-title-light {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-promotions .hero-title {
        font-size: 2em;
    }
    .page-promotions .hero-description {
        font-size: 1em;
    }
    .page-promotions .cta-button, .page-promotions .button, .page-promotions .cta-button-secondary, .page-promotions .cta-button-outline {
        padding: 12px 25px;
        font-size: 1em;
        margin: 8px;
    }
    .page-promotions .promo-grid, .page-promotions .promo-cards, .page-promotions .promo-grid-2col, .page-promotions .event-list, .page-promotions .vip-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-promotions .promo-item,
    .page-promotions .card,
    .page-promotions .promo-card-game,
    .page-promotions .event-item,
    .page-promotions .vip-benefit-item {
        padding: 20px;
    }
    .page-promotions .promo-item h3,
    .page-promotions .card h3,
    .page-promotions .promo-card-game h3,
    .page-promotions .event-item h4,
    .page-promotions .vip-benefit-item h4 {
        font-size: 1.4em;
    }
    .page-promotions .faq-question {
        padding: 15px 20px;
    }
    .page-promotions .faq-question h3 {
        font-size: 1.1em;
    }
    .page-promotions .faq-toggle {
        font-size: 1.5em;
    }
    .page-promotions .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
    .page-promotions .back-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions .hero-title {
        font-size: 1.8em;
    }
    .page-promotions .hero-description {
        font-size: 0.9em;
    }
    .page-promotions .section-title {
        font-size: 1.6em;
    }
    .page-promotions .section-title-light {
        font-size: 1.6em;
    }
    .page-promotions .promo-item h3,
    .page-promotions .card h3,
    .page-promotions .promo-card-game h3,
    .page-promotions .event-item h4,
    .page-promotions .vip-benefit-item h4 {
        font-size: 1.2em;
    }
    .page-promotions .promo-item .promo-image,
    .page-promotions .card-image,
    .page-promotions .game-promo-image,
    .page-promotions .event-image {
        height: 150px;
    }
    .page-promotions .faq-question h3 {
        font-size: 1em;
    }
    .page-promotions .faq-toggle {
        font-size: 1.3em;
    }
}