/* style/casino-live-games.css */\n\n/* Base Styles */\n.page-casino-live-games {\n    font-family: Arial, sans-serif;\n    line-height: 1.6;\n    color: #ffffff; /* Body background is dark #1a1a2e, so text is light */\n    background-color: transparent; /* Main content background is handled by body or sections */\n}\n\n.page-casino-live-games__container {\n    max-width: 1200px;\n    margin: 0 auto;\n    padding: 0 20px;\n}\n\n.page-casino-live-games__section {\n    padding: 60px 0;\n    text-align: center;\n    position: relative;\n}\n\n.page-casino-live-games__section-title {\n    font-size: 3em;\n    margin-bottom: 20px;\n    color: #ffffff; /* Light text for dark body background */\n    font-weight: bold;\n}\n\n.page-casino-live-games__text-block {\n    font-size: 1.1em;\n    margin-bottom: 30px;\n    color: #f0f0f0; /* Slightly off-white for paragraphs */\n    max-width: 800px;\n    margin-left: auto;\n    margin-right: auto;\n}\n\n/* Buttons */\n.page-casino-live-games__btn-primary,\n.page-casino-live-games__btn-secondary {\n    display: inline-block;\n    padding: 12px 30px;\n    border-radius: 5px;\n    text-decoration: none;\n    font-weight: bold;\n    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;\n    cursor: pointer;\n    box-sizing: border-box;\n    max-width: 100%; /* Ensure button responsiveness */\n    white-space: normal; /* Allow text wrapping */\n    word-wrap: break-word; /* Allow text wrapping */\n}\n\n.page-casino-live-games__btn-primary {\n    background-color: #C30808; /* Register/Login color */\n    color: #FFFF00; /* Register/Login font color */\n    border: 2px solid #C30808;\n    margin-right: 15px;\n}\n\n.page-casino-live-games__btn-primary:hover {\n    background-color: #e02020;\n    border-color: #e02020;\n    color: #ffffff;\n}\n\n.page-casino-live-games__btn-secondary {\n    background-color: transparent;\n    color: #ffffff;\n    border: 2px solid #017439; /* Brand primary color for border */\n}\n\n.page-casino-live-games__btn-secondary:hover {\n    background-color: #017439;\n    color: #ffffff;\n}\n\n.page-casino-live-games__cta-center {\n    margin-top: 40px;\n    display: flex;\n    justify-content: center;\n    gap: 15px;\n    flex-wrap: wrap;\n}\n\n/* Hero Section */\n.page-casino-live-games__hero-section {\n    position: relative;\n    width: 100%;\n    min-height: 600px;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n    text-align: center;\n    overflow: hidden;\n    padding-top: var(--header-offset, 120px); /* Fixed header offset */\n}\n\n.page-casino-live-games__hero-image {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    object-fit: cover;\n    z-index: -1;\n    filter: brightness(0.5); /* Darken background image for text readability */\n}\n\n.page-casino-live-games__hero-content {\n    position: relative;\n    z-index: 1;\n    color: #ffffff;\n    max-width: 900px;\n    padding: 20px;\n}\n\n.page-casino-live-games__hero-title {\n    font-size: 3.8em;\n    margin-bottom: 20px;\n    line-height: 1.2;\n    color: #ffffff;\n    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);\n}\n\n.page-casino-live-games__hero-description {\n    font-size: 1.4em;\n    margin-bottom: 40px;\n    color: #f0f0f0;\n    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);\n}\n\n.page-casino-live-games__hero-cta-buttons {\n    display: flex;\n    justify-content: center;\n    gap: 20px;\n    flex-wrap: wrap;\n}\n\n/* About Section */\n.page-casino-live-games__about-us {\n    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter dark background */\n}\n.page-casino-live-games__about-us .page-casino-live-games__image {\n    margin-top: 40px;\n    border-radius: 8px;\n    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);\n    max-width: 100%;\n    height: auto;\n}\n\n/* Game Types Section */\n.page-casino-live-games__game-types {\n    background-color: #1a1a2e; /* Dark background from body */\n}\n.page-casino-live-games__game-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n    gap: 30px;\n    margin-top: 40px;\n}\n\n.page-casino-live-games__game-card {\n    background-color: rgba(255, 255, 255, 0.08); /* Dark card background */\n    border-radius: 10px;\n    padding: 25px;\n    text-align: left;\n    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);\n    transition: transform 0.3s ease, box-shadow 0.3s ease;\n    display: flex;\n    flex-direction: column;\n    align-items: flex-start;\n    color: #ffffff;\n}\n\n.page-casino-live-games__game-card:hover {\n    transform: translateY(-10px);\n    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);\n}\n\n.page-casino-live-games__card-image {\n    width: 100%;\n    height: 200px; /* Fixed height for consistency */\n    object-fit: cover;\n    border-radius: 8px;\n    margin-bottom: 15px;\n    max-width: 100%;\n    display: block;\n}\n\n.page-casino-live-games__card-title {\n    font-size: 1.8em;\n    margin-bottom: 10px;\n    color: #ffffff;\n}\n\n.page-casino-live-games__card-description {\n    font-size: 1em;\n    color: #f0f0f0;\n}\n\n/* Cockfighting Section */\n.page-casino-live-games__cockfighting {\n    background-color: #017439; /* Brand primary color for this section */\n    color: #ffffff;\n}\n.page-casino-live-games__cockfighting .page-casino-live-games__section-title,\n.page-casino-live-games__cockfighting .page-casino-live-games__text-block {\n    color: #ffffff;\n}\n\n.page-casino-live-games__video-wrapper {\n    position: relative;\n    padding-bottom: 56.25%; /* 16:9 aspect ratio */\n    height: 0;\n    overflow: hidden;\n    max-width: 100%;\n    background: #000;\n    margin: 40px auto;\n    border-radius: 10px;\n    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);\n}\n\n.page-casino-live-games__video {\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    border-radius: 10px;\n    max-width: 100%;\n    height: auto;\n    display: block;\n}\n\n.page-casino-live-games__cockfighting-cta {\n    margin-top: 30px;\n}\n\n/* Promotions Section */\n.page-casino-live-games__promotions {\n    background-color: rgba(255, 255, 255, 0.05);\n}\n.page-casino-live-games__promo-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n    gap: 30px;\n    margin-top: 40px;\n}\n\n.page-casino-live-games__promo-card {\n    background-color: rgba(255, 255, 255, 0.08);\n    border-radius: 10px;\n    padding: 25px;\n    text-align: left;\n    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);\n    transition: transform 0.3s ease, box-shadow 0.3s ease;\n    display: flex;\n    flex-direction: column;\n    align-items: flex-start;\n    color: #ffffff;\n}\n\n.page-casino-live-games__promo-card:hover {\n    transform: translateY(-10px);\n    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);\n}\n\n.page-casino-live-games__promo-card .page-casino-live-games__card-image {\n    width: 100%;\n    height: 200px;\n    object-fit: cover;\n    border-radius: 8px;\n    margin-bottom: 15px;\n    max-width: 100%;\n    display: block;\n}\n\n.page-casino-live-games__promo-card .page-casino-live-games__card-title {\n    font-size: 1.6em;\n    margin-bottom: 10px;\n    color: #ffffff;\n}\n\n.page-casino-live-games__promo-card .page-casino-live-games__card-description {\n    font-size: 1em;\n    color: #f0f0f0;\n    flex-grow: 1; /* Push button to bottom */\n}\n\n.page-casino-live-games__promo-card .page-casino-live-games__btn-primary {\n    margin-top: 20px;\n    margin-right: 0;\n    align-self: flex-start;\n}\n\n/* Security Section */\n.page-casino-live-games__security {\n    background-color: #1a1a2e;\n}\n.page-casino-live-games__security .page-casino-live-games__image {\n    margin-top: 40px;\n    border-radius: 8px;\n    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);\n    max-width: 100%;\n    height: auto;\n}\n\n/* How To Play Section */\n.page-casino-live-games__how-to-play {\n    background-color: #017439;\n    color: #ffffff;\n}\n.page-casino-live-games__how-to-play .page-casino-live-games__section-title,\n.page-casino-live-games__how-to-play .page-casino-live-games__text-block {\n    color: #ffffff;\n}\n\n.page-casino-live-games__steps-grid {\n    display: grid;\n    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));\n    gap: 30px;\n    margin-top: 40px;\n}\n\n.page-casino-live-games__step-card {\n    background-color: rgba(255, 255, 255, 0.1);\n    border-radius: 10px;\n    padding: 25px;\n    text-align: left;\n    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);\n    color: #ffffff;\n}\n\n.page-casino-live-games__step-card .page-casino-live-games__card-title {\n    font-size: 1.6em;\n    margin-bottom: 10px;\n    color: #FFFF00; /* Yellow for step titles */\n}\n\n.page-casino-live-games__step-card .page-casino-live-games__card-description {\n    font-size: 1em;\n    color: #f0f0f0;\n}\n\n/* FAQ Section */\n.page-casino-live-games__faq {\n    background-color: rgba(255, 255, 255, 0.05);\n}\n.page-casino-live-games__faq-list {\n    max-width: 900px;\n    margin: 40px auto 0 auto;\n    text-align: left;\n}\n\n.page-casino-live-games__faq-item {\n    background-color: rgba(255, 255, 255, 0.08);\n    border-radius: 8px;\n    margin-bottom: 15px;\n    overflow: hidden;\n    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);\n}\n\n.page-casino-live-games__faq-question {\n    display: flex;\n    justify-content: space-between;\n    align-items: center;\n    padding: 20px 25px;\n    font-size: 1.2em;\n    font-weight: bold;\n    color: #ffffff;\n    cursor: pointer;\n    background-color: rgba(255, 255, 255, 0.1);\n    transition: background-color 0.3s ease;\n}\n\n.page-casino-live-games__faq-question:hover {\n    background-color: rgba(255, 255, 255, 0.15);\n}\n\n.page-casino-live-games__faq-toggle {\n    font-size: 1.5em;\n    line-height: 1;\n    transition: transform 0.3s ease;\n    color: #FFFF00; /* Yellow toggle icon */\n}\n\n.page-casino-live-games__faq-item.active .page-casino-live-games__faq-toggle {\n    transform: rotate(45deg); /* Change + to X or - */\n}\n\n.page-casino-live-games__faq-answer {\n    max-height: 0;\n    overflow: hidden;\n    padding: 0 25px;\n    transition: max-height 0.3s ease, padding 0.3s ease;\n    color: #f0f0f0;\n}\n\n.page-casino-live-games__faq-item.active .page-casino-live-games__faq-answer {\n    max-height: 1000px !important; /* Sufficiently large to show content */\n    padding: 15px 25px 25px 25px;\n}\n\n.page-casino-live-games__faq-answer p {\n    margin: 0;\n    font-size: 1em;\n    line-height: 1.5;\n}\n\n/* Image styles */\n.page-casino-live-games img {\n    border-radius: 8px;\n    max-width: 100%;\n    height: auto;\n    display: block; /* Ensures images behave well with max-width */\n}\n\n/* Responsive adjustments */\n@media (max-width: 1024px) {\n    .page-casino-live-games__hero-title {\n        font-size: 3em;\n    }\n    .page-casino-live-games__hero-description {\n        font-size: 1.2em;\n    }\n    .page-casino-live-games__section-title {\n        font-size: 2.5em;\n    }\n}\n\n@media (max-width: 768px) {\n    .page-casino-live-games {\n        font-size: 16px;\n        line-height: 1.6;\n    }\n    .page-casino-live-games__container {\n        padding: 0 15px;\n    }\n    .page-casino-live-games__hero-section {\n        min-height: 450px;\n        padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */\n    }\n    .page-casino-live-games__hero-title {\n        font-size: 2.2em;\n    }\n    .page-casino-live-games__hero-description {\n        font-size: 1em;\n    }\n    .page-casino-live-games__section-title {\n        font-size: 2em;\n    }\n    .page-casino-live-games__text-block {\n        font-size: 0.95em;\n    }\n    .page-casino-live-games__hero-cta-buttons,\n    .page-casino-live-games__cta-center,\n    .page-casino-live-games__cockfighting-cta {\n        flex-direction: column;\n        gap: 10px;\n    }\n    .page-casino-live-games__btn-primary,\n    .page-casino-live-games__btn-secondary {\n        margin-right: 0;\n        width: 100% !important; /* Force full width on mobile */\n        max-width: 100% !important;\n        padding: 10px 15px;\n    }\n    .page-casino-live-games img {\n        max-width: 100% !important;\n        width: 100% !important;\n        height: auto !important;\n        display: block !important;\n    }\n    .page-casino-live-games video,\n    .page-casino-live-games__video {\n        max-width: 100% !important;\n        width: 100% !important;\n        height: auto !important;\n        display: block !important;\n    }\n    .page-casino-live-games__video-section,\n    .page-casino-live-games__video-container,\n    .page-casino-live-games__video-wrapper,\n    .page-casino-live-games__section,\n    .page-casino-live-games__card,\n    .page-casino-live-games__container,\n    .page-casino-live-games__game-card,\n    .page-casino-live-games__promo-card,\n    .page-casino-live-games__step-card,\n    .page-casino-live-games__faq-item {\n      max-width: 100% !important;\n      width: 100% !important;\n      box-sizing: border-box !important;\n      padding-left: 15px;\n      padding-right: 15px;\n      overflow: hidden !important;\n    }\n    .page-casino-live-games__video-wrapper {\n        padding-bottom: 56.25% !important; /* Maintain aspect ratio */\n        height: 0 !important;\n        margin-left: 0 !important;\n        margin-right: 0 !important;\n    }\n    .page-casino-live-games__faq-question {\n        font-size: 1.1em;\n        padding: 15px 20px;\n    }\n    .page-casino-live-games__faq-answer {\n        padding: 0 20px;\n    }\n    .page-casino-live-games__faq-item.active .page-casino-live-games__faq-answer {\n        padding: 10px 20px 20px 20px;\n    }\n}\n\n@media (max-width: 480px) {\n    .page-casino-live-games__hero-title {\n        font-size: 1.8em;\n    }\n    .page-casino-live-games__section-title {\n        font-size: 1.8em;\n    }\n    .page-casino-live-games__game-card .page-casino-live-games__card-title,\n    .page-casino-live-games__promo-card .page-casino-live-games__card-title,\n    .page-casino-live-games__step-card .page-casino-live-games__card-title {\n        font-size: 1.4em;\n    }\n}