/* style/yo88moi.css */
        :root {
            --primary-color: #2563eb;
            --secondary-color: #64748b;
            --text-color-dark: #333333;
            --text-color-light: #ffffff;
            --background-light: #f8f8f8;
            --background-white: #ffffff;
            --border-color: #e0e0e0;
        }

        .page-yo88moi {
            font-family: 'Arial', sans-serif;
            color: var(--text-color-dark);
            line-height: 1.6;
            background-color: var(--background-light);
            padding-bottom: 80px; /* Space for fixed button */
        }

        .page-yo88moi__container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .page-yo88moi__section {
            background-color: var(--background-white);
            padding: 40px 20px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .page-yo88moi__section h2 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 30px;
            font-size: 28px;
            font-weight: 700;
            line-height: 1.3;
        }

        .page-yo88moi__section h3 {
            color: var(--text-color-dark);
            font-size: 22px;
            font-weight: 600;
            margin-top: 25px;
            margin-bottom: 15px;
        }

        .page-yo88moi__text-block p {
            margin-bottom: 15px;
            font-size: 16px;
        }

        /* HERO Section */
        .page-yo88moi__hero-section {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px 20px;
            padding-top: 10px; /* Rely on body padding-top for header offset */
            margin-bottom: 30px;
            background-color: var(--background-white);
            border-radius: 8px;
            overflow: hidden;
        }

        .page-yo88moi__hero-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
        }

        .page-yo88moi__hero-image {
            width: 100%;
            margin-bottom: 30px;
        }

        .page-yo88moi__hero-image img {
            width: 100%;
            height: auto;
            max-width: 100%;
            display: block;
            border-radius: 8px;
            object-fit: cover;
        }

        .page-yo88moi__hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            width: 100%;
        }

        .page-yo88moi__hero-content h1 {
            color: var(--primary-color);
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .page-yo88moi__hero-content p {
            font-size: clamp(16px, 2vw, 20px);
            color: var(--text-color-dark);
            max-width: 800px;
            margin: 0 auto 30px auto;
        }

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

        .page-yo88moi__cta-button {
            display: inline-block;
            padding: 15px 30px;
            background: var(--primary-color);
            color: var(--text-color-light);
            text-decoration: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-yo88moi__cta-button:hover {
            background: #1e40af;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .page-yo88moi__cta-button--secondary {
            background: var(--secondary-color);
        }

        .page-yo88moi__cta-button--secondary:hover {
            background: #4a5568;
        }

        /* Quick Access Section */
        .page-yo88moi__quick-access-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .page-yo88moi__access-card {
            background: var(--background-white);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .page-yo88moi__access-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .page-yo88moi__access-card a {
            display: block;
            font-size: 18px;
            font-weight: bold;
            color: var(--primary-color);
            text-decoration: none;
        }

        .page-yo88moi__access-card a:hover {
            text-decoration: underline;
        }

        /* Games Section */
        .page-yo88moi__games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .page-yo88moi__game-card {
            background: var(--background-white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .page-yo88moi__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .page-yo88moi__game-card img {
            width: 100px;
            height: 100px;
            object-fit: contain;
            margin-bottom: 10px;
            border-radius: 5px;
        }

        .page-yo88moi__game-card a {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
        }

        .page-yo88moi__game-card a:hover {
            text-decoration: underline;
        }

        /* Promotions Section */
        .page-yo88moi__promotions-list {
            list-style: none;
            padding: 0;
            margin-top: 30px;
        }

        .page-yo88moi__promotion-item {
            display: flex;
            align-items: center;
            background: var(--background-white);
            padding: 20px;
            margin-bottom: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
            border: 1px solid var(--border-color);
        }

        .page-yo88moi__promotion-item img {
            width: 120px;
            height: 80px;
            object-fit: cover;
            border-radius: 5px;
            margin-right: 20px;
            flex-shrink: 0;
        }

        .page-yo88moi__promotion-content h3 {
            margin-top: 0;
            font-size: 20px;
            color: var(--primary-color);
        }

        .page-yo88moi__promotion-content p {
            margin-bottom: 10px;
            font-size: 15px;
        }

        .page-yo88moi__promotion-content a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: bold;
        }

        .page-yo88moi__promotion-content a:hover {
            text-decoration: underline;
        }

        /* Security & Support Section */
        .page-yo88moi__security-support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .page-yo88moi__security-support-card {
            background: var(--background-white);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            text-align: center;
            border: 1px solid var(--border-color);
        }

        .page-yo88moi__security-support-card img {
            width: 60px;
            height: 60px;
            margin-bottom: 15px;
        }

        .page-yo88moi__security-support-card h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 10px;
        }

        .page-yo88moi__security-support-card p {
            font-size: 15px;
            color: #555;
        }

        /* FAQ Section */
        details.page-yo88moi__faq-item {
            margin-bottom: 15px;
            border-radius: 5px;
            border: 1px solid var(--border-color);
            overflow: hidden;
            background: var(--background-white);
        }
        details.page-yo88moi__faq-item summary.page-yo88moi__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            cursor: pointer;
            user-select: none;
            list-style: none;
            transition: background-color 0.3s ease;
        }
        details.page-yo88moi__faq-item summary.page-yo88moi__faq-question::-webkit-details-marker {
            display: none;
        }
        details.page-yo88moi__faq-item summary.page-yo88moi__faq-question:hover {
            background: #f5f5f5;
        }
        .page-yo88moi__faq-qtext {
            flex: 1;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;
            text-align: left;
            color: var(--text-color-dark);
        }
        .page-yo88moi__faq-toggle {
            font-size: 24px;
            font-weight: bold;
            color: var(--secondary-color);
            flex-shrink: 0;
            margin-left: 15px;
            width: 28px;
            text-align: center;
        }
        details.page-yo88moi__faq-item .page-yo88moi__faq-answer {
            padding: 0 20px 20px;
            background: #f9f9f9;
            border-radius: 0 0 5px 5px;
            color: #555;
            font-size: 15px;
        }
        details.page-yo88moi__faq-item .page-yo88moi__faq-answer p {
            margin-top: 0;
            margin-bottom: 10px;
        }

        /* Blog Section */
        .page-yo88moi__blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .page-yo88moi__blog-card {
            background: var(--background-white);
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--border-color);
        }

        .page-yo88moi__blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .page-yo88moi__blog-card-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .page-yo88moi__blog-card-content {
            padding: 20px;
        }

        .page-yo88moi__blog-card-content h3 {
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 20px;
            line-height: 1.3;
        }

        .page-yo88moi__blog-card-content h3 a {
            color: var(--primary-color);
            text-decoration: none;
        }

        .page-yo88moi__blog-card-content h3 a:hover {
            text-decoration: underline;
        }

        .page-yo88moi__blog-card-content p {
            font-size: 15px;
            color: #555;
            margin-bottom: 15px;
        }

        .page-yo88moi__blog-card-meta {
            font-size: 14px;
            color: #888;
            margin-bottom: 10px;
        }

        /* Floating Login Button */
        .page-yo88moi__floating-button-wrapper {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            width: calc(100% - 40px);
            max-width: 400px;
            box-sizing: border-box;
        }

        .page-yo88moi__floating-button {
            display: block;
            width: 100%;
            padding: 18px 20px;
            background: linear-gradient(90deg, #ff4d4d, #ff8c00);
            color: var(--text-color-light);
            text-align: center;
            font-size: 20px;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(255, 77, 77, 0.4);
            transition: all 0.3s ease;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-yo88moi__floating-button:hover {
            background: linear-gradient(90deg, #ff6666, #ff9933);
            transform: translateY(-3px) translateX(-50%);
            box-shadow: 0 8px 25px rgba(255, 77, 77, 0.6);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .page-yo88moi {
                font-size: 15px;
            }
            .page-yo88moi__container {
                padding: 15px;
            }
            .page-yo88moi__section {
                padding: 25px 15px;
                margin-bottom: 20px;
            }
            .page-yo88moi__section h2 {
                font-size: 24px;
                margin-bottom: 20px;
            }
            .page-yo88moi__section h3 {
                font-size: 20px;
            }

            /* HERO Section Mobile */
            .page-yo88moi__hero-section {
                padding-top: 10px !important; /* Ensure small top padding */
                padding-bottom: 30px;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-yo88moi__hero-image {
                margin-bottom: 20px;
            }
            .page-yo88moi__hero-content h1 {
                font-size: clamp(24px, 7vw, 36px);
            }
            .page-yo88moi__hero-content p {
                font-size: clamp(15px, 3.5vw, 18px);
            }
            .page-yo88moi__cta-button {
                padding: 12px 20px;
                font-size: 16px;
                width: 100%; /* Full width for mobile buttons */
                max-width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }
            .page-yo88moi__cta-buttons {
                flex-direction: column;
                gap: 10px;
            }

            /* Quick Access Mobile */
            .page-yo88moi__quick-access-grid {
                grid-template-columns: 1fr;
            }

            /* Games Mobile */
            .page-yo88moi__games-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            }
            .page-yo88moi__game-card img {
                width: 80px;
                height: 80px;
            }
            .page-yo88moi__game-card a {
                font-size: 14px;
            }

            /* Promotions Mobile */
            .page-yo88moi__promotion-item {
                flex-direction: column;
                text-align: center;
            }
            .page-yo88moi__promotion-item img {
                margin-right: 0;
                margin-bottom: 15px;
                width: 100%;
                height: 150px;
            }

            /* Security & Support Mobile */
            .page-yo88moi__security-support-grid {
                grid-template-columns: 1fr;
            }

            /* FAQ Mobile */
            details.page-yo88moi__faq-item summary.page-yo88moi__faq-question { padding: 15px; }
            .page-yo88moi__faq-qtext { font-size: 15px; }
            details.page-yo88moi__faq-item .page-yo88moi__faq-answer { padding: 0 15px 15px; }

            /* Blog Mobile */
            .page-yo88moi__blog-grid {
                grid-template-columns: 1fr;
            }
            .page-yo88moi__blog-card-image img {
                height: 180px;
            }

            /* Floating Button Mobile */
            .page-yo88moi__floating-button-wrapper {
                width: calc(100% - 30px);
                bottom: 15px;
            }
            .page-yo88moi__floating-button {
                font-size: 18px;
                padding: 15px 10px;
            }
            
            /* General image and container responsive rules */
            .page-yo88moi img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-yo88moi__section,
            .page-yo88moi__container,
            .page-yo88moi__quick-access-grid,
            .page-yo88moi__games-grid,
            .page-yo88moi__promotions-list,
            .page-yo88moi__promotion-item,
            .page-yo88moi__security-support-grid,
            .page-yo88moi__security-support-card,
            .page-yo88moi__blog-grid,
            .page-yo88moi__blog-card {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-yo88moi ul, .page-yo88moi ol {
                padding-left: 0 !important;
                margin-left: 0 !important;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-yo88moi li {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
            }
        }