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

        .page-df999login__hero-section {
            position: relative;
            padding-top: 10px;
            padding-bottom: 40px;
            text-align: center;
            background-color: #2563eb;
            color: #ffffff;
            overflow: hidden;
        }

        .page-df999login__hero-image {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            max-height: 500px;
        }

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

        .page-df999login__hero-content h1 {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 700;
            margin-bottom: 15px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            color: #ffffff;
        }

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

        .page-df999login__btn-primary {
            display: inline-block;
            background-color: #ffc107;
            color: #212529;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
        }

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

        .page-df999login__floating-login-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ff4500;
            color: #ffffff;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            animation: pulse 2s infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 250px;
            text-align: center;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-df999login__floating-login-btn:hover {
            background-color: #cc3700;
        }

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

        .page-df999login__section {
            padding: 60px 0;
            background-color: #ffffff;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .page-df999login__section--dark {
            background-color: #2563eb;
            color: #ffffff;
        }

        .page-df999login__section--dark h2,
        .page-df999login__section--dark h3 {
            color: #ffffff;
        }

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

        .page-df999login__heading {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2563eb;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .page-df999login__heading::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: #ffc107;
            margin: 10px auto 0 auto;
            border-radius: 2px;
        }

        .page-df999login__text-block {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }

        .page-df999login__text-block strong {
            color: #2563eb;
        }

        .page-df999login__list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .page-df999login__list-item {
            background-color: #f0f8ff;
            padding: 25px;
            border-left: 5px solid #2563eb;
            border-radius: 8px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            box-sizing: border-box;
        }

        .page-df999login__list-item::before {
            content: '✓';
            color: #2563eb;
            font-weight: bold;
            font-size: 1.5rem;
        }

        .page-df999login__steps-list {
            list-style: decimal;
            padding-left: 25px;
            margin-bottom: 30px;
        }

        .page-df999login__steps-list-item {
            font-size: 1.1rem;
            margin-bottom: 15px;
            line-height: 1.6;
        }

        .page-df999login__image-container {
            text-align: center;
            margin: 40px 0;
        }

        .page-df999login__image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            display: block;
            margin: 0 auto;
        }

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

        .page-df999login__game-card {
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .page-df999login__game-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

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

        .page-df999login__game-card-content {
            padding: 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .page-df999login__game-card-content h3 {
            font-size: 1.4rem;
            color: #2563eb;
            margin-bottom: 10px;
            flex-shrink: 0;
        }

        .page-df999login__game-card-content p {
            font-size: 0.95rem;
            color: #555555;
            margin-bottom: 15px;
            flex-grow: 1;
        }

        .page-df999login__game-card-button {
            display: block;
            width: 100%;
            padding: 12px 15px;
            background-color: #64748b;
            color: #ffffff;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-df999login__game-card-button:hover {
            background-color: #475569;
        }

        .page-df999login__faq-section {
            background-color: #f0f8ff;
        }

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

        .page-df999login__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            font-size: 1.2rem;
            font-weight: bold;
            color: #2563eb;
            cursor: pointer;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-df999login__faq-question:hover {
            background-color: #e6f0ff;
        }

        .page-df999login__faq-question h3 {
            margin: 0;
            pointer-events: none; /* Prevent h3 from blocking click */
            color: #2563eb;
            flex-grow: 1;
        }

        .page-df999login__faq-toggle {
            font-size: 1.8rem;
            font-weight: light;
            line-height: 1;
            pointer-events: none; /* Prevent toggle from blocking click */
            width: 30px;
            text-align: center;
        }

        .page-df999login__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;
            font-size: 1.05rem;
            line-height: 1.7;
        }

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

        .page-df999login__cta-section {
            text-align: center;
            background-color: #64748b;
            color: #ffffff;
            padding: 80px 20px;
        }

        .page-df999login__cta-section h2 {
            color: #ffffff;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .page-df999login__cta-section p {
            font-size: 1.25rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .page-df999login__cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }

        .page-df999login__btn-secondary {
            display: inline-block;
            background-color: transparent;
            color: #ffffff;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            border: 2px solid #ffffff;
            transition: background-color 0.3s ease, color 0.3s ease;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-df999login__btn-secondary:hover {
            background-color: #ffffff;
            color: #64748b;
        }

        .page-df999login a {
            color: #2563eb;
            text-decoration: none;
        }

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

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .page-df999login__heading {
                font-size: 2.2rem;
            }

            .page-df999login__game-card-image {
                height: 180px;
            }

            .page-df999login__games-grid {
                gap: 20px;
            }
        }

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

            .page-df999login__hero-content h1 {
                font-size: 2.2rem;
            }

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

            .page-df999login__btn-primary {
                padding: 12px 25px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-df999login__floating-login-btn {
                font-size: 0.9rem;
                padding: 10px 15px;
                bottom: 15px;
                right: 15px;
                max-width: 180px;
            }

            .page-df999login__section {
                padding: 40px 0;
            }

            .page-df999login__container {
                padding: 0 15px;
            }

            .page-df999login__heading {
                font-size: 2rem;
                margin-bottom: 30px;
            }

            .page-df999login__text-block {
                font-size: 1rem;
            }

            .page-df999login__list {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .page-df999login__list-item {
                padding: 20px;
                font-size: 1rem;
                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;
            }

            .page-df999login__list-item::before {
                font-size: 1.2rem;
            }

            .page-df999login__steps-list {
                padding-left: 20px;
            }

            .page-df999login__steps-list-item {
                font-size: 1rem;
            }

            .page-df999login__image {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-df999login__image-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                overflow: hidden !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-df999login__games-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .page-df999login__game-card-image {
                height: 160px;
            }

            .page-df999login__game-card-content h3 {
                font-size: 1.2rem;
            }

            .page-df999login__game-card-content p {
                font-size: 0.9rem;
            }

            .page-df999login__game-card-button {
                padding: 10px 15px;
                font-size: 0.9rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-df999login__faq-question {
                padding: 15px 20px;
                font-size: 1.1rem;
            }

            .page-df999login__faq-answer {
                padding: 0 20px;
                font-size: 1rem;
            }

            .page-df999login__faq-item.active .page-df999login__faq-answer {
                padding: 15px 20px !important;
            }

            .page-df999login__cta-section {
                padding: 50px 15px;
            }

            .page-df999login__cta-section h2 {
                font-size: 2.2rem;
            }

            .page-df999login__cta-section p {
                font-size: 1.1rem;
            }

            .page-df999login__cta-buttons {
                flex-direction: column;
                gap: 15px;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-df999login__btn-secondary {
                padding: 12px 25px;
                font-size: 1rem;
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                white-space: normal !important;
                word-wrap: break-word !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-df999login img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-df999login__section, .page-df999login__card, .page-df999login__container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
        }
    