.page-promo {
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop and mobile */
}

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

/* Hero Section */
.page-promo__hero-section {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promo__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Slightly darken image for text readability, NO COLOR CHANGE FILTER */
}

.page-promo__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
    padding: 40px;
    border-radius: 10px;
}

.page-promo__hero-title {
    font-size: 3.5em;
    color: #FFD700; /* Gold main color */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.page-promo__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-promo__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold primary button */
    color: #1A1A1A; /* Dark text for gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-promo__cta-button:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

/* Section Titles */
.page-promo__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}

.page-promo__text-content {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #f0f0f0;
}

/* Intro Section */
.page-promo__intro-section {
    padding: 60px 0;
    background-color: #1A1A1A; /* Dark background for contrast */
}

.page-promo__intro-section .page-promo__text-content {
    margin-bottom: 30px;
}

.page-promo__intro-section .page-promo__image {
    display: block;
    margin: 40px auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

/* Promotions Grid */
.page-promo__promotions-grid {
    padding: 60px 0;
    background-color: #000;
}

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

.page-promo__promo-card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promo__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.page-promo__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    min-width: 200px; /* Enforce min size */
    min-height: 200px; /* Enforce min size */
}

.page-promo__card-title {
    font-size: 1.6em;
    color: #FFD700;
    padding: 20px 20px 10px;
    line-height: 1.3;
}

.page-promo__card-title a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promo__card-title a:hover {
    color: #e6c200;
}

.page-promo__card-description {
    font-size: 1em;
    color: #cccccc;
    padding: 0 20px 20px;
    flex-grow: 1; /* Ensures buttons align at bottom */
}

.page-promo__card-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A1A1A;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin: 0 20px 20px;
    text-align: center;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promo__card-button:hover {
    background-color: #e6c200;
}

/* Maximization Section */
.page-promo__maximization-section {
    padding: 60px 0;
    background-color: #1A1A1A;
}

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

.page-promo__tip-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__tip-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promo__tip-description {
    font-size: 1em;
    color: #cccccc;
}

/* Call to Action Section */
.page-promo__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #000;
}

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

.page-promo__cta-button--primary {
    background-color: #FFD700;
    color: #1A1A1A;
}

.page-promo__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-promo__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #1A1A1A;
}

/* FAQ Section */
.page-promo__faq-section {
    padding: 60px 0;
    background-color: #1A1A1A;
}

.page-promo__faq-list {
    margin-top: 40px;
}

.page-promo__faq-item {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promo__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
    content: '-';
    transform: rotate(0deg);
}

.page-promo__faq-answer {
    font-size: 1em;
    color: #cccccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.page-promo__faq-answer.open {
    max-height: 200px; /* Sufficient height for most answers */
    padding-top: 10px;
}

/* Responsible Gaming Section */
.page-promo__responsible-gaming-section {
    padding: 60px 0;
    text-align: center;
    background-color: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__hero-description {
        font-size: 1.2em;
    }
    .page-promo__section-title {
        font-size: 2.2em;
    }
    .page-promo__cards-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promo__tips-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promo__hero-section {
        padding: 60px 0;
    }
    .page-promo__hero-content {
        padding: 30px;
    }
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
    .page-promo__text-content {
        font-size: 0.95em;
    }
    .page-promo__cards-wrapper {
        grid-template-columns: 1fr;
    }
    .page-promo__tips-grid {
        grid-template-columns: 1fr;
    }
    .page-promo__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__cta-button {
        width: 80%;
        margin: 0 auto;
    }
    /* Ensure content area images don't overflow */
    .page-promo__intro-section .page-promo__image,
    .page-promo__promo-card .page-promo__card-image {
        max-width: 100%;
        height: auto;
    }
    /* Content area images must be >= 200px */
    .page-promo img {
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__hero-description {
        font-size: 0.9em;
    }
    .page-promo__hero-content {
        padding: 20px;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo__card-title {
        font-size: 1.4em;
    }
    .page-promo__faq-question {
        font-size: 1.1em;
    }
}