
    .page-8beta {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f8f8;
        padding-top: 10px; /* Small padding, assuming body handles main offset */
    }

    .page-8beta__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-8beta__section-title {
        font-size: 2.5em;
        color: #1a1a1a;
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
        padding-top: 40px;
    }

    .page-8beta__section-description {
        font-size: 1.1em;
        text-align: center;
        margin-bottom: 40px;
        color: #555;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero Section */
    .page-8beta__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
        color: #fff;
        padding: 60px 20px;
        border-radius: 15px;
        margin-bottom: 40px;
        overflow: hidden;
    }

    .page-8beta__hero-content {
        max-width: 800px;
        margin-bottom: 30px;
    }

    .page-8beta__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        line-height: 1.2;
        color: #ffd700; /* Gold-like color for emphasis */
    }

    .page-8beta__hero-description {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .page-8beta__hero-image-wrapper {
        width: 100%;
        max-width: 600px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .page-8beta__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Buttons */
    .page-8beta__button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        text-align: center;
        white-space: nowrap;
        box-sizing: border-box;
    }

    .page-8beta__button--primary {
        background-color: #ffd700;
        color: #1a1a1a;
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    }

    .page-8beta__button--primary:hover {
        background-color: #ffeb3b;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
    }

    .page-8beta__button--secondary {
        background-color: #302b63;
        color: #ffd700;
        border: 2px solid #ffd700;
    }

    .page-8beta__button--secondary:hover {
        background-color: #24243e;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-8beta__button--download {
        background-color: #007bff;
        color: #fff;
        box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
    }

    .page-8beta__button--download:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 123, 255, 0.6);
    }

    /* About Section */
    .page-8beta__about-section {
        padding: 60px 0;
        background-color: #fff;
        border-radius: 15px;
        margin-bottom: 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .page-8beta__feature-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-8beta__feature-item {
        flex: 1 1 calc(33% - 40px);
        max-width: calc(33% - 40px);
        text-align: center;
        background-color: #f0f0f0;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Required for list items */
    }

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

    .page-8beta__feature-icon {
        width: 200px; /* Minimum size */
        height: 200px;
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%; /* Responsive */
        height: auto; /* Responsive */
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8beta__feature-title {
        font-size: 1.5em;
        color: #1a1a1a;
        margin-bottom: 10px;
    }

    .page-8beta__feature-text {
        color: #555;
    }

    /* Games Section */
    .page-8beta__games-section {
        padding: 60px 0;
        background-color: #f0f0f0;
        border-radius: 15px;
        margin-bottom: 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .page-8beta__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        padding: 0 15px;
    }

    .page-8beta__game-card {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: transform 0.3s ease;
    }

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

    .page-8beta__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        max-width: 100%; /* Responsive */
        height: auto; /* Responsive */
    }

    .page-8beta__game-title {
        font-size: 1.4em;
        color: #1a1a1a;
        margin: 15px 0 10px;
    }

    .page-8beta__game-text {
        padding: 0 15px 20px;
        color: #555;
    }

    /* Promo Section */
    .page-8beta__promo-section {
        padding: 60px 0;
        background-color: #fff;
        border-radius: 15px;
        margin-bottom: 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .page-8beta__promo-list {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 900px;
    }

    .page-8beta__promo-item {
        background-color: #f0f8ff; /* Light blue background */
        margin-bottom: 20px;
        padding: 25px 30px;
        border-radius: 10px;
        border-left: 5px solid #007bff;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
        box-sizing: border-box; /* Required for list items */
    }

    .page-8beta__promo-title {
        font-size: 1.5em;
        color: #007bff;
        margin-bottom: 10px;
    }

    .page-8beta__promo-text {
        color: #333;
    }

    .page-8beta__promo-cta {
        text-align: center;
        margin-top: 40px;
    }

    /* FAQ Section */
    .page-8beta__faq-section {
        padding: 60px 0;
        background-color: #f8f8f8;
        border-radius: 15px;
        margin-bottom: 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .page-8beta__faq-list {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 15px;
    }

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

    .page-8beta__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #f0f0f0;
        border-bottom: 1px solid #eee;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-8beta__faq-question:hover {
        background-color: #e0e0e0;
    }

    .page-8beta__faq-q-text {
        font-size: 1.2em;
        color: #1a1a1a;
        margin: 0;
        pointer-events: none; /* Crucial for click handler */
        flex-grow: 1;
    }

    .page-8beta__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #007bff;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click handler */
        margin-left: 15px;
    }

    .page-8beta__faq-item.active .page-8beta__faq-toggle {
        transform: rotate(45deg); /* Change + to X or - */
    }

    .page-8beta__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Adjust padding here for consistency */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    .page-8beta__faq-a-text {
        margin: 0;
        color: #555;
    }

    /* Download CTA Section */
    .page-8beta__download-cta {
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(45deg, #007bff, #0056b3);
        color: #fff;
        border-radius: 15px;
        margin-bottom: 40px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .page-8beta__download-cta .page-8beta__section-title {
        color: #fff;
        padding-top: 0;
    }

    .page-8beta__download-cta .page-8beta__section-description {
        color: #e0e0e0;
    }

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

    .page-8beta__floating-buttons .page-8beta__button {
        padding: 12px 25px;
        font-size: 1em;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .page-8beta__floating-buttons .page-8beta__button--register {
        background-color: #28a745; /* Green */
        color: #fff;
    }

    .page-8beta__floating-buttons .page-8beta__button--register:hover {
        background-color: #218838;
        transform: translateY(-2px);
    }

    .page-8beta__floating-buttons .page-8beta__button--login {
        background-color: #007bff; /* Blue */
        color: #fff;
    }

    .page-8beta__floating-buttons .page-8beta__button--login:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .page-8beta__hero-title {
            font-size: 2.8em;
        }

        .page-8beta__hero-description {
            font-size: 1.1em;
        }

        .page-8beta__feature-item {
            flex: 1 1 calc(50% - 30px);
            max-width: calc(50% - 30px);
        }

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

    @media (max-width: 768px) {
        .page-8beta__hero-section {
            padding: 40px 15px;
        }

        .page-8beta__hero-title {
            font-size: 2.2em;
        }

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

        .page-8beta__section-title {
            font-size: 2em;
            padding-top: 30px;
        }

        .page-8beta__section-description {
            font-size: 0.95em;
            margin-bottom: 30px;
        }

        .page-8beta__feature-list {
            flex-direction: column;
            gap: 20px;
        }

        .page-8beta__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-8beta__feature-icon {
            max-width: 100% !important;
            height: auto !important;
        }

        .page-8beta__promo-list {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 15px !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-8beta__promo-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-8beta__game-grid {
            grid-template-columns: 1fr;
            padding: 0 15px;
        }

        .page-8beta__game-image {
            max-width: 100% !important;
            height: auto !important;
        }

        .page-8beta__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            bottom: 15px;
            justify-content: space-around;
            gap: 5px;
        }

        .page-8beta__floating-buttons .page-8beta__button {
            flex: 1;
            padding: 10px 15px;
            font-size: 0.95em;
        }

        .page-8beta__faq-question {
            padding: 15px;
        }

        .page-8beta__faq-q-text {
            font-size: 1.1em;
        }

        .page-8beta__faq-answer {
            padding: 0 15px;
        }

        .page-8beta__faq-item.active .page-8beta__faq-answer {
            padding: 15px !important;
        }
    }

    @media (max-width: 480px) {
        .page-8beta__hero-title {
            font-size: 1.8em;
        }

        .page-8beta__section-title {
            font-size: 1.8em;
        }

        .page-8beta__button {
            padding: 12px 20px;
            font-size: 1em;
        }
    }
  