.page-live-casino {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-live-casino__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding as per rule */
    display: flex;
    flex-direction: column; /* Forced image-above-text */
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-live-casino__hero-image-wrapper {
    width: 100%;
    overflow: hidden;
}

.page-live-casino__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

.page-live-casino__hero-content {
    padding: 40px 20px;
    max-width: 900px;
    box-sizing: border-box;
}

.page-live-casino__main-title {
    font-weight: bold;
    color: #F2C14E;
    margin-bottom: 15px;
    /* font-size will be handled by browser or shared styles, no fixed size here */
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-live-casino__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

.page-live-casino__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-live-casino__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    box-sizing: border-box;
    font-size: 1em;
}

.page-live-casino__btn--primary {
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A; /* Dark text on bright button */
    border: 1px solid #FFD36B;
}

.page-live-casino__btn--primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 15px #FFD36B;
}

.page-live-casino__btn--secondary {
    background-color: transparent;
    color: #F2C14E;
    border: 2px solid #F2C14E;
}

.page-live-casino__btn--secondary:hover {
    background-color: #F2C14E;
    color: #0A0A0A;
    box-shadow: 0 0 15px #F2C14E;
}

.page-live-casino__section-title {
    color: #F2C14E;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 2.2em;
    font-weight: bold;
}

.page-live-casino__section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.05em;
    color: #E5E5E5;
}

/* Games Overview Section */
.page-live-casino__games-overview-section {
    padding: 40px 20px;
    background-color: #0A0A0A;
}

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

.page-live-casino__game-card {
    background-color: #111111; /* Card B G */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-casino__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 20px #FFD36B; /* Glow */
}

.page-live-casino__game-card-image {
    width: 100%;
    height: 200px; /* Example fixed height for cards, ensuring min 200px */
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-live-casino__game-card-title {
    color: #F2C14E;
    font-size: 1.4em;
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-live-casino__game-card-text {
    font-size: 0.95em;
    color: #FFF6D6;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-live-casino__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    min-width: unset;
}

/* Features Section */
.page-live-casino__features-section {
    padding: 60px 20px;
    background-color: #0A0A0A;
}

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

.page-live-casino__feature-item {
    background-color: #111111; /* Card B G */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-live-casino__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4), 0 0 20px #FFD36B; /* Glow */
}

.page-live-casino__feature-icon {
    width: 100%; /* Fill container width */
    max-width: 200px; /* Limit its maximum display width to 200px, but ensure it scales down */
    height: auto;
    object-fit: contain;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.page-live-casino__feature-title {
    color: #F2C14E;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-live-casino__feature-description {
    color: #FFF6D6;
    font-size: 0.95em;
}

/* CTA Section */
.page-live-casino__cta-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #111111; /* Card B G */
    border-top: 1px solid #3A2A12;
    border-bottom: 1px solid #3A2A12;
    margin-top: 60px;
}

.page-live-casino__cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* FAQ Section */
.page-live-casino__faq-section {
    padding: 60px 20px;
    background-color: #0A0A0A;
}

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

.page-live-casino__faq-item {
    background-color: #111111; /* Card B G */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    transition: box-shadow 0.3s ease;
}

.page-live-casino__faq-item:hover {
    box-shadow: 0 0 15px #FFD36B; /* Glow */
}

.page-live-casino__faq-question {
    color: #F2C14E;
    font-size: 1.2em;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

.page-live-casino__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-live-casino__faq-answer {
    color: #FFF6D6;
    font-size: 1em;
    display: none; /* Hidden by default, toggled by JS */
    padding-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-live-casino__hero-content {
        padding: 30px 15px;
    }

    .page-live-casino__main-title {
        font-size: clamp(1.8em, 5vw, 2.2em); /* Using clamp for responsive H1 */
    }

    .page-live-casino__hero-description {
        font-size: 1em;
    }

    .page-live-casino__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-live-casino__btn {
        width: 100%;
        max-width: 300px;
    }

    .page-live-casino__section-title {
        font-size: clamp(1.8em, 5vw, 2.2em);
        margin-top: 40px;
    }

    .page-live-casino__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    .page-live-casino__game-grid,
    .page-live-casino__features-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile image constraint: All images in .page-live-casino must be responsive */
    .page-live-casino img {
        max-width: 100%;
        height: auto;
    }

    /* Ensuring feature icons scale down but their containers are still large enough */
    .page-live-casino__feature-icon {
        max-width: 200px; /* Limits the displayed width, but original is 400x400 */
        /* height: auto; is already applied by the general img rule above */
    }
    .page-live-casino__game-card-image {
        height: auto; /* Allow height to adjust */
        min-height: 200px; /* Ensure minimum size for generated image */
    }
}