
    /* CSS for 8k8 slot page */
    .page-8k8-slot {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;
        box-sizing: border-box;
        /* Fallback for header offset if body padding-top is not present in shared.css */
        padding-top: var(--header-offset, 122px);
    }

    /* General responsive image styles */
    .page-8k8-slot img {
        max-width: 100%;
        height: auto;
        display: block;
        box-sizing: border-box;
    }

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

    /* Hero Section */
    .page-8k8-slot__hero-section {
        position: relative;
        background-color: #0d2a4a; /* Dark blue for casino feel */
        color: #fff;
        text-align: center;
        padding: 10px 0 60px 0; /* Small top padding as body should handle header offset */
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-8k8-slot__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
        box-sizing: border-box;
    }

    .page-8k8-slot__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
        padding: 40px 20px;
        box-sizing: border-box;
    }

    .page-8k8-slot__hero-title {
        font-size: 3.2em;
        margin-bottom: 20px;
        font-weight: bold;
        color: #ffd700; /* Gold color */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-slot__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-slot__cta-button {
        display: inline-block;
        background-color: #007bff; /* Blue for CTA */
        color: #fff;
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 1.2em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        box-sizing: border-box;
    }

    .page-8k8-slot__cta-button:hover {
        background-color: #0056b3;
    }

    /* Section common styles */
    .page-8k8-slot__section {
        padding: 60px 0;
        text-align: center;
        box-sizing: border-box;
    }

    .page-8k8-slot__section--light-bg {
        background-color: #f0f2f5;
    }

    .page-8k8-slot__section-title {
        font-size: 2.5em;
        color: #0d2a4a;
        margin-bottom: 40px;
        font-weight: bold;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-slot__section-description {
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 40px auto;
        color: #555;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Features/Benefits Grid */
    .page-8k8-slot__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1000px;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 0 20px;
    }

    .page-8k8-slot__feature-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        box-sizing: border-box;
    }

    .page-8k8-slot__feature-icon {
        width: 250px; /* Min size 200x200 */
        height: 180px; /* Min size 200x200 */
        margin: 0 auto 20px auto;
        object-fit: cover;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .page-8k8-slot__feature-title {
        font-size: 1.5em;
        color: #0d2a4a;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-slot__feature-description {
        color: #666;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Game Showcase */
    .page-8k8-slot__game-showcase-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
        padding: 0 20px;
    }

    .page-8k8-slot__game-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: left;
        box-sizing: border-box;
    }

    .page-8k8-slot__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        box-sizing: border-box;
    }

    .page-8k8-slot__game-card-content {
        padding: 20px;
        box-sizing: border-box;
    }

    .page-8k8-slot__game-card-title {
        font-size: 1.3em;
        color: #0d2a4a;
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-slot__game-card-description {
        color: #666;
        font-size: 0.95em;
        margin-bottom: 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-slot__game-card-button {
        background-color: #28a745; /* Green for play button */
        color: #fff;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 0.9em;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
        box-sizing: border-box;
    }

    .page-8k8-slot__game-card-button:hover {
        background-color: #218838;
    }

    /* How to Play Section */
    .page-8k8-slot__steps-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        padding: 0;
        list-style: none;
        max-width: 1000px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .page-8k8-slot__step-item {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        flex: 1 1 calc(33% - 40px); /* 3 items per row on desktop */
        min-width: 280px; /* Ensure minimum width */
        box-sizing: border-box;
    }

    .page-8k8-slot__step-number {
        font-size: 2.5em;
        color: #ffd700;
        font-weight: bold;
        margin-bottom: 15px;
        box-sizing: border-box;
    }

    .page-8k8-slot__step-title {
        font-size: 1.4em;
        color: #0d2a4a;
        margin-bottom: 10px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-slot__step-description {
        color: #666;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Promotions Section */
    .page-8k8-slot__promo-card {
        background-color: #0d2a4a;
        color: #fff;
        padding: 40px;
        border-radius: 10px;
        max-width: 800px;
        margin: 0 auto;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    .page-8k8-slot__promo-title {
        font-size: 2em;
        color: #ffd700;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-slot__promo-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* FAQ Section */
    .page-8k8-slot__faq-section {
        padding: 60px 0;
        background-color: #f0f2f5;
        box-sizing: border-box;
    }

    .page-8k8-slot__faq-list {
        max-width: 800px;
        margin: 0 auto;
        padding: 0 20px;
        list-style: none;
        box-sizing: border-box;
    }

    .page-8k8-slot__faq-item {
        background-color: #fff;
        border-radius: 8px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-8k8-slot__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        font-size: 1.2em;
        color: #0d2a4a;
        font-weight: bold;
        cursor: pointer;
        user-select: none;
        background-color: #fff;
        transition: background-color 0.3s ease;
        box-sizing: border-box;
    }

    .page-8k8-slot__faq-question:hover {
        background-color: #f5f5f5;
    }

    .page-8k8-slot__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        text-align: left;
        pointer-events: none; /* Crucial for click event on parent */
        word-wrap: break-word;
        overflow-wrap: break-word;
        box-sizing: border-box;
    }

    .page-8k8-slot__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event on parent */
        box-sizing: border-box;
    }

    .page-8k8-slot__faq-item.active .page-8k8-slot__faq-toggle {
        transform: rotate(45deg);
    }

    .page-8k8-slot__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding matches question */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        text-align: left;
        color: #555;
        box-sizing: border-box;
    }

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

    /* Call to Action Banner */
    .page-8k8-slot__cta-banner {
        background-color: #007bff; /* Blue */
        color: #fff;
        padding: 60px 20px;
        text-align: center;
        box-sizing: border-box;
    }

    .page-8k8-slot__cta-banner-title {
        font-size: 2.5em;
        margin-bottom: 20px;
        font-weight: bold;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .page-8k8-slot__cta-banner-description {
        font-size: 1.2em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-8k8-slot {
            padding-top: var(--header-offset-mobile, 80px); /* Adjust for mobile header offset if needed */
        }
        .page-8k8-slot__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-slot__hero-subtitle {
            font-size: 1.2em;
        }
        .page-8k8-slot__section-title {
            font-size: 2em;
        }
        .page-8k8-slot__section-description {
            font-size: 1em;
        }
        .page-8k8-slot__features-grid,
        .page-8k8-slot__game-showcase-grid {
            grid-template-columns: 1fr;
            padding: 0 15px;
        }
        .page-8k8-slot__feature-item,
        .page-8k8-slot__game-card,
        .page-8k8-slot__step-item {
            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 */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-8k8-slot__feature-icon {
            width: 100% !important;
            height: auto !important;
            min-height: 200px !important; /* Ensure min height for image */
            object-fit: cover !important;
        }
        .page-8k8-slot__game-card-image {
            height: 180px;
        }
        .page-8k8-slot__steps-list {
            flex-direction: column;
            padding: 0 15px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-8k8-slot__promo-card {
            padding: 30px 20px;
        }
        .page-8k8-slot__promo-title {
            font-size: 1.6em;
        }
        .page-8k8-slot__promo-description {
            font-size: 1em;
        }
        .page-8k8-slot__faq-question {
            font-size: 1.1em;
            padding: 15px 20px;
        }
        .page-8k8-slot__faq-answer {
            padding: 15px 20px !important;
            font-size: 0.95em;
        }
        .page-8k8-slot__cta-banner-title {
            font-size: 2em;
        }
        .page-8k8-slot__cta-banner-description {
            font-size: 1em;
        }
    }

    /* Ensure images within any container are responsive on mobile */
    @media (max-width: 768px) {
        .page-8k8-slot img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-8k8-slot__container,
        .page-8k8-slot__section,
        .page-8k8-slot__hero-content,
        .page-8k8-slot__features-grid,
        .page-8k8-slot__game-showcase-grid,
        .page-8k8-slot__steps-list,
        .page-8k8-slot__faq-list,
        .page-8k8-slot__promo-card,
        .page-8k8-slot__cta-banner {
            padding-left: 15px !important;
            padding-right: 15px !important;
            box-sizing: border-box !important;
        }
        .page-8k8-slot__faq-item,
        .page-8k8-slot__feature-item,
        .page-8k8-slot__game-card,
        .page-8k8-slot__step-item {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
    }
  