
    :root {
        --primary-color: #e44d26; /* A vibrant orange/red for accents */
        --secondary-color: #333; /* Dark background elements */
        --background-color: #1a1a1a; /* Overall dark background */
        --text-color: #f0f0f0; /* Light text for dark backgrounds */
        --light-text-color: #ccc;
        --border-color: #555;
        --button-hover-color: #ff6633;
    }

    .page-789-b3 {
        font-family: 'Arial', sans-serif;
        color: var(--text-color);
        background-color: var(--background-color);
        line-height: 1.6;
        padding-bottom: 80px; /* Space for fixed buttons */
    }

    .page-789-b3__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-789-b3__section {
        padding: 40px 0;
        text-align: center;
    }

    .page-789-b3__section--dark {
        background-color: var(--secondary-color);
    }

    .page-789-b3__section-title {
        font-size: 2.5em;
        color: var(--primary-color);
        margin-bottom: 30px;
        text-transform: uppercase;
        font-weight: bold;
    }
    
    .page-789-b3__section-subtitle {
        font-size: 1.8em;
        color: var(--text-color);
        margin-bottom: 20px;
    }

    /* Header offset for the first content section */
    .page-789-b3__hero-section {
        padding-top: 10px; /* Small decorative top padding, assuming body has main offset */
        position: relative;
        overflow: hidden;
    }

    .page-789-b3__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        filter: brightness(0.6); /* Darken background image for text readability */
    }

    .page-789-b3__hero-content {
        position: relative;
        z-index: 1;
        padding: 80px 20px;
        text-align: center;
        color: #fff;
    }

    .page-789-b3__hero-title {
        font-size: 3em;
        margin-bottom: 20px;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-789-b3__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: var(--light-text-color);
    }

    .page-789-b3__button {
        display: inline-block;
        background-color: var(--primary-color);
        color: #fff;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1em;
    }

    .page-789-b3__button:hover {
        background-color: var(--button-hover-color);
    }

    /* Floating Register/Login Buttons */
    .page-789-b3__floating-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 10px;
        padding: 15px 0;
        background-color: rgba(0, 0, 0, 0.9);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .page-789-b3__floating-button {
        flex: 1;
        max-width: 150px;
        text-align: center;
        padding: 12px 0;
        font-size: 1.1em;
        border-radius: 8px;
        font-weight: bold;
    }

    .page-789-b3__floating-button--register {
        background-color: #008cba; /* Blue for register */
        color: #fff;
    }

    .page-789-b3__floating-button--register:hover {
        background-color: #007bb5;
    }

    .page-789-b3__floating-button--login {
        background-color: var(--primary-color); /* Orange for login */
        color: #fff;
    }

    .page-789-b3__floating-button--login:hover {
        background-color: var(--button-hover-color);
    }

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

    .page-789-b3__game-card {
        background-color: var(--secondary-color);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

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

    .page-789-b3__game-card-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        border-bottom: 1px solid var(--border-color);
    }

    .page-789-b3__game-card-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-789-b3__game-card-title {
        font-size: 1.5em;
        margin-bottom: 10px;
        color: var(--primary-color);
    }

    .page-789-b3__game-card-description {
        font-size: 0.95em;
        color: var(--light-text-color);
        margin-bottom: 15px;
    }

    /* Promotions */
    .page-789-b3__promotion-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-789-b3__promotion-item {
        background-color: var(--secondary-color);
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        transition: transform 0.3s ease;
    }

    .page-789-b3__promotion-item:hover {
        transform: translateY(-5px);
    }

    .page-789-b3__promotion-title {
        font-size: 1.6em;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .page-789-b3__promotion-description {
        color: var(--light-text-color);
        margin-bottom: 15px;
    }

    /* News */
    .page-789-b3__news-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-789-b3__news-card {
        background-color: var(--secondary-color);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        text-align: left;
    }

    .page-789-b3__news-card:hover {
        transform: translateY(-5px);
    }

    .page-789-b3__news-card-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

    .page-789-b3__news-card-content {
        padding: 20px;
    }

    .page-789-b3__news-card-title {
        font-size: 1.4em;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-789-b3__news-card-date {
        font-size: 0.85em;
        color: var(--light-text-color);
        margin-bottom: 10px;
    }

    .page-789-b3__news-card-excerpt {
        font-size: 0.95em;
        color: var(--light-text-color);
    }

    /* Why Choose Us */
    .page-789-b3__feature-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-789-b3__feature-item {
        background-color: var(--secondary-color);
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
    }

    .page-789-b3__feature-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-789-b3__feature-title {
        font-size: 1.5em;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-789-b3__feature-description {
        color: var(--light-text-color);
    }

    /* Payment and Providers */
    .page-789-b3__logo-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 30px;
    }

    .page-789-b3__logo-item {
        flex: 0 0 auto;
        width: 120px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #3a3a3a;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease;
    }

    .page-789-b3__logo-item:hover {
        transform: translateY(-3px);
    }

    .page-789-b3__logo-image {
        max-width: 90%;
        max-height: 90%;
        object-fit: contain;
    }

    /* FAQ Section */
    .page-789-b3__faq-section {
        background-color: var(--background-color);
        padding: 60px 0;
    }

    .page-789-b3__faq-title {
        font-size: 2.5em;
        color: var(--primary-color);
        text-align: center;
        margin-bottom: 40px;
    }

    .page-789-b3__faq-list {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-789-b3__faq-item {
        background-color: var(--secondary-color);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-789-b3__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #3a3a3a;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-789-b3__faq-question:hover {
        background-color: #4a4a4a;
    }

    .page-789-b3__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--text-color);
        pointer-events: none; /* Prevent h3 from blocking click on parent */
    }

    .page-789-b3__faq-toggle {
        font-size: 1.8em;
        color: var(--primary-color);
        font-weight: bold;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click on parent */
    }

    .page-789-b3__faq-item.active .page-789-b3__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' or similar, or just change text */
    }

    .page-789-b3__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: var(--light-text-color);
        text-align: left;
    }

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

    /* Call to Action */
    .page-789-b3__cta-section {
        background-color: var(--primary-color);
        padding: 50px 0;
        color: #fff;
        text-align: center;
    }

    .page-789-b3__cta-title {
        font-size: 2.2em;
        margin-bottom: 20px;
    }

    .page-789-b3__cta-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-789-b3__hero-title {
            font-size: 2.5em;
        }

        .page-789-b3__section-title {
            font-size: 2em;
        }

        .page-789-b3__game-grid,
        .page-789-b3__promotion-list,
        .page-789-b3__news-list,
        .page-789-b3__feature-list {
            grid-template-columns: 1fr;
        }
        
        /* Image responsiveness */
        .page-789-b3 img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-789-b3__hero-background,
        .page-789-b3__game-card-image,
        .page-789-b3__news-card-image,
        .page-789-b3__feature-icon,
        .page-789-b3__logo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-789-b3__logo-item {
             width: 100px;
             height: 70px;
        }

        /* List items (game cards, promo items, news cards, feature items) */
        .page-789-b3__game-card,
        .page-789-b3__promotion-item,
        .page-789-b3__news-card,
        .page-789-b3__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        /* List containers */
        .page-789-b3__game-grid,
        .page-789-b3__promotion-list,
        .page-789-b3__news-list,
        .page-789-b3__feature-list,
        .page-789-b3__logo-grid,
        .page-789-b3__faq-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 15px !important; /* Adjust padding to avoid excessive spacing */
            margin-left: 0 !important;
            margin-right: 0 !important;
            gap: 15px; /* Reduce gap for smaller screens */
        }
        
        .page-789-b3__game-card-title,
        .page-789-b3__promotion-title,
        .page-789-b3__news-card-title,
        .page-789-b3__feature-title {
            font-size: 1.3em;
        }

        .page-789-b3__faq-question h3 {
            font-size: 1.1em;
        }

        .page-789-b3__faq-question,
        .page-789-b3__faq-answer {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
        
        .page-789-b3__floating-buttons {
            gap: 5px;
            padding: 10px 0;
        }

        .page-789-b3__floating-button {
            font-size: 1em;
            padding: 10px 0;
        }

        .page-789-b3__hero-content {
            padding: 60px 15px;
        }
        
        .page-789-b3__cta-title {
            font-size: 1.8em;
        }
        .page-789-b3__cta-description {
            font-size: 1em;
        }
    }
    
    @media (max-width: 480px) {
        .page-789-b3__hero-title {
            font-size: 2em;
        }
        .page-789-b3__section-title {
            font-size: 1.8em;
        }
        .page-789-b3__hero-description {
            font-size: 1em;
        }
        .page-789-b3__floating-button {
            max-width: 120px;
        }
        .page-789-b3__faq-question h3 {
            font-size: 1em;
        }
    }
  