
    /* CSS for page-8k8-slot-casino */
    :root {
        --page-8k8-slot-casino__primary-color: #FFD700; /* Gold */
        --page-8k8-slot-casino__secondary-color: #000000; /* Black */
        --page-8k8-slot-casino__accent-color: #DC143C; /* Crimson for highlights */
        --page-8k8-slot-casino__text-color: #E0E0E0; /* Light gray for text */
        --page-8k8-slot-casino__background-dark: #1A1A1A; /* Dark background */
        --page-8k8-slot-casino__background-light: #2A2A2A; /* Slightly lighter background */
        --page-8k8-slot-casino__border-color: #3A3A3A;
        --page-8k8-slot-casino__button-bg: #FFD700;
        --page-8k8-slot-casino__button-text: #1A1A1A;
    }

    .page-8k8-slot-casino {
        font-family: 'Arial', sans-serif;
        color: var(--page-8k8-slot-casino__text-color);
        background-color: var(--page-8k8-slot-casino__background-dark);
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll */
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    .page-8k8-slot-casino__section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-8k8-slot-casino__section--dark {
        background-color: var(--page-8k8-slot-casino__background-light);
    }

    .page-8k8-slot-casino__section-title {
        font-size: 2.8em;
        color: var(--page-8k8-slot-casino__primary-color);
        margin-bottom: 30px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .page-8k8-slot-casino__section-subtitle {
        font-size: 1.4em;
        color: var(--page-8k8-slot-casino__text-color);
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .page-8k8-slot-casino__button:hover {
        background-color: var(--page-8k8-slot-casino__accent-color);
        color: #FFFFFF;
        transform: translateY(-3px);
    }

    /* Hero Section */
    .page-8k8-slot-casino__hero-section {
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 600px;
        color: #FFFFFF;
        text-align: center;
        padding: 10px 20px 60px 20px; /* Added 10px top padding for fixed nav spacing */
    }

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

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

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

    .page-8k8-slot-casino__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 40px;
        color: #E0E0E0;
        text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    }

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

    .page-8k8-slot-casino__game-card {
        background-color: var(--page-8k8-slot-casino__background-light);
        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: left;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .page-8k8-slot-casino__game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-slot-casino__game-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-8k8-slot-casino__game-image {
        width: 100%;
        height: 250px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .page-8k8-slot-casino__game-card:hover .page-8k8-slot-casino__game-image {
        transform: scale(1.05);
    }

    .page-8k8-slot-casino__game-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

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

    .page-8k8-slot-casino__game-description {
        font-size: 0.95em;
        color: var(--page-8k8-slot-casino__text-color);
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .page-8k8-slot-casino__game-button {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: auto; /* Pushes button to the bottom */
    }

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

    .page-8k8-slot-casino__promo-item {
        background-color: var(--page-8k8-slot-casino__background-light);
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 5px solid var(--page-8k8-slot-casino__primary-color);
    }

    .page-8k8-slot-casino__promo-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-slot-casino__promo-title {
        font-size: 1.8em;
        color: var(--page-8k8-slot-casino__primary-color);
        margin-bottom: 15px;
    }

    .page-8k8-slot-casino__promo-description {
        font-size: 1em;
        color: var(--page-8k8-slot-casino__text-color);
        margin-bottom: 20px;
    }

    /* Payment and Providers */
    .page-8k8-slot-casino__logos-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        margin-top: 40px;
    }

    .page-8k8-slot-casino__logo-item {
        background-color: var(--page-8k8-slot-casino__background-light);
        border-radius: 8px;
        padding: 20px;
        width: 180px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Ensure padding is included */
    }

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

    .page-8k8-slot-casino__logo-image {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
        filter: grayscale(100%) brightness(150%); /* Adjust for visibility on dark background */
        transition: filter 0.3s ease;
    }

    .page-8k8-slot-casino__logo-item:hover .page-8k8-slot-casino__logo-image {
        filter: grayscale(0%) brightness(100%); /* Full color on hover */
    }

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

    .page-8k8-slot-casino__faq-item {
        background-color: var(--page-8k8-slot-casino__background-light);
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        border: 1px solid var(--page-8k8-slot-casino__border-color);
        overflow: hidden;
    }

    .page-8k8-slot-casino__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: var(--page-8k8-slot-casino__background-light);
        color: var(--page-8k8-slot-casino__primary-color);
        font-size: 1.2em;
        font-weight: bold;
        border-bottom: 1px solid var(--page-8k8-slot-casino__border-color);
        transition: background-color 0.3s ease;
    }

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

    .page-8k8-slot-casino__faq-question:hover {
        background-color: #3A3A3A;
    }

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

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

    .page-8k8-slot-casino__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        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(--page-8k8-slot-casino__text-color);
        background-color: #222222;
        font-size: 1em;
    }

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

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-8k8-slot-casino__section {
            padding: 50px 15px;
        }
        .page-8k8-slot-casino__hero-title {
            font-size: 3.5em;
        }
        .page-8k8-slot-casino__hero-subtitle {
            font-size: 1.3em;
        }
        .page-8k8-slot-casino__section-title {
            font-size: 2.2em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-slot-casino__hero-section {
            min-height: 450px;
            padding-top: 10px;
            padding-bottom: 40px;
        }
        .page-8k8-slot-casino__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-slot-casino__hero-subtitle {
            font-size: 1.1em;
        }
        .page-8k8-slot-casino__section {
            padding: 40px 15px;
        }
        .page-8k8-slot-casino__section-title {
            font-size: 1.8em;
        }
        .page-8k8-slot-casino__section-subtitle {
            font-size: 1.2em;
        }
        .page-8k8-slot-casino__game-grid,
        .page-8k8-slot-casino__promo-list {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        .page-8k8-slot-casino__game-card,
        .page-8k8-slot-casino__promo-item {
            margin: 0 auto;
            max-width: 400px;
        }

        /* List item responsive requirements */
        .page-8k8-slot-casino__logos-grid {
            flex-direction: column;
            align-items: center;
        }
        .page-8k8-slot-casino__logo-item {
            width: 100% !important;
            max-width: 300px !important; /* Limit max width for a cleaner look */
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 15px !important;
        }
        .page-8k8-slot-casino__game-description,
        .page-8k8-slot-casino__promo-description,
        .page-8k8-slot-casino__faq-answer {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-slot-casino__faq-question,
        .page-8k8-slot-casino__faq-answer {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
        .page-8k8-slot-casino__faq-question h3 {
            font-size: 1.1em;
        }
        .page-8k8-slot-casino__faq-toggle {
            font-size: 1.5em;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-slot-casino__hero-title {
            font-size: 2em;
        }
        .page-8k8-slot-casino__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-slot-casino__button {
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-8k8-slot-casino__game-image {
            height: 200px;
        }
        .page-8k8-slot-casino__game-title {
            font-size: 1.3em;
        }
        .page-8k8-slot-casino__promo-title {
            font-size: 1.5em;
        }
    }
  