
    /* Base styles for the page-789go container */
    .page-789go {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating buttons */
    }

    /* Section styling */
    .page-789go__section-title {
        text-align: center;
        color: #e9c46a; /* Gold accent */
        font-size: 2.5em;
        margin-bottom: 20px;
        padding-top: 40px;
        font-weight: bold;
    }

    .page-789go__section-description {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 40px auto;
        font-size: 1.1em;
        color: #bbb;
    }

    /* Hero Section */
    .page-789go__hero-section {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: 600px;
        overflow: hidden;
        padding: 10px 20px 60px; /* 10px top padding as per requirement */
        box-sizing: border-box;
    }

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

    .page-789go__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for text */
        border-radius: 10px;
    }

    .page-789go__brand-title {
        font-size: 4em;
        color: #e9c46a; /* Gold */
        margin-bottom: 10px;
        text-shadow: 0 0 10px rgba(233, 196, 106, 0.7);
        font-weight: 900;
    }

    .page-789go__hero-tagline {
        font-size: 1.8em;
        color: #f4f4f4;
        margin-bottom: 30px;
        font-weight: 300;
    }

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

    /* General Button Styles */
    .page-789go__button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        white-space: nowrap;
        box-sizing: border-box;
    }

    .page-789go__button--primary {
        background-color: #e76f51; /* Orange-red */
        color: #ffffff;
        border: none;
    }

    .page-789go__button--primary:hover {
        background-color: #f4a261; /* Lighter orange */
        transform: translateY(-2px);
    }

    .page-789go__button--secondary {
        background-color: #2a9d8f; /* Teal */
        color: #ffffff;
        border: none;
    }

    .page-789go__button--secondary:hover {
        background-color: #48c1b3; /* Lighter teal */
        transform: translateY(-2px);
    }

    .page-789go__button--small {
        padding: 10px 20px;
        font-size: 0.9em;
        background-color: #264653; /* Darker blue-green */
        color: #e9c46a;
        border: 1px solid #e9c46a;
        width: fit-content;
        margin-top: 15px;
    }

    .page-789go__button--small:hover {
        background-color: #385f6e;
        transform: translateY(-1px);
    }

    /* Promotion Section */
    .page-789go__promo-section {
        padding: 60px 20px;
        background-color: #1a1a2e;
    }

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

    .page-789go__promo-card {
        background-color: #264653; /* Dark blue-green */
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        padding: 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .page-789go__promo-image {
        width: 100%;
        max-width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 20px;
        box-sizing: border-box;
    }

    .page-789go__promo-title {
        font-size: 1.6em;
        color: #e9c46a;
        margin-bottom: 10px;
    }

    .page-789go__promo-text {
        font-size: 1em;
        color: #bbb;
        flex-grow: 1; /* Allows text to take available space */
    }

    /* Games Section */
    .page-789go__games-section {
        padding: 60px 20px;
        background-color: #2a2a40; /* Slightly different dark background */
    }

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

    .page-789go__game-item {
        background-color: #264653;
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        padding: 20px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .page-789go__game-image {
        width: 100%;
        max-width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
        box-sizing: border-box;
    }

    .page-789go__game-title {
        font-size: 1.5em;
        color: #e9c46a;
        margin-bottom: 10px;
    }

    .page-789go__game-desc {
        font-size: 0.95em;
        color: #bbb;
        flex-grow: 1;
    }

    /* About Section */
    .page-789go__about-section {
        padding: 60px 20px;
        background-color: #1a1a2e;
    }

    .page-789go__about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        max-width: 1200px;
        margin: 0 auto;
        gap: 40px;
    }

    .page-789go__about-image {
        width: 100%;
        max-width: 500px;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        box-sizing: border-box;
    }

    .page-789go__about-text {
        flex: 1;
        min-width: 300px;
        max-width: 600px;
        font-size: 1.1em;
        color: #ccc;
    }

    .page-789go__about-text p {
        margin-bottom: 15px;
    }

    /* Providers and Payments Section (similar grid structure) */
    .page-789go__providers-section,
    .page-789go__payment-section {
        padding: 60px 20px;
        background-color: #2a2a40;
    }

    .page-789go__payment-section {
        background-color: #1a1a2e;
    }

    .page-789go__provider-grid,
    .page-789go__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-789go__provider-item,
    .page-789go__payment-item {
        background-color: #264653;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease;
        box-sizing: border-box;
    }

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

    .page-789go__provider-item a,
    .page-789go__payment-item a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .page-789go__provider-logo,
    .page-789go__payment-logo {
        max-width: 100%;
        height: auto;
        max-height: 80px; /* Limit height for logos */
        object-fit: contain;
        box-sizing: border-box;
    }

    /* FAQ Section */
    .page-789go__faq-section {
        padding: 60px 20px;
        background-color: #2a2a40;
    }

    .page-789go__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-789go__faq-item {
        background-color: #264653;
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        overflow: hidden;
    }

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

    .page-789go__faq-question:hover {
        background-color: #385f6e;
    }

    .page-789go__faq-question h3 {
        margin: 0;
        font-size: 1.2em; /* Ensure h3 font size matches */
        color: inherit;
        pointer-events: none; /* Crucial for click event on parent */
    }

    .page-789go__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event on parent */
    }

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

    .page-789go__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.3s ease;
        color: #ccc;
        background-color: #1e3a47; /* Slightly lighter background for answer */
    }

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

    .page-789go__faq-answer p {
        margin: 0;
    }


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

    .page-789go__floating-button {
        flex: 1;
        margin: 0 10px;
        padding: 12px 0;
        border-radius: 5px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        color: #ffffff;
        border: none;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-sizing: border-box;
    }

    .page-789go__floating-button--register {
        background-color: #e76f51; /* Orange-red */
    }

    .page-789go__floating-button--register:hover {
        background-color: #f4a261;
        transform: translateY(-2px);
    }

    .page-789go__floating-button--login {
        background-color: #2a9d8f; /* Teal */
    }

    .page-789go__floating-button--login:hover {
        background-color: #48c1b3;
        transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-789go__section-title {
            font-size: 2em;
            padding-top: 30px;
        }

        .page-789go__hero-section {
            min-height: 500px;
            padding-bottom: 80px; /* Adjust for floating buttons */
        }

        .page-789go__brand-title {
            font-size: 3em;
        }

        .page-789go__hero-tagline {
            font-size: 1.4em;
        }

        .page-789go__hero-buttons {
            flex-direction: column;
            gap: 15px;
            width: 100%;
        }

        .page-789go__button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-789go__promo-grid,
        .page-789go__game-categories,
        .page-789go__provider-grid,
        .page-789go__payment-grid {
            grid-template-columns: 1fr !important; /* Force single column */
            padding: 0 15px;
            box-sizing: border-box !important;
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-789go__promo-card,
        .page-789go__game-item,
        .page-789go__provider-item,
        .page-789go__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important; /* Adjust padding for smaller screens */
        }

        /* Image responsiveness */
        .page-789go__promo-image,
        .page-789go__game-image,
        .page-789go__about-image,
        .page-789go__provider-logo,
        .page-789go__payment-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-789go__about-content {
            flex-direction: column;
            gap: 20px;
            padding: 0 15px;
        }

        .page-789go__about-image {
            max-width: 100%;
        }

        .page-789go__about-text {
            min-width: unset;
            max-width: 100%;
        }

        .page-789go__faq-container {
            padding: 0 15px;
        }

        .page-789go__faq-question,
        .page-789go__faq-answer {
            padding: 15px 20px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

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

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

    @media (max-width: 480px) {
        .page-789go__brand-title {
            font-size: 2.5em;
        }

        .page-789go__hero-tagline {
            font-size: 1.2em;
        }

        .page-789go__section-title {
            font-size: 1.8em;
        }

        .page-789go__hero-section {
            padding-left: 10px;
            padding-right: 10px;
        }

        .page-789go__hero-content {
            padding: 15px;
        }
    }
  