
    /* CSS specific to 8k8-com page */
    :root {
        --primary-color: #FFD700; /* Gold */
        --secondary-color: #000000; /* Black */
        --accent-color: #FF4500; /* OrangeRed */
        --text-color: #FFFFFF; /* White */
        --dark-text-color: #333333; /* Dark Gray */
        --background-color: #1a1a1a; /* Dark background */
        --card-background: #2a2a2a; /* Slightly lighter card background */
        --border-color: #444444;
        --button-hover-color: #FFA500; /* Orange */
        --header-offset: 122px; /* Default offset if not provided by shared.css */
    }

    .page-8k8-com {
        font-family: 'Arial', sans-serif;
        color: var(--text-color);
        background-color: var(--background-color);
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for fixed header */
        position: relative; /* For floating buttons */
    }

    .page-8k8-com__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    .page-8k8-com__section {
        padding: 60px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-8k8-com__section--dark {
        background-color: var(--card-background);
        color: var(--text-color);
    }

    .page-8k8-com__section-title {
        font-size: 2.8em;
        color: var(--primary-color);
        margin-bottom: 20px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1.5px;
    }

    .page-8k8-com__section-subtitle {
        font-size: 1.2em;
        color: var(--text-color);
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero Section */
    .page-8k8-com__hero-section {
        position: relative;
        height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        text-align: center;
        overflow: hidden;
        padding: 10px; /* Small decorative padding-top as body handles main offset */
        box-sizing: border-box;
    }

    .page-8k8-com__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: brightness(0.6); /* Slightly darken background for text readability */
    }

    .page-8k8-com__hero-content {
        z-index: 1;
        max-width: 900px;
        padding: 20px;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 10px;
    }

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

    .page-8k8-com__hero-description {
        font-size: 1.5em;
        margin-bottom: 30px;
        color: var(--text-color);
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-com__button:hover {
        background-color: var(--button-hover-color);
        transform: translateY(-2px);
    }

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

    .page-8k8-com__floating-button {
        background-color: var(--accent-color);
        color: var(--text-color);
        padding: 12px 20px;
        border: none;
        border-radius: 25px;
        font-size: 1em;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        min-width: 120px;
    }

    .page-8k8-com__floating-button:hover {
        background-color: #E63900; /* Slightly darker accent */
        transform: translateY(-2px);
    }

    /* About Section */
    .page-8k8-com__about-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
        text-align: left;
    }

    .page-8k8-com__about-text {
        flex: 1;
        min-width: 300px;
    }

    .page-8k8-com__about-text p {
        margin-bottom: 15px;
        color: var(--text-color);
    }

    .page-8k8-com__about-image {
        flex: 1;
        min-width: 300px;
        max-width: 500px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com__about-image img {
        width: 100%;
        height: auto;
        display: block;
        max-width: 100%;
        box-sizing: border-box;
    }

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

    .page-8k8-com__game-card {
        background-color: var(--card-background);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding-bottom: 20px;
    }

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

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

    .page-8k8-com__game-title {
        font-size: 1.4em;
        color: var(--primary-color);
        margin: 15px 10px 10px;
        font-weight: bold;
    }

    .page-8k8-com__game-description {
        font-size: 0.9em;
        color: var(--text-color);
        padding: 0 15px;
    }

    /* Promotions Section */
    .page-8k8-com__promo-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
        list-style: none;
        padding: 0;
    }

    .page-8k8-com__promo-item {
        background-color: var(--card-background);
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

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

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

    .page-8k8-com__promo-description {
        font-size: 1em;
        color: var(--text-color);
    }

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

    .page-8k8-com__payment-item {
        background-color: var(--card-background);
        border-radius: 8px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.2s ease;
        box-sizing: border-box;
    }

    .page-8k8-com__payment-item:hover {
        transform: scale(1.03);
    }

    .page-8k8-com__payment-logo {
        width: 100px;
        height: 60px;
        object-fit: contain;
        margin-bottom: 10px;
        max-width: 100%;
        box-sizing: border-box;
    }

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

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

    .page-8k8-com__feature-card {
        background-color: var(--card-background);
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-8k8-com__feature-card:hover {
        transform: translateY(-5px);
    }

    .page-8k8-com__feature-icon {
        width: 200px; /* Minimum size requirement */
        height: 200px; /* Minimum size requirement */
        margin-bottom: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

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

    .page-8k8-com__feature-description {
        font-size: 1em;
        color: var(--text-color);
    }

    /* FAQ Section */
    .page-8k8-com__faq-container {
        max-width: 900px;
        margin: 40px auto 0;
        text-align: left;
    }

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

    .page-8k8-com__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #333333; /* Slightly different background for question */
        color: var(--primary-color);
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

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

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

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

    .page-8k8-com__faq-item.active .page-8k8-com__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-8k8-com__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding matches question horizontal 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-color);
        background-color: var(--card-background);
    }

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

    .page-8k8-com__faq-answer p {
        margin: 0 0 10px 0;
        color: var(--text-color);
    }
    .page-8k8-com__faq-answer p:last-child {
        margin-bottom: 0;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-8k8-com__hero-title {
            font-size: 3.5em;
        }
        .page-8k8-com__hero-description {
            font-size: 1.3em;
        }
        .page-8k8-com__section-title {
            font-size: 2.2em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-com {
            padding-top: var(--header-offset, 122px) !important; /* Ensure header offset on mobile */
        }
        .page-8k8-com__hero-section {
            height: 60vh;
        }
        .page-8k8-com__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-com__hero-description {
            font-size: 1.1em;
        }
        .page-8k8-com__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-8k8-com__section {
            padding: 40px 0;
        }
        .page-8k8-com__section-title {
            font-size: 1.8em;
        }
        .page-8k8-com__section-subtitle {
            font-size: 1em;
        }

        .page-8k8-com__about-content {
            flex-direction: column;
            gap: 20px;
        }
        .page-8k8-com__about-text,
        .page-8k8-com__about-image {
            min-width: unset;
            width: 100%;
        }

        .page-8k8-com__game-grid,
        .page-8k8-com__promo-list,
        .page-8k8-com__features-grid {
            grid-template-columns: 1fr; /* Single column layout */
            gap: 20px;
        }
        .page-8k8-com__game-card,
        .page-8k8-com__promo-item,
        .page-8k8-com__feature-card {
            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 mobile */
        }
        .page-8k8-com__game-description,
        .page-8k8-com__promo-description,
        .page-8k8-com__feature-description {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-com__payment-grid {
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 15px;
            padding: 0 10px;
        }
        .page-8k8-com__payment-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important;
        }
        .page-8k8-com__payment-logo {
            width: 80px;
            height: 50px;
        }
        .page-8k8-com__payment-name {
            font-size: 0.9em;
        }

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

        .page-8k8-com__floating-buttons {
            bottom: 15px;
            right: 15px;
            flex-direction: row; /* Horizontal for smaller screens if needed, or keep vertical */
            gap: 8px;
        }
        .page-8k8-com__floating-button {
            padding: 10px 15px;
            font-size: 0.9em;
            min-width: 100px;
        }
        /* All images responsive */
        .page-8k8-com img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            display: block !important;
        }
        .page-8k8-com div,
        .page-8k8-com section,
        .page-8k8-com ul,
        .page-8k8-com ol {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-com__hero-title {
            font-size: 2em;
        }
        .page-8k8-com__hero-description {
            font-size: 0.9em;
        }
        .page-8k8-com__section-title {
            font-size: 1.5em;
        }
        .page-8k8-com__button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
        .page-8k8-com__floating-buttons {
            flex-direction: column; /* Revert to vertical for very small screens */
            align-items: flex-end;
        }
    }
  