
    /* CSS Styles for 77ball page */
    :root {
        --page-77ball-primary: #e44d26; /* A vibrant red-orange for highlights */
        --page-77ball-secondary: #ffc107; /* A bright yellow for accents */
        --page-77ball-dark-bg: #1a1a2e; /* Dark background for sections */
        --page-77ball-light-text: #e0e0e0; /* Light text for dark backgrounds */
        --page-77ball-card-bg: #2a2a3e; /* Slightly lighter dark for cards */
        --page-77ball-button-hover: #ff7f50; /* Lighter orange for button hover */
    }

    .page-77ball {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--page-77ball-light-text);
        background-color: var(--page-77ball-dark-bg);
        padding-bottom: 80px; /* Space for floating button */
        text-align: center; /* Default center alignment for main content */
    }

    .page-77ball .page-77ball-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-77ball .page-77ball-section:nth-child(even) {
        background-color: var(--page-77ball-card-bg);
    }

    .page-77ball-h1, .page-77ball-h2, .page-77ball-h3 {
        color: var(--page-77ball-primary);
        margin-bottom: 20px;
        font-weight: bold;
    }
    .page-77ball-h1 { font-size: 2.5em; }
    .page-77ball-h2 { font-size: 2em; }
    .page-77ball-h3 { font-size: 1.5em; }

    .page-77ball-text {
        color: var(--page-77ball-light-text);
        margin-bottom: 15px;
    }

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

    .page-77ball-button:hover {
        background-color: var(--page-77ball-button-hover);
    }

    /* Hero Section */
    .page-77ball-hero {
        background-color: var(--page-77ball-dark-bg);
        padding: 0; /* Remove padding to allow image to take full width */
        margin-bottom: 40px;
        overflow: hidden; /* Ensure image doesn't overflow */
    }

    .page-77ball-hero-image-container {
        width: 100%;
        max-height: 400px; /* Limit height for banner */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .page-77ball-hero-image {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover; /* Cover the container while maintaining aspect ratio */
        object-position: center top; /* Focus on the top part of the image */
    }

    .page-77ball-hero-content {
        padding: 20px;
        text-align: center;
        background-color: var(--page-77ball-dark-bg); /* Ensure content has a background */
    }

    .page-77ball-hero-content .page-77ball-h1 {
        color: var(--page-77ball-secondary);
        font-size: 2.2em;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .page-77ball-hero-content .page-77ball-text {
        font-size: 1.1em;
        margin-bottom: 25px;
    }

    /* Floating Login Button */
    .page-77ball-floating-login {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 15px 10px;
        text-align: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        box-sizing: border-box; /* Include padding in width */
    }

    .page-77ball-floating-login .page-77ball-button {
        width: calc(100% - 40px); /* Adjust for padding */
        max-width: 400px;
        padding: 15px 20px;
        font-size: 1.1em;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

    /* Game Categories / Product Display */
    .page-77ball-game-grid, .page-77ball-provider-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .page-77ball-game-card, .page-77ball-provider-card {
        background-color: var(--page-77ball-card-bg);
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        padding: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }

    .page-77ball-game-card:hover, .page-77ball-provider-card:hover {
        transform: translateY(-5px);
    }

    .page-77ball-game-card img, .page-77ball-provider-card img {
        width: 100%;
        max-width: 120px; /* Limit image size for cards */
        height: auto;
        border-radius: 5px;
        margin-bottom: 10px;
        object-fit: contain; /* Ensure full image is visible */
        background-color: #333; /* For better contrast with some logos */
        padding: 5px;
    }

    .page-77ball-game-card .page-77ball-h3, .page-77ball-provider-card .page-77ball-h3 {
        font-size: 1.1em;
        margin: 0;
        color: var(--page-77ball-light-text);
    }

    .page-77ball-game-card a, .page-77ball-provider-card a {
        text-decoration: none;
        color: var(--page-77ball-light-text);
        font-weight: bold;
    }

    .page-77ball-game-card a:hover, .page-77ball-provider-card a:hover {
        color: var(--page-77ball-primary);
    }

    /* Promotions */
    .page-77ball-promo-item {
        background-color: var(--page-77ball-card-bg);
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 20px;
        text-align: left;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-77ball-promo-item .page-77ball-h3 {
        color: var(--page-77ball-secondary);
        margin-top: 0;
    }

    .page-77ball-promo-item .page-77ball-text {
        font-size: 0.95em;
    }

    .page-77ball-list {
        list-style: none;
        padding: 0;
        margin: 0 auto 20px;
        max-width: 800px;
        text-align: left;
    }

    .page-77ball-list li {
        margin-bottom: 10px;
        padding-left: 25px;
        position: relative;
        color: var(--page-77ball-light-text);
    }

    .page-77ball-list li::before {
        content: '✓';
        color: var(--page-77ball-secondary);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    /* Responsive adjustments */
    @media (min-width: 768px) {
        .page-77ball-hero-content .page-77ball-h1 {
            font-size: 3em;
        }
        .page-77ball-hero-image {
            max-height: 500px; /* Taller banner on desktop */
        }
        .page-77ball-game-grid, .page-77ball-provider-grid {
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        }
    }

    @media (max-width: 767px) {
        .page-77ball-h1 { font-size: 2em; }
        .page-77ball-h2 { font-size: 1.7em; }
        .page-77ball-h3 { font-size: 1.3em; }
        .page-77ball-section {
            padding: 30px 15px;
        }
        .page-77ball-floating-login {
            padding: 10px;
        }
        .page-77ball-floating-login .page-77ball-button {
            width: 100%;
            font-size: 1em;
            padding: 12px 15px;
        }
        .page-77ball-list {
            padding-left: 15px;
        }
        .page-77ball-list li {
            padding-left: 20px;
        }
    }
  