
    /* Page-specific CSS for 8k8-vip */
    :root {
        --page-8k8-vip-primary-color: #ffcc00; /* Gold/Yellow */
        --page-8k8-vip-secondary-color: #333333; /* Dark Grey */
        --page-8k8-vip-accent-color: #007bff; /* Blue for links/buttons */
        --page-8k8-vip-text-color: #ffffff; /* White text */
        --page-8k8-vip-background-dark: #1a1a1a; /* Dark background */
        --page-8k8-vip-background-light: #2c2c2c; /* Slightly lighter dark background */
        --page-8k8-vip-border-color: #555555;
    }

    .page-8k8-vip {
        font-family: 'Arial', sans-serif;
        color: var(--page-8k8-vip-text-color);
        background-color: var(--page-8k8-vip-background-dark);
        line-height: 1.6;
        padding-bottom: 50px; /* Ensure space above footer */
    }

    /* General Section Styling */
    .page-8k8-vip__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-8k8-vip__section--dark {
        background-color: var(--page-8k8-vip-background-light);
    }

    .page-8k8-vip__section-title {
        font-size: 2.5em;
        color: var(--page-8k8-vip-primary-color);
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .page-8k8-vip__section-subtitle {
        font-size: 1.2em;
        color: #cccccc;
        margin-bottom: 40px;
    }

    .page-8k8-vip__button {
        display: inline-block;
        padding: 15px 30px;
        background-color: var(--page-8k8-vip-primary-color);
        color: var(--page-8k8-vip-background-dark);
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        font-size: 1.1em;
        margin-top: 20px;
    }

    .page-8k8-vip__button:hover {
        background-color: #ffd700;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-8k8-vip__hero-section {
        background: var(--page-8k8-vip-background-dark); /* Fallback */
        background-size: cover;
        background-position: center;
        padding: calc(var(--header-offset, 0px) + 60px) 20px 60px; /* Small decorative padding-top, assuming body handles main offset */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        min-height: 60vh;
        position: relative;
        overflow: hidden;
    }

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

    .page-8k8-vip__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
    }

    .page-8k8-vip__hero-title {
        font-size: 3.5em;
        color: var(--page-8k8-vip-primary-color);
        margin-bottom: 20px;
        line-height: 1.2;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-vip__hero-subtitle {
        font-size: 1.5em;
        color: #e0e0e0;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    }

    /* Features Section */
    .page-8k8-vip__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8k8-vip__feature-item {
        background-color: var(--page-8k8-vip-background-light);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-vip__feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-vip__feature-icon {
        width: 100%; /* Placeholder for a larger image as per requirements */
        max-width: 300px; /* Max width to contain the image */
        height: auto;
        margin-bottom: 20px;
        border-radius: 8px;
        display: block; /* Ensure it behaves as a block element */
    }

    .page-8k8-vip__feature-title {
        font-size: 1.5em;
        color: var(--page-8k8-vip-primary-color);
        margin-bottom: 15px;
    }

    .page-8k8-vip__feature-description {
        font-size: 1em;
        color: #cccccc;
    }

    /* Game Categories Section */
    .page-8k8-vip__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-8k8-vip__game-card {
        background-color: var(--page-8k8-vip-background-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-vip__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-vip__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-8k8-vip__game-info {
        padding: 20px;
    }

    .page-8k8-vip__game-title {
        font-size: 1.3em;
        color: var(--page-8k8-vip-primary-color);
        margin-bottom: 10px;
    }

    .page-8k8-vip__game-description {
        font-size: 0.95em;
        color: #cccccc;
    }

    /* Payment Methods Section */
    .page-8k8-vip__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .page-8k8-vip__payment-item {
        background-color: var(--page-8k8-vip-background-light);
        padding: 20px;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-vip__payment-item:hover {
        transform: translateY(-3px);
    }

    .page-8k8-vip__payment-logo {
        width: 100%; /* Placeholder for a larger image as per requirements */
        max-width: 200px; /* Max width to contain the image */
        height: auto;
        margin-bottom: 10px;
        display: block;
    }

    .page-8k8-vip__payment-name {
        font-size: 1em;
        font-weight: bold;
        color: var(--page-8k8-vip-text-color);
    }

    /* Game Providers Section */
    .page-8k8-vip__providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .page-8k8-vip__provider-logo {
        background-color: var(--page-8k8-vip-background-light);
        padding: 15px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 150px; /* Adjusted height for consistent display with larger images */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive list items */
    }

    .page-8k8-vip__provider-logo:hover {
        transform: scale(1.05);
    }

    .page-8k8-vip__provider-image {
        max-width: 100%;
        max-height: 100px; /* Adjusted to fit within the new logo box height */
        object-fit: contain;
        height: auto;
    }

    /* Promotions Section */
    .page-8k8-vip__promotions-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 30px;
    }

    .page-8k8-vip__promotions-image {
        width: 100%;
        max-width: 800px;
        height: auto;
        border-radius: 10px;
        margin-bottom: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    }

    /* FAQ Section */
    .page-8k8-vip__faq-container {
        margin-top: 40px;
        text-align: left;
    }

    .page-8k8-vip__faq-item {
        background-color: var(--page-8k8-vip-background-light);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-vip__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: var(--page-8k8-vip-secondary-color);
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-8k8-vip__faq-question:hover {
        background-color: #444444;
    }

    .page-8k8-vip__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--page-8k8-vip-primary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-vip__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        color: var(--page-8k8-vip-primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

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

    .page-8k8-vip__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        color: #cccccc;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

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

    .page-8k8-vip__faq-answer p {
        margin-bottom: 0;
        padding-bottom: 10px;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-8k8-vip__hero-title {
            font-size: 3em;
        }
        .page-8k8-vip__hero-subtitle {
            font-size: 1.3em;
        }
        .page-8k8-vip__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-vip__hero-section {
            padding-top: calc(var(--header-offset, 0px) + 40px);
            min-height: 50vh;
        }
        .page-8k8-vip__hero-title {
            font-size: 2.2em;
        }
        .page-8k8-vip__hero-subtitle {
            font-size: 1.1em;
        }
        .page-8k8-vip__section {
            padding: 30px 15px;
        }
        .page-8k8-vip__section-title {
            font-size: 1.8em;
        }
        .page-8k8-vip__section-subtitle {
            font-size: 1em;
            margin-bottom: 30px;
        }

        /* Responsive for lists and cards */
        .page-8k8-vip__features-grid,
        .page-8k8-vip__game-categories,
        .page-8k8-vip__payment-grid,
        .page-8k8-vip__providers-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-8k8-vip__feature-item,
        .page-8k8-vip__game-card,
        .page-8k8-vip__payment-item,
        .page-8k8-vip__provider-logo {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for smaller screens */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        
        .page-8k8-vip__feature-item p,
        .page-8k8-vip__game-card p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-vip__feature-icon,
        .page-8k8-vip__game-image,
        .page-8k8-vip__payment-logo,
        .page-8k8-vip__provider-image,
        .page-8k8-vip__promotions-image {
            max-width: 100% !important;
            height: auto !important;
        }

        .page-8k8-vip__faq-question {
            padding: 15px 20px;
        }
        .page-8k8-vip__faq-question h3 {
            font-size: 1.1em;
        }
        .page-8k8-vip__faq-answer {
            padding: 0 20px;
        }
        .page-8k8-vip__faq-item.active .page-8k8-vip__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-vip__hero-title {
            font-size: 1.8em;
        }
        .page-8k8-vip__hero-subtitle {
            font-size: 0.9em;
        }
        .page-8k8-vip__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-8k8-vip__section-title {
            font-size: 1.5em;
        }
        .page-8k8-vip__feature-title,
        .page-8k8-vip__game-title {
            font-size: 1.2em;
        }
    }
  