
        /* style/789club.css */

        :root {
            --primary-color: #26A9E0;
            --secondary-color: #FFFFFF;
            --login-color: #EA7C07; /* Used for floating button and some highlights */
            --background-color: #000000; /* Main page background */
            --text-light: #FFFFFF;
            --text-dark: #333333;
            --accent-yellow: #EA7C07; /* Consistent with login color for yellow elements */
        }

        /* Base styles for the page-789club scope */
        .page-789club {
            font-family: 'Arial', sans-serif;
            background-color: var(--background-color);
            color: var(--text-light); /* Default text color on black background */
            line-height: 1.6;
            overflow-x: hidden; /* Prevent horizontal scroll on desktop too */
        }

        /* General section styling */
        .page-789club__section-title {
            font-size: 2.5rem;
            color: var(--accent-yellow); /* Titles in yellow */
            text-align: center;
            margin-bottom: 20px;
            font-weight: bold;
            line-height: 1.2;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-789club__section-description {
            font-size: 1.1rem;
            color: var(--text-light);
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Buttons */
        .page-789club__btn-primary,
        .page-789club__btn-secondary {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            max-width: 100%;
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
        }

        .page-789club__btn-primary {
            background-color: var(--primary-color);
            color: var(--text-light);
            border: 2px solid var(--primary-color);
        }

        .page-789club__btn-primary:hover {
            background-color: #1a8cc4; /* Darkened primary */
            border-color: #1a8cc4;
        }

        .page-789club__btn-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .page-789club__btn-secondary:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
        }

        .page-789club__btn-large {
            padding: 15px 40px;
            font-size: 1.2rem;
        }

        /* Images */
        .page-789club img {
            max-width: 100%;
            height: auto;
            display: block;
            object-fit: cover; /* Ensure images fill their space without distorting */
        }

        /* Hero Section */
        .page-789club__hero-section {
            position: relative;
            text-align: center;
            padding-top: 10px; /* Small padding, body padding-top should handle header offset */
            padding-bottom: 40px;
            overflow: hidden; /* Ensure no image overflow */
        }

        .page-789club__hero-image-wrapper {
            width: 100%;
            overflow: hidden;
            max-height: 700px; /* Limit height for desktop hero */
        }

        .page-789club__hero-image {
            width: 100%;
            height: auto;
            object-fit: cover;
            min-height: 250px; /* Minimum height for hero image */
        }

        .page-789club__hero-content {
            max-width: 900px;
            margin: 40px auto 0 auto;
            padding: 0 20px;
        }

        .page-789club__hero-title {
            font-size: 3.2rem; /* Adjusted for SEO title length and impact */
            color: var(--accent-yellow);
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

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

        .page-789club__hero-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        /* About Section */
        .page-789club__about-section {
            padding: 60px 20px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-789club__about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .page-789club__feature-item {
            background-color: #1a1a1a; /* Darker background for cards */
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .page-789club__feature-item:hover {
            transform: translateY(-10px);
        }

        .page-789club__feature-icon {
            width: 100%; /* Ensure full width in card */
            max-width: 250px; /* Max size for feature icons */
            height: auto;
            margin-bottom: 20px;
            border-radius: 8px;
        }

        .page-789club__feature-title {
            font-size: 1.8rem;
            color: var(--primary-color); /* Feature titles in primary blue */
            margin-bottom: 10px;
        }

        .page-789club__feature-text {
            font-size: 1rem;
            color: var(--text-light);
        }

        /* Games Section */
        .page-789club__games-section {
            padding: 60px 20px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-789club__games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* Smaller grid for games */
            gap: 20px;
            margin-top: 40px;
        }

        .page-789club__game-card {
            background-color: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            text-decoration: none;
            color: var(--text-light);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding-bottom: 15px;
        }

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

        .page-789club__game-image {
            width: 100%;
            height: 150px; /* Fixed height for game images */
            object-fit: cover;
            margin-bottom: 15px;
        }

        .page-789club__game-title {
            font-size: 1.2rem;
            color: var(--text-light);
            padding: 0 10px;
        }

        /* Providers Section */
        .page-789club__providers-section {
            padding: 60px 20px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-789club__providers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Smaller grid for logos */
            gap: 20px;
            margin-top: 40px;
            background-color: #1a1a1a;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .page-789club__provider-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10px;
            transition: transform 0.3s ease;
        }

        .page-789club__provider-item:hover {
            transform: scale(1.05);
        }

        .page-789club__provider-logo {
            width: 100%;
            max-width: 80px; /* Fixed size for logos */
            height: 80px;
            object-fit: contain; /* Ensure logos are fully visible */
            margin-bottom: 10px;
        }

        .page-789club__provider-name {
            font-size: 0.9rem;
            color: var(--text-light);
            opacity: 0.8;
        }

        /* Promotions Section */
        .page-789club__promotions-section {
            padding: 60px 20px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .page-789club__promotions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .page-789club__promotion-card {
            background-color: #1a1a1a;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            text-align: left;
            transition: transform 0.3s ease;
        }

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

        .page-789club__promotion-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .page-789club__promotion-title {
            font-size: 1.5rem;
            color: var(--accent-yellow);
            padding: 20px 20px 10px;
        }

        .page-789club__promotion-text {
            font-size: 1rem;
            color: var(--text-light);
            padding: 0 20px 20px;
        }

        .page-789club__promotion-card .page-789club__btn-primary {
            display: block;
            margin: 0 20px 20px;
        }

        .page-789club__view-all-promos {
            margin-top: 40px;
        }

        /* FAQ Section */
        .page-789club__faq-section {
            padding: 60px 20px;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-789club__faq-container {
            margin-top: 40px;
        }

        .page-789club__faq-item {
            background-color: #1a1a1a;
            border-radius: 10px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .page-789club__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            cursor: pointer;
            user-select: none;
            background-color: #2a2a2a; /* Slightly lighter dark for question */
            transition: background-color 0.3s ease;
        }

        .page-789club__faq-question:hover {
            background-color: #3a3a3a;
        }

        .page-789club__faq-qtext {
            font-size: 1.2rem;
            color: var(--text-light);
            font-weight: bold;
            pointer-events: none; /* Prevent text from blocking click */
        }

        .page-789club__faq-toggle {
            font-size: 1.8rem;
            color: var(--accent-yellow);
            font-weight: bold;
            transition: transform 0.3s ease;
            pointer-events: none; /* Prevent toggle from blocking click */
        }

        .page-789club__faq-item.active .page-789club__faq-toggle {
            transform: rotate(45deg); /* Plus to X (rotate 45deg) */
        }

        .page-789club__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px; /* Initial padding */
            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(--text-light);
            font-size: 1rem;
        }

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

        /* CTA Section */
        .page-789club__cta-section {
            padding: 60px 20px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #1a1a1a;
            border-radius: 10px;
            margin-bottom: 40px;
        }

        .page-789club__cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }

        /* Floating Button */
        .page-789club__floating-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--login-color); /* Login color for floating button */
            color: var(--text-light);
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: transform 0.3s ease, background-color 0.3s ease;
            white-space: nowrap; /* Keep text on one line */
            word-wrap: normal;
            text-align: center;
            max-width: 250px; /* Limit width */
            box-sizing: border-box;
        }

        .page-789club__floating-button:hover {
            transform: translateY(-5px);
            background-color: #c96d06; /* Darkened login color */
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .page-789club__hero-title {
                font-size: 2.8rem;
            }
            .page-789club__section-title {
                font-size: 2.2rem;
            }
            .page-789club__hero-description {
                font-size: 1.1rem;
            }
            .page-789club__game-image {
                height: 120px;
            }
            .page-789club__providers-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            }
            .page-789club__promotion-card .page-789club__btn-primary {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 768px) {
            /* HERO Section */
            .page-789club__hero-section {
                padding-top: 10px !important; /* Small padding, body handles header offset */
                padding-bottom: 30px;
            }
            .page-789club__hero-image-wrapper {
                max-height: 400px;
            }
            .page-789club__hero-title {
                font-size: 2.2rem;
                margin-bottom: 15px;
            }
            .page-789club__hero-description {
                font-size: 1rem;
                margin-bottom: 25px;
            }
            .page-789club__hero-cta-buttons {
                flex-direction: column;
                gap: 15px;
                padding: 0 20px;
            }

            /* Universal Button Adaptations for mobile */
            .page-789club__btn-primary,
            .page-789club__btn-secondary,
            .page-789club a[class*="button"],
            .page-789club a[class*="btn"] {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 12px 15px !important;
                font-size: 1rem !important;
                white-space: normal !important;
                word-wrap: break-word !important;
            }

            /* General Sections and Images */
            .page-789club__section-title {
                font-size: 1.8rem;
                padding: 0 15px;
            }
            .page-789club__section-description {
                font-size: 0.95rem;
                padding: 0 15px;
            }
            .page-789club__about-section,
            .page-789club__games-section,
            .page-789club__providers-section,
            .page-789club__promotions-section,
            .page-789club__faq-section,
            .page-789club__cta-section {
                padding: 40px 15px;
            }

            /* Product display images (games-grid) */
            .page-789club__games-grid {
                grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); /* 2 columns for games */
                gap: 15px;
            }
            .page-789club__game-image {
                height: 100px; /* Smaller height for mobile game images */
            }
            .page-789club__game-title {
                font-size: 1rem;
            }

            /* Universal Image and Container adaptations for mobile */
            .page-789club img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }
            .page-789club__section,
            .page-789club__card,
            .page-789club__container,
            .page-789club__feature-item,
            .page-789club__game-card,
            .page-789club__promotion-card,
            .page-789club__faq-item,
            .page-789club__cta-section {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }
            .page-789club__hero-section,
            .page-789club__providers-grid {
                padding-left: 0;
                padding-right: 0;
            }
            .page-789club__hero-content,
            .page-789club__about-section,
            .page-789club__games-section,
            .page-789club__promotions-section,
            .page-789club__faq-section,
            .page-789club__cta-section {
                padding-left: 20px;
                padding-right: 20px;
            }
            .page-789club__providers-grid {
                padding: 20px 15px;
            }

            /* Buttons and Button Containers */
            .page-789club__cta-buttons {
                flex-direction: column;
                gap: 15px;
                padding: 0 20px;
            }
            .page-789club__cta-buttons,
            .page-789club__button-group,
            .page-789club__btn-container {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px !important;
                padding-right: 15px !important;
                flex-wrap: wrap !important;
                gap: 10px;
            }
            .page-789club__cta-buttons {
                display: flex;
                flex-direction: column;
            }

            /* Other content modules */
            .page-789club__feature-item {
                padding: 20px;
            }
            .page-789club__feature-title {
                font-size: 1.5rem;
            }
            .page-789club__promotion-title {
                font-size: 1.3rem;
            }
            .page-789club__faq-qtext {
                font-size: 1.05rem;
            }
            .page-789club__faq-answer p {
                font-size: 0.95rem;
            }
            .page-789club__floating-button {
                padding: 12px 20px;
                font-size: 0.9rem;
                bottom: 15px;
                right: 15px;
                max-width: calc(100% - 30px); /* Adjust for screen edges */
                left: 15px;
                right: 15px;
                margin: auto;
            }
        }

        @media (max-width: 480px) {
            .page-789club__hero-title {
                font-size: 1.8rem;
            }
            .page-789club__section-title {
                font-size: 1.6rem;
            }
            .page-789club__games-grid {
                grid-template-columns: 1fr 1fr; /* Force 2 columns */
            }
            .page-789club__providers-grid {
                grid-template-columns: repeat(3, 1fr); /* 3 columns for providers */
            }
            .page-789club__promotions-grid {
                grid-template-columns: 1fr; /* Stack promotions */
            }
            .page-789club__floating-button {
                font-size: 0.85rem;
                padding: 10px 15px;
            }
        }
    