
    /* Base Styles for .page-789ne container */
    .page-789ne {
        font-family: 'Arial', sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
    }

    /* Section Styling */
    .page-789ne__section-title {
        font-size: 2.5em;
        color: #cc0000; /* Darker red for emphasis */
        text-align: center;
        margin-bottom: 20px;
        padding: 10px 15px;
        font-weight: bold;
    }

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

    /* Buttons */
    .page-789ne__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: all 0.3s ease;
        cursor: pointer;
        text-align: center;
        border: none;
        box-sizing: border-box; /* Important for responsive buttons */
    }

    .page-789ne__button--primary {
        background-color: #e62e2e; /* Vibrant red */
        color: #fff;
        box-shadow: 0 4px 10px rgba(230, 46, 46, 0.4);
    }

    .page-789ne__button--primary:hover {
        background-color: #cc0000; /* Darker red on hover */
        box-shadow: 0 6px 15px rgba(230, 46, 46, 0.6);
    }

    .page-789ne__button--secondary {
        background-color: #f0ad4e; /* Orange/Gold */
        color: #fff;
        box-shadow: 0 4px 10px rgba(240, 173, 78, 0.4);
        margin-left: 15px;
    }

    .page-789ne__button--secondary:hover {
        background-color: #ec971f; /* Darker orange/gold on hover */
        box-shadow: 0 6px 15px rgba(240, 173, 78, 0.6);
    }

    .page-789ne__button--details {
        background-color: #5cb85c; /* Green for "details" */
        color: #fff;
        padding: 8px 15px;
        font-size: 0.9em;
        border-radius: 5px;
    }

    .page-789ne__button--details:hover {
        background-color: #4cae4c;
    }

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

    .page-789ne__floating-buttons .page-789ne__button {
        width: 120px;
        padding: 10px 15px;
        font-size: 1em;
        border-radius: 50px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }

    .page-789ne__button--register {
        background-color: #e62e2e;
        color: #fff;
    }

    .page-789ne__button--register:hover {
        background-color: #cc0000;
    }

    .page-789ne__button--login {
        background-color: #f0ad4e;
        color: #fff;
    }

    .page-789ne__button--login:hover {
        background-color: #ec971f;
    }

    /* Hero Section */
    .page-789ne__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px 20px 60px 20px; /* Small top padding, more bottom padding */
        background: linear-gradient(135deg, #1a1a1a, #333333);
        color: #fff;
        overflow: hidden;
        position: relative;
    }

    .page-789ne__hero-content {
        max-width: 900px;
        z-index: 1;
        margin-bottom: 30px;
    }

    .page-789ne__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        color: #f0ad4e; /* Gold color for title */
        font-weight: bold;
        line-height: 1.2;
    }

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

    .page-789ne__hero-cta-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    }

    .page-789ne__hero-image-container {
        width: 100%;
        max-width: 1200px;
        margin-top: 30px;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .page-789ne__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        width: 100%;
    }

    /* Games Section */
    .page-789ne__games-section {
        padding: 60px 20px;
        background-color: #fff;
    }

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

    .page-789ne__game-card {
        background-color: #fefefe;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease;
        padding-bottom: 20px; /* Space for text below image */
        box-sizing: border-box;
    }

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

    .page-789ne__game-card-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .page-789ne__game-card-title {
        font-size: 1.6em;
        color: #e62e2e;
        margin: 20px 0 10px;
        padding: 0 15px;
    }

    .page-789ne__game-card-description {
        font-size: 0.95em;
        color: #666;
        padding: 0 15px;
    }

    /* Promotions Section */
    .page-789ne__promotions-section {
        padding: 60px 20px;
        background-color: #f2f2f2;
    }

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

    .page-789ne__promo-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease;
        padding-bottom: 20px;
        box-sizing: border-box;
    }

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

    .page-789ne__promo-card-image {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .page-789ne__promo-card-title {
        font-size: 1.5em;
        color: #e62e2e;
        margin: 20px 0 10px;
        padding: 0 15px;
    }

    .page-789ne__promo-card-description {
        font-size: 0.95em;
        color: #666;
        padding: 0 15px 20px;
    }

    .page-789ne__center-button {
        text-align: center;
    }

    /* Why Choose Section */
    .page-789ne__why-choose-section {
        padding: 60px 20px;
        background-color: #fff;
    }

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

    .page-789ne__why-choose-item {
        text-align: center;
        padding: 30px;
        background-color: #fefefe;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

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

    .page-789ne__why-choose-icon {
        width: 100px; /* Ensure icon size is not too small but still illustrative */
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
    }

    .page-789ne__why-choose-title {
        font-size: 1.4em;
        color: #e62e2e;
        margin-bottom: 10px;
    }

    .page-789ne__why-choose-description {
        font-size: 0.95em;
        color: #666;
    }

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

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

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

    .page-789ne__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #e62e2e; /* Red background for question */
        color: #fff;
        cursor: pointer;
        user-select: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-789ne__faq-question:hover {
        background-color: #cc0000; /* Darker red on hover */
    }

    .page-789ne__faq-question-title {
        margin: 0;
        font-size: 1.2em;
        flex-grow: 1;
        text-align: left;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
        color: #fff; /* Ensure good contrast */
    }

    .page-789ne__faq-toggle {
        font-size: 1.5em;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click on parent div */
        color: #fff; /* Ensure good contrast */
    }

    .page-789ne__faq-item.active .page-789ne__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' or '-' */
    }

    .page-789ne__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding */
        opacity: 0;
        background-color: #fefefe;
        color: #333;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        box-sizing: border-box;
    }

    .page-789ne__faq-item.active .page-789ne__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to show all content */
        padding: 20px !important; /* Expanded padding */
        opacity: 1;
    }

    .page-789ne__faq-answer p {
        margin: 0;
        padding-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* General image styling for responsiveness */
    .page-789ne img {
        max-width: 100%;
        height: auto;
        display: block;
        box-sizing: border-box;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-789ne__hero-title {
            font-size: 3em;
        }
        .page-789ne__hero-description {
            font-size: 1.2em;
        }
        .page-789ne__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-789ne__hero-section {
            padding: 10px 15px 40px 15px;
        }
        .page-789ne__hero-title {
            font-size: 2.5em;
        }
        .page-789ne__hero-description {
            font-size: 1em;
        }
        .page-789ne__hero-cta-group {
            flex-direction: column;
            gap: 15px;
        }
        .page-789ne__button--primary,
        .page-789ne__button--secondary {
            width: 100%;
            margin-left: 0;
        }

        .page-789ne__section-title {
            font-size: 1.8em;
        }
        .page-789ne__section-description {
            font-size: 0.95em;
            margin-bottom: 30px;
        }

        .page-789ne__game-grid,
        .page-789ne__promo-grid,
        .page-789ne__why-choose-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-789ne__game-card-image,
        .page-789ne__promo-card-image {
            height: 180px;
        }

        .page-789ne__game-card-title,
        .page-789ne__promo-card-title {
            font-size: 1.4em;
        }

        .page-789ne__why-choose-item {
            padding: 20px;
        }

        .page-789ne__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
        .page-789ne__faq-question-title {
            font-size: 1.1em;
        }
        .page-789ne__faq-answer {
            padding: 0 15px;
        }
        .page-789ne__faq-item.active .page-789ne__faq-answer {
            padding: 15px !important;
        }

        /* Floating buttons for mobile */
        .page-789ne__floating-buttons {
            flex-direction: row;
            width: calc(100% - 40px);
            left: 20px;
            right: 20px;
            justify-content: space-around;
            bottom: 15px;
        }

        .page-789ne__floating-buttons .page-789ne__button {
            flex: 1;
            width: auto;
            max-width: 150px;
            font-size: 0.95em;
            padding: 10px 0;
        }
    }

    @media (max-width: 480px) {
        .page-789ne__hero-title {
            font-size: 2em;
        }
        .page-789ne__section-title {
            font-size: 1.6em;
        }
        .page-789ne__floating-buttons {
            bottom: 10px;
            gap: 8px;
            left: 10px;
            right: 10px;
            width: calc(100% - 20px);
        }
        .page-789ne__floating-buttons .page-789ne__button {
            font-size: 0.9em;
            padding: 8px 0;
        }
    }
  