
        .page-g666wingame {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

        .page-g666wingame__hero-section {
            position: relative;
            width: 100%;
            overflow: hidden;
            background-color: #2563eb;
            padding-top: 10px; /* Minimal padding-top, relying on body for header offset */
        }

        .page-g666wingame__hero-image-wrapper {
            width: 100%;
            display: block;
        }

        .page-g666wingame__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        .page-g666wingame__hero-content {
            padding: 30px 15px;
            text-align: center;
            color: #ffffff;
            max-width: 800px;
            margin: 0 auto;
        }

        .page-g666wingame__hero-content h1 {
            font-size: clamp(1.8rem, 5vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            color: #ffffff;
        }

        .page-g666wingame__hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .page-g666wingame__btn-primary {
            display: inline-block;
            background-color: #f0c300; /* Bright gold for CTA */
            color: #1a1a1a;
            padding: 12px 25px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-g666wingame__btn-primary:hover {
            background-color: #e0b300;
            transform: translateY(-2px);
        }

        .page-g666wingame__floating-button {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #e63946; /* Striking red for promotion */
            color: #ffffff;
            padding: 15px 25px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            text-decoration: none;
            animation: pulse 2s infinite;
            max-width: calc(100% - 40px);
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-g666wingame__floating-button:hover {
            background-color: #d6293a;
        }

        @keyframes pulse {
            0% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.05); }
            100% { transform: translateX(-50%) scale(1); }
        }

        .page-g666wingame__section {
            padding: 40px 20px;
            max-width: 1200px;
            margin: 0 auto;
            box-sizing: border-box;
        }

        .page-g666wingame__section-title {
            font-size: 2.2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            color: #2563eb;
        }

        .page-g666wingame__section-description {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px auto;
            font-size: 1.1rem;
            color: #64748b;
        }

        .page-g666wingame__features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .page-g666wingame__feature-item {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 250px;
        }

        .page-g666wingame__feature-item:hover {
            transform: translateY(-5px);
        }

        .page-g666wingame__feature-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
            object-fit: contain;
            min-width: 80px;
            min-height: 80px;
        }

        .page-g666wingame__feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2563eb;
        }

        .page-g666wingame__feature-description {
            font-size: 0.95rem;
            color: #64748b;
        }

        .page-g666wingame__games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .page-g666wingame__game-card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            text-decoration: none;
            color: #333333;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease;
        }

        .page-g666wingame__game-card:hover {
            transform: translateY(-5px);
        }

        .page-g666wingame__game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            min-width: 200px;
            min-height: 200px;
        }

        .page-g666wingame__game-content {
            padding: 20px;
            flex-grow: 1;
        }

        .page-g666wingame__game-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: #2563eb;
        }

        .page-g666wingame__game-description {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 15px;
        }

        .page-g666wingame__game-link {
            display: inline-block;
            background-color: #f0c300;
            color: #1a1a1a;
            padding: 8px 15px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-g666wingame__game-link:hover {
            background-color: #e0b300;
        }

        .page-g666wingame__cta-section {
            background-color: #2563eb;
            color: #ffffff;
            text-align: center;
            padding: 60px 20px;
            margin-top: 40px;
        }

        .page-g666wingame__cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .page-g666wingame__cta-description {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px auto;
            opacity: 0.9;
        }

        .page-g666wingame__testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .page-g666wingame__testimonial-card {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-g666wingame__testimonial-quote {
            font-size: 1.1rem;
            color: #333333;
            margin-bottom: 20px;
            font-style: italic;
        }

        .page-g666wingame__testimonial-author {
            font-weight: 600;
            color: #2563eb;
            font-size: 1rem;
        }

        .page-g666wingame__faq-section {
            background-color: #f0f2f5;
        }

        .page-g666wingame__faq-item {
            background-color: #ffffff;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .page-g666wingame__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 20px;
            cursor: pointer;
            font-size: 1.15rem;
            font-weight: 600;
            color: #333333;
            border-bottom: 1px solid #eee;
            user-select: none;
        }

        .page-g666wingame__faq-question h3 {
            margin: 0;
            flex-grow: 1;
            text-align: left;
            pointer-events: none; /* Prevents text selection from interfering with click */
            color: #2563eb;
        }

        .page-g666wingame__faq-toggle {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2563eb;
            margin-left: 15px;
            pointer-events: none; /* Prevents icon from interfering with click */
            transition: transform 0.3s ease;
        }

        .page-g666wingame__faq-item.active .page-g666wingame__faq-toggle {
            transform: rotate(45deg);
        }

        .page-g666wingame__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: #64748b;
            font-size: 1rem;
        }

        .page-g666wingame__faq-item.active .page-g666wingame__faq-answer {
            max-height: 2000px !important; /* Sufficiently large to show content */
            padding: 20px 20px !important;
            opacity: 1;
        }

        .page-g666wingame__faq-answer p {
            margin-bottom: 10px;
        }

        .page-g666wingame__all-games-link {
            display: block;
            text-align: center;
            margin-top: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            color: #2563eb;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .page-g666wingame__all-games-link:hover {
            color: #1a4a9c;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .page-g666wingame__section-title {
                font-size: 2rem;
            }

            .page-g666wingame__cta-title {
                font-size: 2rem;
            }

            .page-g666wingame__games-grid,
            .page-g666wingame__features-grid,
            .page-g666wingame__testimonials-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-g666wingame__hero-section {
                padding-top: 10px !important;
            }

            .page-g666wingame__hero-content h1 {
                font-size: 1.8rem;
            }

            .page-g666wingame__hero-content p {
                font-size: 1rem;
            }

            .page-g666wingame__section {
                padding: 30px 15px;
            }

            .page-g666wingame__section-title {
                font-size: 1.8rem;
                margin-bottom: 20px;
            }

            .page-g666wingame__section-description {
                font-size: 1rem;
                margin-bottom: 30px;
            }

            .page-g666wingame__btn-primary,
            .page-g666wingame a[class*="button"],
            .page-g666wingame a[class*="btn"] {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding: 12px 15px;
                font-size: 0.95rem;
            }

            .page-g666wingame__floating-button {
                max-width: calc(100% - 30px) !important;
                padding: 12px 20px !important;
                font-size: 1rem !important;
            }

            .page-g666wingame__features-grid,
            .page-g666wingame__games-grid,
            .page-g666wingame__testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .page-g666wingame__feature-item,
            .page-g666wingame__game-card,
            .page-g666wingame__testimonial-card {
                padding: 20px;
            }

            .page-g666wingame__game-image {
                height: 180px;
            }

            .page-g666wingame__cta-section {
                padding: 40px 15px;
            }

            .page-g666wingame__cta-title {
                font-size: 1.8rem;
            }

            .page-g666wingame__cta-description {
                font-size: 1rem;
            }

            .page-g666wingame img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
                display: block;
            }

            .page-g666wingame__hero-image-wrapper,
            .page-g666wingame__game-card,
            .page-g666wingame__feature-item,
            .page-g666wingame__testimonial-card,
            .page-g666wingame__faq-item {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
            }

            .page-g666wingame__faq-question {
                font-size: 1rem;
                padding: 15px;
            }

            .page-g666wingame__faq-question h3 {
                font-size: 1rem;
            }

            .page-g666wingame__faq-answer {
                padding: 15px !important;
                font-size: 0.95rem;
            }

            .page-g666wingame__all-games-link {
                font-size: 1rem;
            }
        }
    