
    /* Page-specific CSS for 7789.com */
    :root {
        --primary-color: #e44d26; /* A vibrant orange-red */
        --secondary-color: #f7b731; /* A golden yellow */
        --dark-bg: #1a1a2e; /* Dark background */
        --light-text: #ffffff;
        --gray-text: #cccccc;
        --accent-blue: #007bff;
        --success-green: #28a745;
        --danger-red: #dc3545;
    }

    .page-7789-com {
        font-family: 'Arial', sans-serif;
        color: var(--light-text);
        background-color: var(--dark-bg);
        line-height: 1.6;
    }

    .page-7789-com__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        background-color: #24243e;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        text-align: center;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .page-7789-com__section:first-of-type {
        padding-top: 50px; /* Adjust for potential fixed header, plus a small decorative top padding */
    }

    .page-7789-com__header {
        font-size: 2.5em;
        color: var(--secondary-color);
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        line-height: 1.2;
    }

    .page-7789-com__subheader {
        font-size: 1.8em;
        color: var(--primary-color);
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .page-7789-com__text {
        font-size: 1.1em;
        color: var(--gray-text);
        margin-bottom: 20px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-7789-com__button {
        display: inline-block;
        padding: 12px 25px;
        margin: 10px;
        border-radius: 30px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
        color: var(--light-text);
        font-weight: bold;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        font-size: 1em;
        border: none;
        cursor: pointer;
    }

    .page-7789-com__button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        opacity: 0.9;
    }

    .page-7789-com__hero-image {
        width: 100%;
        max-width: 800px;
        height: auto;
        border-radius: 10px;
        margin-top: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .page-7789-com__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-7789-com__game-item {
        background-color: #33334d;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-7789-com__game-item:hover {
        transform: translateY(-5px);
    }

    .page-7789-com__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-7789-com__game-title {
        font-size: 1.3em;
        color: var(--secondary-color);
        padding: 15px 10px 5px;
    }

    .page-7789-com__game-description {
        font-size: 0.95em;
        color: var(--gray-text);
        padding: 0 15px 15px;
    }

    .page-7789-com__promo-list {
        list-style: none;
        padding: 0;
        margin: 30px auto;
        max-width: 800px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .page-7789-com__promo-item {
        background-color: #33334d;
        padding: 20px;
        border-radius: 8px;
        text-align: left;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-7789-com__promo-item-title {
        color: var(--primary-color);
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .page-7789-com__promo-item-text {
        color: var(--gray-text);
        font-size: 1em;
    }

    .page-7789-com__payment-grid,
    .page-7789-com__provider-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        margin-top: 30px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-7789-com__payment-item,
    .page-7789-com__provider-item {
        background-color: #33334d;
        padding: 15px 10px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease;
        box-sizing: border-box;
    }

    .page-7789-com__payment-item:hover,
    .page-7789-com__provider-item:hover {
        transform: translateY(-3px);
    }

    .page-7789-com__payment-image,
    .page-7789-com__provider-image {
        width: 100%;
        max-width: 100px; /* Larger images for payment/provider logos */
        height: auto;
        margin-bottom: 10px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    .page-7789-com__payment-name,
    .page-7789-com__provider-name {
        color: var(--light-text);
        font-weight: bold;
        font-size: 0.9em;
    }

    /* FAQ Section Styles */
    .page-7789-com__faq-container {
        max-width: 900px;
        margin: 30px auto 0;
        text-align: left;
    }

    .page-7789-com__faq-item {
        background-color: #33334d;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-7789-com__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        background-color: #444466;
        cursor: pointer;
        user-select: none;
        font-size: 1.1em;
        font-weight: bold;
        color: var(--light-text);
        transition: background-color 0.3s ease;
    }

    .page-7789-com__faq-question:hover {
        background-color: #555577;
    }

    .page-7789-com__faq-question h3 {
        margin: 0;
        color: var(--light-text);
        font-size: 1.1em;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-7789-com__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-7789-com__faq-item.active .page-7789-com__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' or similar effect */
    }

    .page-7789-com__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        color: var(--gray-text);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        font-size: 1em;
    }

    .page-7789-com__faq-item.active .page-7789-com__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 20px !important;
        opacity: 1;
    }

    /* Fixed Buttons */
    .page-7789-com__fixed-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        left: 20px;
        display: flex;
        justify-content: space-around;
        gap: 15px;
        z-index: 1000;
        padding: 15px;
        background-color: rgba(0, 0, 0, 0.75);
        border-radius: 12px;
        max-width: 450px;
        margin: 0 auto;
        box-sizing: border-box;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    }

    .page-7789-com__fixed-button {
        flex: 1;
        padding: 14px 18px;
        border-radius: 10px;
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        font-size: 1.1em;
        text-decoration: none;
        color: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }

    .page-7789-com__fixed-button--register {
        background: linear-gradient(90deg, #ff6b6b, #ee4c7d); /* Reddish gradient */
    }

    .page-7789-com__fixed-button--login {
        background: linear-gradient(90deg, #4facfe, #00f2fe); /* Bluish gradient */
    }

    .page-7789-com__fixed-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.45);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .page-7789-com__header {
            font-size: 2em;
        }

        .page-7789-com__subheader {
            font-size: 1.5em;
        }

        .page-7789-com__text {
            font-size: 1em;
        }

        .page-7789-com__button {
            padding: 10px 20px;
            font-size: 0.9em;
        }

        .page-7789-com__game-grid {
            grid-template-columns: 1fr;
        }

        .page-7789-com__promo-list,
        .page-7789-com__payment-grid,
        .page-7789-com__provider-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 15px;
        }

        .page-7789-com__payment-item,
        .page-7789-com__provider-item {
            padding: 10px 5px;
        }

        .page-7789-com__payment-image,
        .page-7789-com__provider-image {
            max-width: 80px;
        }

        .page-7789-com__payment-name,
        .page-7789-com__provider-name {
            font-size: 0.8em;
        }

        .page-7789-com__faq-question {
            font-size: 1em;
            padding: 15px 18px;
        }

        .page-7789-com__faq-question h3 {
            font-size: 1em;
        }

        .page-7789-com__faq-answer {
            padding: 15px 18px;
        }

        .page-7789-com__fixed-buttons {
            left: 15px;
            right: 15px;
            bottom: 15px;
            gap: 10px;
            padding: 12px;
        }

        .page-7789-com__fixed-button {
            font-size: 1em;
            padding: 12px 15px;
        }

        /* List item responsive styles */
        .page-7789-com__promo-list,
        .page-7789-com__payment-grid,
        .page-7789-com__provider-grid {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 10px !important;
            margin-left: auto !important;
            margin-right: auto !important;
        }

        .page-7789-com__promo-item,
        .page-7789-com__payment-item,
        .page-7789-com__provider-item {
            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;
            word-break: break-word !important;
        }
    }

    @media (min-width: 769px) {
        .page-7789-com__fixed-buttons {
            left: auto; /* Remove left constraint for desktop */
            width: auto; /* Allow content to dictate width */
        }
    }
  