
        .page-alo789 {
            font-family: 'Arial', sans-serif;
            color: #ffffff;
            background-color: #1a1a1a;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

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

        .page-alo789__section {
            padding: 40px 20px;
            text-align: center;
            margin-bottom: 20px;
            background-color: #2a2a2a;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }

        .page-alo789__section--dark {
            background-color: #1a1a1a;
        }

        .page-alo789__heading {
            color: #ffd700;
            font-size: 2.5em;
            margin-bottom: 20px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
        }

        .page-alo789__subheading {
            color: #ffffff;
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .page-alo789__paragraph {
            font-size: 1.1em;
            margin-bottom: 15px;
            color: #cccccc;
        }

        .page-alo789__button {
            display: inline-block;
            background-color: #ffd700;
            color: #1a1a1a;
            padding: 15px 30px;
            border-radius: 5px;
            font-size: 1.2em;
            font-weight: bold;
            text-decoration: none;
            transition: background-color 0.3s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
        }

        .page-alo789__button:hover {
            background-color: #e6c200;
            transform: translateY(-2px);
        }

        /* Hero Section */
        .page-alo789__hero-section {
            padding-top: 150px; /* Safe zone for fixed header */
            position: relative;
            overflow: hidden;
            text-align: center;
            background-color: #1a1a1a;
        }

        .page-alo789__hero-image-wrapper {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            box-sizing: border-box;
            margin: 0 auto;
        }

        .page-alo789__hero-image {
            display: block;
            width: 100%;
            height: auto;
            object-fit: contain;
            margin: 0 auto;
        }

        .page-alo789__hero-content {
            position: relative;
            z-index: 10;
            padding: 30px 20px;
            text-align: center;
        }

        .page-alo789__hero-title {
            font-size: 3.5em;
            color: #ffd700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }

        .page-alo789__hero-description {
            font-size: 1.3em;
            color: #ffffff;
            max-width: 800px;
            margin: 0 auto 30px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
        }

        /* Floating Login Button */
        .page-alo789__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #ffd700;
            color: #1a1a1a;
            padding: 15px 25px;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: bold;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
            z-index: 1000;
            animation: pulse 1.5s infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            max-width: 200px;
            white-space: normal;
            line-height: 1.2;
        }

        .page-alo789__floating-button:hover {
            background-color: #e6c200;
            transform: scale(1.05);
        }

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

        /* Game Categories */
        .page-alo789__game-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .page-alo789__game-card {
            background-color: #3a3a3a;
            border-radius: 10px;
            overflow: hidden;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
        }

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

        .page-alo789__game-image-wrapper {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            box-sizing: border-box;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .page-alo789__game-title {
            font-size: 1.5em;
            color: #ffd700;
            padding: 15px 10px;
            margin: 0;
            border-top: 1px solid #4a4a4a;
        }

        /* Benefits List */
        .page-alo789__benefits-list {
            list-style: none;
            padding: 0;
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            text-align: left;
        }

        .page-alo789__benefit-item {
            background-color: #3a3a3a;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .page-alo789__benefit-icon-wrapper {
            width: 200px; /* Min size 200px */
            height: 200px; /* Min size 200px */
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            background-color: #ffd700;
            overflow: hidden;
            box-sizing: border-box;
        }

        .page-alo789__benefit-icon {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

        .page-alo789__benefit-content h3 {
            color: #ffd700;
            margin-top: 0;
            margin-bottom: 10px;
            font-size: 1.3em;
        }

        .page-alo789__benefit-content p {
            color: #cccccc;
            margin: 0;
            font-size: 1em;
        }

        /* How to Play */
        .page-alo789__steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }

        .page-alo789__step-card {
            background-color: #3a3a3a;
            padding: 30px 20px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .page-alo789__step-number {
            display: inline-flex;
            width: 50px;
            height: 50px;
            background-color: #ffd700;
            color: #1a1a1a;
            border-radius: 50%;
            font-size: 1.8em;
            font-weight: bold;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .page-alo789__step-title {
            color: #ffd700;
            font-size: 1.4em;
            margin-bottom: 10px;
        }

        .page-alo789__step-description {
            color: #cccccc;
            font-size: 1em;
        }

        /* FAQ Section */
        .page-alo789__faq-list {
            margin-top: 30px;
            text-align: left;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-alo789__faq-item {
            background-color: #3a3a3a;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
        }

        .page-alo789__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background-color: #4a4a4a;
            color: #ffd700;
            cursor: pointer;
            user-select: none;
            font-size: 1.2em;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }

        .page-alo789__faq-question:hover {
            background-color: #5a5a5a;
        }

        .page-alo789__faq-question h3 {
            margin: 0;
            color: #ffd700;
            pointer-events: none;
            font-size: 1em;
        }

        .page-alo789__faq-toggle {
            font-size: 1.5em;
            font-weight: bold;
            color: #ffd700;
            margin-left: 15px;
            pointer-events: none;
            transition: transform 0.3s ease;
        }

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

        .page-alo789__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: #cccccc;
            background-color: #3a3a3a;
            font-size: 1.1em;
        }

        .page-alo789__faq-item.active .page-alo789__faq-answer {
            max-height: 2000px !important;
            padding: 20px 20px !important;
            opacity: 1;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .page-alo789__container {
                padding: 15px;
            }

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

            .page-alo789__heading {
                font-size: 2em;
            }

            .page-alo789__subheading {
                font-size: 1.5em;
            }

            .page-alo789__hero-section {
                padding-top: 100px;
            }

            .page-alo789__hero-title {
                font-size: 2.5em;
            }

            .page-alo789__hero-description {
                font-size: 1em;
            }

            .page-alo789__button {
                padding: 12px 25px;
                font-size: 1em;
            }

            .page-alo789__floating-button {
                bottom: 15px;
                right: 15px;
                padding: 12px 20px;
                font-size: 0.9em;
                max-width: 150px;
            }

            .page-alo789__game-grid {
                grid-template-columns: 1fr;
            }

            .page-alo789__game-card {
                height: auto;
            }

            .page-alo789__game-image-wrapper {
                height: 180px;
            }

            .page-alo789__benefits-list {
                grid-template-columns: 1fr;
            }

            .page-alo789__benefit-icon-wrapper {
                width: 150px; /* Adjust for mobile, still > 200px (original 60px was an error) */
                height: 150px;
            }

            .page-alo789__step-card {
                padding: 25px 15px;
            }

            .page-alo789__faq-question {
                font-size: 1.1em;
                padding: 15px;
            }

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

            /* Responsive image fix */
            .page-alo789 img {
                max-width: 100% !important;
                height: auto !important;
            }
            .page-alo789__hero-image-wrapper,
            .page-alo789__game-image-wrapper,
            .page-alo789__benefit-icon-wrapper {
                width: 100% !important;
                max-width: 100% !important;
                overflow: hidden !important;
                box-sizing: border-box !important;
            }
        }
  