
    .page-game-b-i-2024 {
        font-family: 'Arial', sans-serif;
        color: #333;
        background-color: #f4f7f6;
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-game-b-i-2024__section {
        padding: 40px 20px;
        margin: 0 auto;
        max-width: 1200px;
    }

    .page-game-b-i-2024__hero-section {
        background-color: #0d1a26;
        color: #fff;
        text-align: center;
        padding: 10px 20px 60px 20px; /* Small padding-top as body handles header offset */
        position: relative;
        overflow: hidden;
    }

    .page-game-b-i-2024__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.4;
        z-index: 0;
    }

    .page-game-b-i-2024__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-game-b-i-2024__hero-content h1 {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: #ffcc00;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-game-b-i-2024__hero-content p {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .page-game-b-i-2024__button {
        display: inline-block;
        background-color: #ffcc00;
        color: #0d1a26;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }

    .page-game-b-i-2024__button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-game-b-i-2024__title {
        font-size: 2.2em;
        color: #0d1a26;
        text-align: center;
        margin-bottom: 30px;
        position: relative;
    }

    .page-game-b-i-2024__title::after {
        content: '';
        display: block;
        width: 60px;
        height: 4px;
        background-color: #ffcc00;
        margin: 10px auto 0;
        border-radius: 2px;
    }

    .page-game-b-i-2024__paragraph {
        font-size: 1.1em;
        margin-bottom: 20px;
        text-align: justify;
    }

    .page-game-b-i-2024__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-game-b-i-2024__game-card {
        background-color: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
    }

    .page-game-b-i-2024__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-game-b-i-2024__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .page-game-b-i-2024__game-card-content {
        padding: 20px;
    }

    .page-game-b-i-2024__game-card-content h3 {
        font-size: 1.4em;
        color: #0d1a26;
        margin-bottom: 10px;
    }

    .page-game-b-i-2024__game-card-content p {
        font-size: 0.95em;
        color: #666;
    }

    .page-game-b-i-2024__features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
        list-style: none;
        padding: 0;
    }

    .page-game-b-i-2024__feature-item {
        background-color: #fff;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        text-align: center;
        box-sizing: border-box;
    }

    .page-game-b-i-2024__feature-item h3 {
        font-size: 1.3em;
        color: #0d1a26;
        margin-bottom: 15px;
    }

    .page-game-b-i-2024__feature-item p {
        color: #555;
        font-size: 0.95em;
    }

    .page-game-b-i-2024__cta-buttons {
        text-align: center;
        margin-top: 40px;
    }

    .page-game-b-i-2024__cta-buttons .page-game-b-i-2024__button:first-child {
        margin-right: 20px;
    }

    .page-game-b-i-2024__faq-list {
        margin-top: 30px;
    }

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

    .page-game-b-i-2024__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background-color: #f0f0f0;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-game-b-i-2024__faq-question:hover {
        background-color: #e5e5e5;
    }

    .page-game-b-i-2024__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: #0d1a26;
        pointer-events: none;
    }

    .page-game-b-i-2024__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffcc00;
        transition: transform 0.3s ease;
        pointer-events: none;
    }

    .page-game-b-i-2024__faq-item.active .page-game-b-i-2024__faq-toggle {
        transform: rotate(45deg);
    }

    .page-game-b-i-2024__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #555;
    }

    .page-game-b-i-2024__faq-item.active .page-game-b-i-2024__faq-answer {
        max-height: 2000px !important;
        padding: 20px 15px !important;
        opacity: 1;
    }

    .page-game-b-i-2024__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-game-b-i-2024__register-btn, .page-game-b-i-2024__login-btn {
        display: block;
        background-color: #007bff;
        color: #fff;
        padding: 12px 20px;
        border-radius: 30px;
        text-align: center;
        text-decoration: none;
        font-weight: bold;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        white-space: nowrap;
    }

    .page-game-b-i-2024__login-btn {
        background-color: #28a745;
    }

    .page-game-b-i-2024__register-btn:hover, .page-game-b-i-2024__login-btn:hover {
        transform: translateY(-3px);
        opacity: 0.9;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-game-b-i-2024__section {
            padding: 20px 15px;
        }

        .page-game-b-i-2024__hero-content h1 {
            font-size: 2em;
        }

        .page-game-b-i-2024__hero-content p {
            font-size: 1em;
        }

        .page-game-b-i-2024__title {
            font-size: 1.8em;
        }

        .page-game-b-i-2024__paragraph {
            font-size: 0.95em;
        }

        .page-game-b-i-2024__game-grid,
        .page-game-b-i-2024__features-list {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-game-b-i-2024__feature-item, .page-game-b-i-2024__game-card {
            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-game-b-i-2024__feature-item h3,
        .page-game-b-i-2024__game-card-content h3 {
            font-size: 1.1em;
        }

        .page-game-b-i-2024__feature-item p,
        .page-game-b-i-2024__game-card-content p {
            font-size: 0.9em;
        }

        .page-game-b-i-2024__button {
            padding: 10px 20px;
            font-size: 0.9em;
        }

        .page-game-b-i-2024__cta-buttons .page-game-b-i-2024__button:first-child {
            margin-right: 10px;
        }

        .page-game-b-i-2024__faq-question {
            padding: 15px;
        }

        .page-game-b-i-2024__faq-question h3 {
            font-size: 1em;
        }

        .page-game-b-i-2024__faq-answer {
            padding: 0 10px;
        }

        .page-game-b-i-2024__faq-item.active .page-game-b-i-2024__faq-answer {
            padding: 15px 10px !important;
        }

        .page-game-b-i-2024__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }

        .page-game-b-i-2024__register-btn, .page-game-b-i-2024__login-btn {
            padding: 10px 15px;
            font-size: 0.9em;
        }

        .page-game-b-i-2024 img {
            max-width: 100% !important;
            height: auto !important;
        }
    }

    @media (max-width: 480px) {
        .page-game-b-i-2024__hero-content h1 {
            font-size: 1.8em;
        }

        .page-game-b-i-2024__hero-content p {
            font-size: 0.9em;
        }

        .page-game-b-i-2024__cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .page-game-b-i-2024__cta-buttons .page-game-b-i-2024__button:first-child {
            margin-right: 0;
        }
    }
  