.page-faq {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main color for dark background */
    background-color: #08160F; /* Background color */
}

/* Hero Section */
.page-faq__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px;
    text-align: center;
    overflow: hidden;
    background-color: #08160F; /* Ensure background matches */
}

.page-faq__hero-image-wrapper {
    width: 100%;
    max-width: 100%; /* Ensure image wrapper is responsive */
    margin-bottom: 30px; /* Space between image and content */
}

.page-faq__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.page-faq__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-faq__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
}

.page-faq__intro-text {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-faq__btn-primary,
.page-faq__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%; /* Responsive button */
}

.page-faq__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-faq__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-faq__btn-secondary {
    background: transparent;
    color: #2AD16F; /* Button color */
    border: 2px solid #2AD16F; /* Border color from button color */
}

.page-faq__btn-secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    transform: translateY(-3px);
}

/* Video Section */
.page-faq__video-section {
    padding: 40px 20px;
    background-color: #08160F; /* Background color */
    text-align: center;
}

.page-faq__video-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-faq__video-description {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__video-container {
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
    margin: 0 auto;
    position: relative;
}

.page-faq__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    width: 100%; /* Crucial for desktop width */
    max-width: 100%; /* Crucial for desktop width */
}

.page-faq__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: pointer;
}

.page-faq__video-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}

/* Content Section (FAQ List) */
.page-faq__content-section {
    padding: 60px 20px;
    background-color: #08160F; /* Background color */
}

.page-faq__content-area {
    max-width: 1000px;
    margin: 0 auto;
}

.page-faq__section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
}

.page-faq__section-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-faq__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    border: 1px solid #2E7A4E; /* Border color */
}

.page-faq__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #1E3A2A; /* Deep Green for question header */
    list-style: none; /* For details/summary */
    position: relative;
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

.page-faq__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for Chrome/Safari */
}

.page-faq__faq-item[open] .page-faq__faq-question {
    background-color: #0A4B2C; /* Deeper green when open */
}

.page-faq__faq-qtext {
    flex-grow: 1;
    margin-right: 10px;
}

.page-faq__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #57E38D; /* Glow color */
}

.page-faq__faq-item[open] .page-faq__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
}

.page-faq__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    line-height: 1.8;
}

.page-faq__faq-answer p {
    margin-bottom: 10px;
}

.page-faq__faq-answer ul,
.page-faq__faq-answer ol {
    list-style-position: inside;
    margin-left: 0;
    padding-left: 25px;
    margin-bottom: 10px;
}

.page-faq__faq-answer a {
    color: #57E38D; /* Glow color for links */
    text-decoration: underline;
}

.page-faq__faq-answer a:hover {
    color: #2AD16F;
}

/* CTA Section (Bottom) */
.page-faq__cta-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
}

.page-faq__cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
}

.page-faq__cta-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Promo Grid Section */
.page-faq__promo-grid-section {
    padding: 60px 20px;
    background-color: #08160F; /* Background color */
    text-align: center;
}

.page-faq__grid-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
}

.page-faq__grid-description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-faq__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-faq__promo-card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    border: 1px solid #2E7A4E; /* Border color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-faq__promo-card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-faq__promo-card-title {
    font-size: 1.4rem;
    color: #F2FFF6; /* Text Main */
    margin: 15px 15px 10px;
    flex-grow: 1; /* Push link to bottom */
}

.page-faq__promo-card-title a {
    color: inherit;
    text-decoration: none;
}

.page-faq__promo-card-title a:hover {
    color: #57E38D; /* Glow color */
}

.page-faq__promo-card-text {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-faq__promo-card-link {
    display: inline-block;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 15px 15px;
    transition: background 0.3s ease;
    align-self: flex-start; /* Align link to the left */
}

.page-faq__promo-card-link:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

/* Responsible Gaming Section */
.page-faq__responsible-gaming-section {
    padding: 60px 20px;
    background-color: #0A4B2C; /* Deep Green */
    text-align: center;
}

.page-faq__responsible-gaming-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
}

.page-faq__responsible-gaming-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid #2E7A4E; /* Border color */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-faq__responsible-gaming-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-faq__responsible-gaming-subtitle {
    font-size: 1.3rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-faq__responsible-gaming-text {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

.page-faq__responsible-gaming-text a {
    color: #57E38D; /* Glow color for links */
    text-decoration: underline;
}

.page-faq__responsible-gaming-cta {
    margin-top: 40px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .page-faq {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-faq__hero-section {
        padding: 40px 15px 30px;
    }

    .page-faq__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .page-faq__intro-text {
        font-size: 1rem;
    }

    .page-faq__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
        max-width: 100%;
        overflow: hidden;
    }

    .page-faq__btn-primary,
    .page-faq__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
    }

    .page-faq__video-section {
        padding: 30px 0;
        padding-top: 10px !important; /* body already has padding-top */
    }

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

    .page-faq__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-faq__content-section,
    .page-faq__cta-section,
    .page-faq__promo-grid-section,
    .page-faq__responsible-gaming-section {
        padding: 40px 15px;
    }

    .page-faq__content-area {
        padding: 0 0;
        box-sizing: border-box;
        max-width: 100%;
        width: 100%;
    }

    .page-faq__section-title,
    .page-faq__video-title,
    .page-faq__cta-title,
    .page-faq__grid-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .page-faq__section-description,
    .page-faq__video-description,
    .page-faq__cta-description {
        font-size: 0.95rem;
    }

    .page-faq__faq-question {
        font-size: 1rem;
        padding: 15px;
    }

    .page-faq__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.9rem;
    }

    .page-faq__promo-grid {
        gap: 20px;
    }

    .page-faq__promo-card-image {
        height: 180px;
    }

    .page-faq__promo-card-title {
        font-size: 1.2rem;
    }

    .page-faq__promo-card-text {
        font-size: 0.85rem;
    }

    .page-faq__promo-card-link {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .page-faq__responsible-gaming-content {
        gap: 20px;
    }

    .page-faq__responsible-gaming-item {
        padding: 20px;
    }

    .page-faq__responsible-gaming-image {
        max-width: 200px;
    }

    .page-faq__responsible-gaming-subtitle {
        font-size: 1.1rem;
    }

    .page-faq__responsible-gaming-text {
        font-size: 0.85rem;
    }

    /* All images must be responsive */
    .page-faq img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* All containers with images/buttons/videos */
    .page-faq__hero-section,
    .page-faq__video-section,
    .page-faq__content-section,
    .page-faq__cta-section,
    .page-faq__promo-grid-section,
    .page-faq__responsible-gaming-section,
    .page-faq__promo-card,
    .page-faq__responsible-gaming-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Ensure no overflow */
    }
}