
        .page-33wingame {
            font-family: 'Arial', sans-serif;
            color: #333333; /* Default dark text for light body background */
            line-height: 1.6;
            background-color: #f8f8f8;
        }

        .page-33wingame__hero-section {
            position: relative;
            padding-top: 10px; /* Small top padding, relying on body for header offset */
            margin-bottom: 40px;
            text-align: center;
            background-color: #e0f2f7; /* Light blue background for hero */
            overflow: hidden;
        }

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

        .page-33wingame__hero-content {
            padding: 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-33wingame__hero-title {
            font-size: 2.5em;
            font-weight: 700;
            color: #2563eb;
            margin-bottom: 10px;
            line-height: 1.2;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .page-33wingame__hero-description {
            font-size: 1.1em;
            color: #64748b;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-33wingame__cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .page-33wingame__btn-primary,
        .page-33wingame__btn-secondary {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            box-sizing: border-box;
            max-width: 100%;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-33wingame__btn-primary {
            background-color: #2563eb;
            color: #ffffff;
            border: 2px solid #2563eb;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
        }

        .page-33wingame__btn-primary:hover {
            background-color: #1a4edc;
            border-color: #1a4edc;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
        }

        .page-33wingame__btn-secondary {
            background-color: #ffffff;
            color: #2563eb;
            border: 2px solid #2563eb;
            box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
        }

        .page-33wingame__btn-secondary:hover {
            background-color: #f0f8ff;
            color: #1a4edc;
            border-color: #1a4edc;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(37, 99, 235, 0.2);
        }

        .page-33wingame__section {
            padding: 40px 20px;
            margin-bottom: 30px;
            background-color: #ffffff;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
            box-sizing: border-box;
        }

        .page-33wingame__section-title {
            font-size: 2em;
            color: #2563eb;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 700;
        }

        .page-33wingame__section-description {
            font-size: 1.1em;
            color: #64748b;
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-33wingame__game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .page-33wingame__game-card {
            background-color: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .page-33wingame__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }

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

        .page-33wingame__game-card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .page-33wingame__game-card-title {
            font-size: 1.4em;
            color: #2563eb;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-33wingame__game-card-description {
            font-size: 0.95em;
            color: #64748b;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .page-33wingame__game-card-link {
            display: inline-block;
            padding: 10px 20px;
            background-color: #64748b;
            color: #ffffff;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        .page-33wingame__game-card-link:hover {
            background-color: #4a5568;
        }

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

        .page-33wingame__advantage-item {
            text-align: center;
            padding: 25px;
            background-color: #e0f2f7;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

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

        .page-33wingame__advantage-title {
            font-size: 1.3em;
            color: #2563eb;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-33wingame__advantage-description {
            font-size: 0.95em;
            color: #64748b;
        }

        .page-33wingame__steps-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .page-33wingame__step-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background-color: #f0f8ff;
            border-left: 5px solid #2563eb;
            border-radius: 5px;
        }

        .page-33wingame__step-number {
            font-size: 1.5em;
            font-weight: 700;
            color: #2563eb;
            flex-shrink: 0;
            width: 30px;
            text-align: center;
        }

        .page-33wingame__step-content h3 {
            margin-top: 0;
            font-size: 1.2em;
            color: #2563eb;
            margin-bottom: 5px;
        }

        .page-33wingame__step-content p {
            margin-bottom: 0;
            color: #64748b;
        }

        .page-33wingame__faq-list {
            margin-top: 30px;
        }

        details.page-33wingame__faq-item {
            margin-bottom: 15px;
            border-radius: 5px;
            border: 1px solid #e0e0e0;
            overflow: hidden;
            background: #fff;
        }
        details.page-33wingame__faq-item summary.page-33wingame__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-33wingame__faq-item summary.page-33wingame__faq-question::-webkit-details-marker {
            display: none;
        }
        details.page-33wingame__faq-item summary.page-33wingame__faq-question:hover {
            background: #f5f5f5;
        }
        .page-33wingame__faq-qtext {
            flex: 1;
            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;
            text-align: left;
            color: #333333;
        }
        .page-33wingame__faq-toggle {
            font-size: 24px;
            font-weight: bold;
            color: #666;
            flex-shrink: 0;
            margin-left: 15px;
            width: 28px;
            text-align: center;
        }
        details.page-33wingame__faq-item .page-33wingame__faq-answer {
            padding: 0 20px 20px;
            background: #f9f9f9;
            border-radius: 0 0 5px 5px;
            color: #64748b;
        }
        .page-33wingame__faq-answer p {
            margin: 0;
        }

        .page-33wingame__contact-info {
            text-align: center;
            margin-top: 30px;
        }

        .page-33wingame__contact-info p {
            margin-bottom: 10px;
            font-size: 1.1em;
            color: #333333;
        }

        .page-33wingame__contact-info a {
            color: #2563eb;
            text-decoration: none;
            font-weight: 600;
        }

        .page-33wingame__contact-info a:hover {
            text-decoration: underline;
        }

        .page-33wingame__promo-banner {
            background: linear-gradient(90deg, #2563eb, #64748b);
            color: #ffffff;
            padding: 30px 20px;
            text-align: center;
            border-radius: 10px;
            margin-top: 40px;
            margin-bottom: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .page-33wingame__promo-banner h2 {
            font-size: 2.2em;
            margin-bottom: 15px;
            font-weight: 700;
            color: #ffffff;
        }

        .page-33wingame__promo-banner p {
            font-size: 1.2em;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            color: #f0f8ff;
        }

        .page-33wingame__promo-button {
            display: inline-block;
            padding: 15px 35px;
            background-color: #ffc107;
            color: #333333;
            border-radius: 8px;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: 700;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }

        .page-33wingame__promo-button:hover {
            background-color: #e0a800;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.3);
        }

        .page-33wingame__floating-login {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            background-color: #ff4500; /* Orange-red for attention */
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 30px;
            font-size: 1.05em;
            font-weight: 700;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: background-color 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .page-33wingame__floating-login:hover {
            background-color: #cc3700;
            transform: scale(1.05);
        }

        .page-33wingame__floating-login-icon {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        /* Responsive Styles */
        @media (max-width: 1024px) {
            .page-33wingame__hero-title {
                font-size: 2.2em;
            }
            .page-33wingame__section-title {
                font-size: 1.8em;
            }
            .page-33wingame__game-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            .page-33wingame__advantages-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
            .page-33wingame__promo-banner h2 {
                font-size: 2em;
            }
        }

        @media (max-width: 768px) {
            .page-33wingame {
                padding: 0 10px;
            }
            .page-33wingame__hero-section {
                padding-top: 10px; /* Consistent small top padding */
                margin-bottom: 20px;
            }
            .page-33wingame__hero-title {
                font-size: 1.8em;
                padding: 0 10px;
            }
            .page-33wingame__hero-description {
                font-size: 1em;
                padding: 0 10px;
            }
            .page-33wingame__cta-buttons {
                flex-direction: column;
                gap: 15px;
                padding: 0 15px;
            }
            .page-33wingame__btn-primary,
            .page-33wingame__btn-secondary {
                width: 100% !important;
                max-width: 100% !important;
                font-size: 1em;
                padding: 12px 20px;
            }
            .page-33wingame__section {
                padding: 25px 15px;
                margin-bottom: 20px;
            }
            .page-33wingame__section-title {
                font-size: 1.6em;
                margin-bottom: 20px;
            }
            .page-33wingame__section-description {
                font-size: 0.95em;
                margin-bottom: 30px;
            }
            .page-33wingame__game-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page-33wingame__game-card-image {
                height: 180px;
            }
            .page-33wingame__game-card-title {
                font-size: 1.2em;
            }
            .page-33wingame__advantages-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .page-33wingame__advantage-item {
                padding: 20px;
            }
            .page-33wingame__step-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 15px;
            }
            .page-33wingame__step-number {
                margin-bottom: 10px;
            }
            details.page-33wingame__faq-item summary.page-33wingame__faq-question { padding: 15px; }
            .page-33wingame__faq-qtext { font-size: 15px; }
            details.page-33wingame__faq-item .page-33wingame__faq-answer { padding: 0 15px 15px; }
            .page-33wingame__promo-banner {
                padding: 25px 15px;
            }
            .page-33wingame__promo-banner h2 {
                font-size: 1.8em;
            }
            .page-33wingame__promo-banner p {
                font-size: 1em;
            }
            .page-33wingame__promo-button {
                font-size: 1.1em;
                padding: 12px 25px;
            }
            .page-33wingame__floating-login {
                bottom: 15px;
                right: 15px;
                padding: 10px 15px;
                font-size: 0.95em;
            }
            /* Ensure all images are responsive */
            .page-33wingame img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-33wingame__section,
            .page-33wingame__game-card,
            .page-33wingame__advantage-item,
            .page-33wingame__step-item,
            .page-33wingame__promo-banner,
            .page-33wingame__cta-buttons,
            .page-33wingame__game-grid,
            .page-33wingame__advantages-grid,
            .page-33wingame__steps-list,
            .page-33wingame__faq-list {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-33wingame__game-grid,
            .page-33wingame__advantages-grid,
            .page-33wingame__steps-list {
                padding-left: 0;
                padding-right: 0;
            }
            .page-33wingame ul, .page-33wingame ol {
                padding-left: 20px !important; /* Adjust for nested lists */
                margin-left: 0 !important;
                margin-right: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }
            .page-33wingame ul li, .page-33wingame ol 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;
                word-break: break-word !important;
            }
        }
    