
        .page-game-hall-live-casino {
            font-family: 'Arial', sans-serif;
            color: #333333; /* Dark text for default light body background */
            line-height: 1.6;
        }

        .page-game-hall-live-casino__hero-section {
            background: linear-gradient(135deg, #2563eb, #64748b);
            padding: 10px 20px 80px;
            text-align: center;
            color: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .page-game-hall-live-casino__hero-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto 30px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }

        .page-game-hall-live-casino__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .page-game-hall-live-casino__hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-game-hall-live-casino__main-title {
            font-size: clamp(2em, 5vw, 3.2em); /* Responsive font size for H1 */
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #ffffff;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .page-game-hall-live-casino__hero-description {
            font-size: clamp(1em, 2.5vw, 1.2em);
            margin-bottom: 30px;
            color: #f0f8ff;
        }

        .page-game-hall-live-casino__cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .page-game-hall-live-casino__btn-primary,
        .page-game-hall-live-casino__btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            white-space: normal;
            word-wrap: break-word;
            text-align: center;
            max-width: 100%;
            box-sizing: border-box;
        }

        .page-game-hall-live-casino__btn-primary {
            background-color: #f0f8ff;
            color: #2563eb;
            border: 2px solid #f0f8ff;
        }

        .page-game-hall-live-casino__btn-primary:hover {
            background-color: #e0e8f0;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

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

        .page-game-hall-live-casino__btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        .page-game-hall-live-casino__section {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .page-game-hall-live-casino__section--grey {
            background-color: #f8f9fa;
        }

        .page-game-hall-live-casino__section-title {
            font-size: 2.2em;
            font-weight: 700;
            margin-bottom: 30px;
            color: #2563eb;
        }

        .page-game-hall-live-casino__section-description {
            font-size: 1.1em;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #555555;
        }

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

        .page-game-hall-live-casino__game-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            color: #333333;
            text-decoration: none;
            display: flex;
            flex-direction: column;
        }

        .page-game-hall-live-casino__game-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }

        .page-game-hall-live-casino__game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .page-game-hall-live-casino__game-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-game-hall-live-casino__game-title {
            font-size: 1.4em;
            font-weight: 600;
            margin-bottom: 15px;
            color: #2563eb;
        }

        .page-game-hall-live-casino__game-text {
            font-size: 0.95em;
            margin-bottom: 20px;
            color: #555555;
        }

        .page-game-hall-live-casino__features-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 40px;
            text-align: left;
        }

        .page-game-hall-live-casino__feature-item {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }

        .page-game-hall-live-casino__feature-icon-wrapper {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background-color: #2563eb;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(37, 99, 235, 0.4);
        }

        .page-game-hall-live-casino__feature-icon {
            width: 36px;
            height: 36px;
            object-fit: contain;
            filter: none; /* Ensure no filter is applied */
        }

        .page-game-hall-live-casino__feature-content {
            flex-grow: 1;
        }

        .page-game-hall-live-casino__feature-title {
            font-size: 1.3em;
            font-weight: 600;
            color: #2563eb;
            margin-bottom: 10px;
        }

        .page-game-hall-live-casino__feature-text {
            font-size: 0.95em;
            color: #555555;
        }

        .page-game-hall-live-casino__guide-section {
            background-color: #2563eb;
            color: #ffffff;
            padding: 60px 20px;
            text-align: center;
        }

        .page-game-hall-live-casino__guide-title {
            font-size: 2.2em;
            font-weight: 700;
            margin-bottom: 30px;
            color: #ffffff;
        }

        .page-game-hall-live-casino__steps-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }

        .page-game-hall-live-casino__step-item {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 30px;
            max-width: 350px;
            flex: 1 1 300px;
            box-sizing: border-box;
            text-align: left;
            position: relative;
            padding-top: 70px; /* Space for step number */
        }

        .page-game-hall-live-casino__step-number {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 2em;
            font-weight: 700;
            color: #f0f8ff;
            opacity: 0.7;
        }

        .page-game-hall-live-casino__step-title {
            font-size: 1.3em;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .page-game-hall-live-casino__step-text {
            font-size: 0.95em;
            color: #f0f8ff;
        }

        .page-game-hall-live-casino__faq-section {
            padding: 60px 20px;
            max-width: 900px;
            margin: 0 auto;
            text-align: left;
        }

        .page-game-hall-live-casino__faq-title {
            font-size: 2.2em;
            font-weight: 700;
            margin-bottom: 40px;
            color: #2563eb;
            text-align: center;
        }

        .page-game-hall-live-casino__faq-item {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .page-game-hall-live-casino__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 25px;
            font-size: 1.15em;
            font-weight: 600;
            color: #333333;
            cursor: pointer;
            user-select: none;
            background-color: #f8f9fa;
            transition: background-color 0.3s ease;
        }

        .page-game-hall-live-casino__faq-question:hover {
            background-color: #e9ecef;
        }

        .page-game-hall-live-casino__faq-qtext {
            pointer-events: none; /* Prevent text from blocking click event */
        }

        .page-game-hall-live-casino__faq-toggle {
            font-size: 1.5em;
            font-weight: 700;
            color: #2563eb;
            margin-left: 15px;
            pointer-events: none; /* Prevent icon from blocking click event */
            transition: transform 0.3s ease;
        }

        .page-game-hall-live-casino__faq-item.active .page-game-hall-live-casino__faq-toggle {
            transform: rotate(45deg);
        }

        .page-game-hall-live-casino__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: #555555;
        }

        .page-game-hall-live-casino__faq-item.active .page-game-hall-live-casino__faq-answer {
            max-height: 2000px !important; /* Sufficiently large to show all content */
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-game-hall-live-casino__conclusion-section {
            background-color: #64748b;
            color: #ffffff;
            padding: 60px 20px;
            text-align: center;
        }

        .page-game-hall-live-casino__conclusion-title {
            font-size: 2em;
            font-weight: 700;
            margin-bottom: 25px;
            color: #ffffff;
        }

        .page-game-hall-live-casino__conclusion-text {
            font-size: 1.1em;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: #f0f8ff;
        }

        .page-game-hall-live-casino__logo-strip {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 50px;
            padding: 30px 20px;
            background-color: #f0f8ff;
            border-top: 1px solid #e0e0e0;
        }

        .page-game-hall-live-casino__partner-logo {
            height: 60px; /* Example fixed height for logos */
            width: auto;
            object-fit: contain;
            filter: none; /* Ensure no filter is applied */
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .page-game-hall-live-casino__section-title {
                font-size: 2em;
            }
            .page-game-hall-live-casino__main-title {
                font-size: clamp(1.8em, 4.5vw, 3em);
            }
        }

        @media (max-width: 768px) {
            .page-game-hall-live-casino {
                font-size: 16px;
                line-height: 1.6;
            }
            .page-game-hall-live-casino__hero-section,
            .page-game-hall-live-casino__section,
            .page-game-hall-live-casino__guide-section,
            .page-game-hall-live-casino__conclusion-section,
            .page-game-hall-live-casino__faq-section {
                padding: 40px 15px;
            }
            .page-game-hall-live-casino__main-title {
                font-size: clamp(1.5em, 7vw, 2.5em);
            }
            .page-game-hall-live-casino__hero-description {
                font-size: clamp(0.9em, 4vw, 1.1em);
            }
            .page-game-hall-live-casino__cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .page-game-hall-live-casino__btn-primary,
            .page-game-hall-live-casino__btn-secondary {
                width: 100% !important;
                max-width: 100% !important;
                padding: 15px 10px;
                font-size: 1em;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-game-hall-live-casino__game-grid,
            .page-game-hall-live-casino__features-list,
            .page-game-hall-live-casino__steps-list {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            .page-game-hall-live-casino__game-card,
            .page-game-hall-live-casino__feature-item,
            .page-game-hall-live-casino__step-item {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding-left: 20px;
                padding-right: 20px;
            }
            .page-game-hall-live-casino__section-title,
            .page-game-hall-live-casino__guide-title,
            .page-game-hall-live-casino__faq-title,
            .page-game-hall-live-casino__conclusion-title {
                font-size: 1.8em;
            }
            .page-game-hall-live-casino__game-image,
            .page-game-hall-live-casino img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block !important;
            }
            .page-game-hall-live-casino__hero-image-wrapper,
            .page-game-hall-live-casino__game-card,
            .page-game-hall-live-casino__feature-item,
            .page-game-hall-live-casino__step-item,
            .page-game-hall-live-casino__faq-item,
            .page-game-hall-live-casino__logo-strip {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
            }
            .page-game-hall-live-casino__feature-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .page-game-hall-live-casino__feature-icon-wrapper {
                margin-bottom: 15px;
            }
            .page-game-hall-live-casino__faq-question {
                font-size: 1em;
                padding: 15px 20px;
            }
            .page-game-hall-live-casino__faq-answer {
                padding: 15px 20px !important;
            }
            .page-game-hall-live-casino__logo-strip {
                gap: 20px;
                padding: 20px 15px;
            }
            .page-game-hall-live-casino__partner-logo {
                height: 50px;
            }
        }
    