
    /* CSS for page-1xbit */
    .page-1xbit {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0; /* Light text on dark background */
        background-color: #1a1a1a; /* Dark background */
        line-height: 1.6;
    }

    .page-1xbit__section-title {
        font-size: 2.2em;
        color: #ffd700; /* Gold accent */
        text-align: center;
        margin-bottom: 30px;
        padding-top: 40px;
        font-weight: bold;
    }

    .page-1xbit__section-description {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 50px auto;
        font-size: 1.1em;
        color: #ccc;
    }

    /* Hero Section */
    .page-1xbit__hero-section {
        position: relative;
        width: 100%;
        height: 60vh; /* Responsive height */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        overflow: hidden;
        padding-top: 10px; /* Small padding, assuming body has header offset */
        min-height: 400px;
    }

    .page-1xbit__hero-section img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .page-1xbit__hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 2;
    }

    .page-1xbit__hero-content {
        position: relative;
        z-index: 3;
        max-width: 900px;
        padding: 20px;
    }

    .page-1xbit__hero-title {
        font-size: 2.8em;
        color: #fff;
        margin-bottom: 20px;
        line-height: 1.2;
        font-weight: bold;
    }

    .page-1xbit__hero-description {
        font-size: 1.2em;
        color: #e0e0e0;
        margin-bottom: 30px;
    }

    .page-1xbit__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .page-1xbit__hero-button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .page-1xbit__hero-button--primary {
        background-color: #008000; /* Green */
        color: #fff;
    }

    .page-1xbit__hero-button--primary:hover {
        background-color: #006400; /* Darker green */
        transform: translateY(-2px);
    }

    .page-1xbit__hero-button--secondary {
        background-color: #333;
        color: #ffd700; /* Gold */
        border: 2px solid #ffd700;
    }

    .page-1xbit__hero-button--secondary:hover {
        background-color: #555;
        transform: translateY(-2px);
    }

    /* Floating Buttons */
    .page-1xbit__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-1xbit__floating-button {
        display: block;
        padding: 12px 20px;
        border-radius: 50px;
        text-align: center;
        text-decoration: none;
        font-weight: bold;
        font-size: 1em;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-1xbit__floating-button--register {
        background-color: #008000; /* Green */
        color: #fff;
    }

    .page-1xbit__floating-button--register:hover {
        background-color: #006400;
        transform: scale(1.05);
    }

    .page-1xbit__floating-button--login {
        background-color: #333;
        color: #ffd700;
        border: 2px solid #ffd700;
    }

    .page-1xbit__floating-button--login:hover {
        background-color: #555;
        transform: scale(1.05);
    }

    /* Game Categories */
    .page-1xbit__game-categories {
        padding: 60px 20px;
        background-color: #222;
    }

    .page-1xbit__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-1xbit__game-item {
        background-color: #333;
        border-radius: 12px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        padding-bottom: 20px;
    }

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

    .page-1xbit__game-item img {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        margin-bottom: 15px;
    }

    .page-1xbit__game-title {
        font-size: 1.6em;
        color: #ffd700;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-1xbit__game-text {
        font-size: 1em;
        color: #ccc;
        padding: 0 15px;
    }

    /* Promotions Section */
    .page-1xbit__promotions {
        padding: 60px 20px;
        background-color: #1a1a1a;
    }

    .page-1xbit__promo-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-1xbit__promo-item {
        background-color: #333;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        text-align: center;
        padding-bottom: 20px;
    }

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

    .page-1xbit__promo-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .page-1xbit__promo-title {
        font-size: 1.5em;
        color: #008000; /* Green accent */
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .page-1xbit__promo-text {
        font-size: 1em;
        color: #ccc;
        padding: 0 15px;
    }

    /* Why Choose Us Section */
    .page-1xbit__why-choose-us {
        padding: 60px 20px;
        background-color: #222;
    }

    .page-1xbit__why-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-1xbit__why-item {
        background-color: #333;
        border-radius: 12px;
        text-align: center;
        padding: 30px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
    }

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

    .page-1xbit__why-item img {
        width: 150px;
        height: 150px;
        object-fit: contain;
        margin-bottom: 20px;
        border-radius: 50%; /* Make images circular if desired, or keep square */
        border: 3px solid #ffd700;
        padding: 10px;
        box-sizing: border-box;
    }

    .page-1xbit__why-title {
        font-size: 1.6em;
        color: #ffd700;
        margin-bottom: 15px;
    }

    .page-1xbit__why-text {
        font-size: 1em;
        color: #ccc;
    }

    /* Payment Methods */
    .page-1xbit__payment-methods {
        padding: 60px 20px;
        background-color: #1a1a1a;
    }

    .page-1xbit__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        max-width: 1000px;
        margin: 0 auto;
        justify-items: center;
    }

    .page-1xbit__payment-item {
        background-color: #333;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive lists */
        width: 100%; /* Default to 100% for mobile, then grid takes over */
        max-width: 180px; /* Max width for each item */
    }

    .page-1xbit__payment-item:hover {
        transform: translateY(-3px);
    }

    .page-1xbit__payment-item img {
        max-width: 100%;
        height: auto;
        max-height: 80px; /* Limit height for payment logos */
        object-fit: contain;
    }

    /* FAQ Section */
    .page-1xbit__faq-section {
        padding: 60px 20px;
        background-color: #222;
    }

    .page-1xbit__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-1xbit__faq-item {
        background-color: #333;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-1xbit__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #444;
        color: #fff;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-1xbit__faq-question:hover {
        background-color: #555;
    }

    .page-1xbit__faq-question-text {
        margin: 0;
        font-size: 1.1em;
        color: #ffd700; /* Gold for question text */
        pointer-events: none; /* Crucial for FAQ */
        flex-grow: 1;
    }

    .page-1xbit__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        margin-left: 15px;
        pointer-events: none; /* Crucial for FAQ */
        color: #008000; /* Green for toggle icon */
    }

    .page-1xbit__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #3a3a3a;
        color: #ccc;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

    .page-1xbit__faq-answer p {
        margin: 0;
        padding-bottom: 10px; /* Adjust as needed for spacing */
    }

    /* Call to Action Section */
    .page-1xbit__cta-section {
        padding: 60px 20px;
        text-align: center;
        background-color: #1a1a1a;
        border-top: 1px solid #333;
    }

    .page-1xbit__cta-title {
        font-size: 2.5em;
        color: #ffd700;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .page-1xbit__cta-description {
        font-size: 1.2em;
        color: #e0e0e0;
        max-width: 800px;
        margin: 0 auto 40px auto;
    }

    .page-1xbit__cta-button {
        display: inline-block;
        padding: 18px 40px;
        background-color: #008000; /* Green */
        color: #fff;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .page-1xbit__cta-button:hover {
        background-color: #006400; /* Darker green */
        transform: translateY(-3px);
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-1xbit__hero-title {
            font-size: 2.5em;
        }
        .page-1xbit__section-title {
            font-size: 2em;
        }
        .page-1xbit__cta-title {
            font-size: 2.2em;
        }
    }

    @media (max-width: 768px) {
        .page-1xbit__hero-section {
            height: 70vh;
            min-height: 350px;
        }
        .page-1xbit__hero-title {
            font-size: 2em;
        }
        .page-1xbit__hero-description {
            font-size: 1em;
        }
        .page-1xbit__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-1xbit__hero-button {
            width: 80%;
            margin: 0 auto;
            padding: 12px 25px;
        }

        .page-1xbit__section-title {
            font-size: 1.8em;
            padding-top: 30px;
        }
        .page-1xbit__section-description {
            font-size: 0.95em;
            margin-bottom: 30px;
        }

        /* Floating buttons adjustment */
        .page-1xbit__floating-buttons {
            right: 10px;
            bottom: 10px;
            flex-direction: row;
            gap: 8px;
        }
        .page-1xbit__floating-button {
            padding: 10px 15px;
            font-size: 0.9em;
        }

        /* Game grid */
        .page-1xbit__game-grid,
        .page-1xbit__promo-grid,
        .page-1xbit__why-grid {
            grid-template-columns: 1fr;
            padding: 0 15px;
        }
        .page-1xbit__game-item,
        .page-1xbit__promo-item,
        .page-1xbit__why-item {
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-1xbit__game-item img,
        .page-1xbit__promo-item img,
        .page-1xbit__why-item img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        /* Payment grid */
        .page-1xbit__payment-grid {
            grid-template-columns: repeat(2, 1fr);
            padding: 0 15px;
        }
        .page-1xbit__payment-item {
            width: 100% !important;
            max-width: 100% !important; /* Allow items to fill grid columns */
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-1xbit__payment-item img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        /* FAQ */
        .page-1xbit__faq-question {
            font-size: 1em;
            padding: 15px 20px;
        }
        .page-1xbit__faq-question-text {
            font-size: 1em;
        }
        .page-1xbit__faq-toggle {
            font-size: 1.5em;
        }
        .page-1xbit__faq-answer {
            padding: 0 20px;
        }
        .page-1xbit__faq-item.active .page-1xbit__faq-answer {
            padding: 15px 20px !important;
        }

        /* CTA */
        .page-1xbit__cta-title {
            font-size: 1.8em;
        }
        .page-1xbit__cta-description {
            font-size: 1em;
        }
        .page-1xbit__cta-button {
            padding: 15px 30px;
            font-size: 1.1em;
        }
    }

    @media (max-width: 480px) {
        .page-1xbit__hero-title {
            font-size: 1.8em;
        }
        .page-1xbit__hero-description {
            font-size: 0.9em;
        }
        .page-1xbit__section-title {
            font-size: 1.6em;
        }
        .page-1xbit__cta-title {
            font-size: 1.6em;
        }
    }

    /* Ensure all images are responsive */
    .page-1xbit img {
        max-width: 100%;
        height: auto;
        display: block; /* Remove extra space below images */
    }

    /* Ensure text wrapping for all text */
    .page-1xbit p,
    .page-1xbit h1,
    .page-1xbit h2,
    .page-1xbit h3,
    .page-1xbit li {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
  