/* style/game-lobby-live-casino-guide.css */

/* --- General Styles & Typography (BEM) --- */
.page-game-lobby-live-casino-guide {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
    line-height: 1.6;
    padding-bottom: 60px; /* Ensure space above footer */
}

.page-game-lobby-live-casino-guide h1,
.page-game-lobby-live-casino-guide h2,
.page-game-lobby-live-casino-guide h3 {
    color: #F2C14E; /* Gold for titles */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-game-lobby-live-casino-guide__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem); /* Responsive H1 */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    font-weight: 700;
}

.page-game-lobby-live-casino-guide__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-game-lobby-live-casino-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #11A84E 0%, #22C768 100%);
    border-radius: 2px;
}

.page-game-lobby-live-casino-guide__sub-title {
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #A7D9B8; /* Text Secondary */
}

.page-game-lobby-live-casino-guide p {
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
}

.page-game-lobby-live-casino-guide a {
    color: #57E38D; /* Glow */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-game-lobby-live-casino-guide a:hover {
    color: #22C768;
    text-decoration: underline;
}

/* --- Layout Containers (BEM) --- */
.page-game-lobby-live-casino-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- Hero Section (BEM) --- */
.page-game-lobby-live-casino-guide__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom */
    overflow: hidden;
    background-color: #08160F; /* Fallback for image */
}

.page-game-lobby-live-casino-guide__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit hero image height */
    overflow: hidden;
    position: relative;
}

.page-game-lobby-live-casino-guide__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-game-lobby-live-casino-guide__hero-content {
    position: relative; /* Ensure content is above image */
    z-index: 10;
    text-align: center;
    padding: 40px 20px;
    max-width: 1000px;
    margin-top: -100px; /* Overlap slightly with image for visual flow */
    background-color: rgba(8, 22, 15, 0.85); /* Semi-transparent background for readability */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid #2E7A4E; /* Border color */
}

/* --- CTA Buttons (BEM) --- */
.page-game-lobby-live-casino-guide__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%;
    max-width: 600px; /* Limit width of button group */
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-live-casino-guide__btn-primary,
.page-game-lobby-live-casino-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Ensure long words break */
    box-sizing: border-box; /* Include padding in width calculation */
    max-width: 100%; /* Ensure button doesn't exceed container */
    width: 220px; /* Fixed width for desktop */
}

.page-game-lobby-live-casino-guide__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #ffffff;
    border: 2px solid transparent;
}

.page-game-lobby-live-casino-guide__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-game-lobby-live-casino-guide__btn-secondary {
    background-color: transparent;
    color: #F2C14E; /* Gold */
    border: 2px solid #F2C14E; /* Gold */
}

.page-game-lobby-live-casino-guide__btn-secondary:hover {
    background-color: #F2C14E; /* Gold */
    color: #08160F; /* Background */
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

/* --- Intro Section (BEM) --- */
.page-game-lobby-live-casino-guide__intro-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
}

/* --- Why Choose Section (BEM) --- */
.page-game-lobby-live-casino-guide__why-choose-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.page-game-lobby-live-casino-guide__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-lobby-live-casino-guide__feature-card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border color */
}

.page-game-lobby-live-casino-guide__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.page-game-lobby-live-casino-guide__feature-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Ensure image behaves as block */
}

.page-game-lobby-live-casino-guide__feature-title {
    color: #F2FFF6; /* Text Main */
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* --- Game Types Section (BEM) --- */
.page-game-lobby-live-casino-guide__game-types-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

.page-game-lobby-live-casino-guide__game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-game-lobby-live-casino-guide__game-card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border color */
}

.page-game-lobby-live-casino-guide__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.page-game-lobby-live-casino-guide__game-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block; /* Ensure image behaves as block */
}

.page-game-lobby-live-casino-guide__game-title {
    color: #F2C14E; /* Gold */
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* --- How to Play Section (BEM) --- */
.page-game-lobby-live-casino-guide__how-to-play-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.page-game-lobby-live-casino-guide__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-game-lobby-live-casino-guide__step-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid #2E7A4E; /* Border color */
}

.page-game-lobby-live-casino-guide__step-title {
    color: #F2FFF6; /* Text Main */
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.page-game-lobby-live-casino-guide__step-title::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #22C768; /* Auxiliary color */
    color: #08160F; /* Background */
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: bold;
}

.page-game-lobby-live-casino-guide__steps-list {
    counter-reset: step-counter;
}

.page-game-lobby-live-casino-guide__cta-bottom {
    text-align: center;
    margin-top: 50px;
}

/* --- Tips Section (BEM) --- */
.page-game-lobby-live-casino-guide__tips-section {
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

.page-game-lobby-live-casino-guide__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-game-lobby-live-casino-guide__tip-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 */
}

.page-game-lobby-live-casino-guide__tip-title {
    color: #F2C14E; /* Gold */
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* --- FAQ Section (BEM) --- */
.page-game-lobby-live-casino-guide__faq-section {
    padding: 80px 0;
    background-color: #08160F; /* Background */
}

.page-game-lobby-live-casino-guide__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-game-lobby-live-casino-guide__faq-item {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #2E7A4E; /* Border color */
}

.page-game-lobby-live-casino-guide__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #1E3A2A; /* Divider */
    color: #F2FFF6; /* Text Main */
    font-weight: bold;
    font-size: 1.15rem;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-game-lobby-live-casino-guide__faq-question:hover {
    background-color: #0A4B2C; /* Deep Green */
}

.page-game-lobby-live-casino-guide__faq-question::-webkit-details-marker {
    display: none;
}

.page-game-lobby-live-casino-guide__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: #22C768; /* Auxiliary color */
    transition: transform 0.3s ease;
}

.page-game-lobby-live-casino-guide__faq-item[open] .page-game-lobby-live-casino-guide__faq-toggle {
    transform: rotate(45deg);
}

.page-game-lobby-live-casino-guide__faq-answer {
    padding: 0 25px 20px 25px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1rem;
}

/* --- Final CTA Section (BEM) --- */
.page-game-lobby-live-casino-guide__cta-final-section {
    padding: 60px 0;
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-game-lobby-live-casino-guide__hero-content {
        margin-top: -50px;
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .page-game-lobby-live-casino-guide {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-game-lobby-live-casino-guide__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }

    .page-game-lobby-live-casino-guide__sub-title {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        margin-bottom: 20px;
    }

    .page-game-lobby-live-casino-guide__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 30px;
    }

    .page-game-lobby-live-casino-guide__hero-section {
        padding-bottom: 40px;
    }

    .page-game-lobby-live-casino-guide__hero-image-wrapper {
        max-height: 400px;
    }

    .page-game-lobby-live-casino-guide__hero-content {
        margin-top: -30px;
        padding: 20px 15px;
    }

    .page-game-lobby-live-casino-guide__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .page-game-lobby-live-casino-guide__btn-primary,
    .page-game-lobby-live-casino-guide__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1rem;
    }

    .page-game-lobby-live-casino-guide__container {
        padding: 0 15px;
    }

    .page-game-lobby-live-casino-guide__feature-card,
    .page-game-lobby-live-casino-guide__game-card,
    .page-game-lobby-live-casino-guide__step-item,
    .page-game-lobby-live-casino-guide__tip-item {
        padding: 20px;
    }

    .page-game-lobby-live-casino-guide__feature-image,
    .page-game-lobby-live-casino-guide__game-image {
        height: 180px;
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Image responsiveness for any img */
    .page-game-lobby-live-casino-guide img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    /* Video responsiveness (if any) */
    .page-game-lobby-live-casino-guide video {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    /* Ensure containers with images/videos are responsive */
    .page-game-lobby-live-casino-guide__section,
    .page-game-lobby-live-casino-guide__card,
    .page-game-lobby-live-casino-guide__container,
    .page-game-lobby-live-casino-guide__hero-image-wrapper,
    .page-game-lobby-live-casino-guide__video-section,
    .page-game-lobby-live-casino-guide__video-container,
    .page-game-lobby-live-casino-guide__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Ensure content does not overflow */
    }

    /* Small top padding for sections, body handles header offset */
    .page-game-lobby-live-casino-guide__hero-section,
    .page-game-lobby-live-casino-guide__intro-section,
    .page-game-lobby-live-casino-guide__why-choose-section,
    .page-game-lobby-live-casino-guide__game-types-section,
    .page-game-lobby-live-casino-guide__how-to-play-section,
    .page-game-lobby-live-casino-guide__tips-section,
    .page-game-lobby-live-casino-guide__faq-section,
    .page-game-lobby-live-casino-guide__cta-final-section {
        padding-top: 10px !important; /* Small top padding */
    }
}