
    /* CSS for page-8k8-5 */
    :root {
        --page-8k8-5-primary-color: #FFD700; /* Gold */
        --page-8k8-5-secondary-color: #000000; /* Black */
        --page-8k8-5-accent-color: #FF4500; /* OrangeRed */
        --page-8k8-5-text-color: #FFFFFF; /* White */
        --page-8k8-5-bg-dark: #1a1a1a; /* Dark Grey */
        --page-8k8-5-bg-light: #2c2c2c; /* Lighter Dark Grey */
    }

    .page-8k8-5 {
        font-family: 'Arial', sans-serif;
        color: var(--page-8k8-5-text-color);
        background-color: var(--page-8k8-5-bg-dark);
        line-height: 1.6;
        overflow-x: hidden;
    }

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

    .page-8k8-5__section {
        padding: 60px 0;
        text-align: center;
        position: relative;
    }

    .page-8k8-5__section--dark {
        background-color: var(--page-8k8-5-bg-light);
    }

    .page-8k8-5__hero-section {
        background: var(--page-8k8-5-bg-dark);
        padding: 10px 0 80px 0; /* Minimal top padding, rely on body padding for header offset */
        text-align: center;
        position: relative;
        overflow: hidden;
    }

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

    .page-8k8-5__hero-content {
        position: relative;
        z-index: 1;
        padding: 80px 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-5__hero-title {
        font-size: 3.5em;
        color: var(--page-8k8-5-primary-color);
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .page-8k8-5__hero-subtitle {
        font-size: 1.5em;
        color: var(--page-8k8-5-text-color);
        margin-bottom: 40px;
    }

    .page-8k8-5__button-group {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

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

    .page-8k8-5__button:hover {
        background-color: var(--page-8k8-5-accent-color);
        transform: translateY(-3px);
    }

    .page-8k8-5__heading {
        font-size: 2.5em;
        color: var(--page-8k8-5-primary-color);
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

    .page-8k8-5__heading::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--page-8k8-5-accent-color);
        border-radius: 2px;
    }

    .page-8k8-5__text-content {
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 40px auto;
        color: rgba(255, 255, 255, 0.8);
    }

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

    .page-8k8-5__feature-card {
        background-color: var(--page-8k8-5-bg-dark);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(255, 215, 0, 0.2);
    }

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

    .page-8k8-5__feature-icon {
        width: 250px; /* Min size 200x200 enforced */
        height: 250px; /* Min size 200x200 enforced */
        margin-bottom: 20px;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

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

    .page-8k8-5__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-8k8-5__game-card {
        background-color: var(--page-8k8-5-bg-dark);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(255, 215, 0, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

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

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

    .page-8k8-5__game-info {
        padding: 20px;
        text-align: center;
    }

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

    .page-8k8-5__game-description {
        font-size: 0.95em;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 20px;
    }

    .page-8k8-5__promo-banner {
        background-color: var(--page-8k8-5-accent-color);
        padding: 50px 20px;
        border-radius: 15px;
        margin-top: 60px;
        text-align: center;
        box-shadow: 0 5px 20px rgba(255, 69, 0, 0.4);
    }

    .page-8k8-5__promo-title {
        font-size: 2.2em;
        color: var(--page-8k8-5-text-color);
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .page-8k8-5__promo-description {
        font-size: 1.2em;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 30px;
    }

    .page-8k8-5__faq-list {
        margin-top: 40px;
        text-align: left;
    }

    .page-8k8-5__faq-item {
        background-color: var(--page-8k8-5-bg-light);
        margin-bottom: 15px;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid rgba(255, 215, 0, 0.1);
    }

    .page-8k8-5__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: var(--page-8k8-5-bg-dark);
        color: var(--page-8k8-5-primary-color);
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-8k8-5__faq-question:hover {
        background-color: #3a3a3a;
    }

    .page-8k8-5__faq-question h3 {
        margin: 0;
        color: inherit;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-5__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-5__faq-item.active .page-8k8-5__faq-toggle {
        transform: rotate(45deg); /* Changes + to x or - */
    }

    .page-8k8-5__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px; /* Initial padding */
        opacity: 0;
        color: rgba(255, 255, 255, 0.8);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        box-sizing: border-box;
    }

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

    .page-8k8-5__payment-providers,
    .page-8k8-5__game-providers {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .page-8k8-5__payment-logo,
    .page-8k8-5__provider-logo {
        width: 180px; /* Min size 200x200 enforced for images */
        height: 120px;
        max-width: 100%;
        object-fit: contain;
        background-color: #ffffff; /* To make logos visible if they are transparent */
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        box-sizing: border-box;
    }

    /* Floating Register/Login buttons */
    .page-8k8-5__floating-buttons {
        position: fixed;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-8k8-5__floating-button {
        background-color: var(--page-8k8-5-accent-color);
        color: var(--page-8k8-5-text-color);
        padding: 12px 20px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 0.95em;
        transition: background-color 0.3s ease, transform 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        border: none;
        cursor: pointer;
        text-align: center;
        min-width: 100px;
    }

    .page-8k8-5__floating-button:hover {
        background-color: var(--page-8k8-5-primary-color);
        color: var(--page-8k8-5-secondary-color);
        transform: scale(1.05);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-8k8-5__hero-title {
            font-size: 2.5em;
        }

        .page-8k8-5__hero-subtitle {
            font-size: 1.2em;
        }

        .page-8k8-5__button-group {
            flex-direction: column;
            gap: 15px;
        }

        .page-8k8-5__heading {
            font-size: 2em;
        }

        .page-8k8-5__text-content {
            font-size: 1em;
        }

        .page-8k8-5__features-grid,
        .page-8k8-5__game-categories {
            grid-template-columns: 1fr;
        }

        .page-8k8-5__promo-title {
            font-size: 1.8em;
        }

        .page-8k8-5__promo-description {
            font-size: 1em;
        }

        .page-8k8-5__faq-question {
            font-size: 1.1em;
            padding: 15px 20px;
        }

        .page-8k8-5__faq-answer {
            padding: 0 20px;
        }

        .page-8k8-5__faq-item.active .page-8k8-5__faq-answer {
            padding: 15px 20px !important;
        }

        .page-8k8-5__floating-buttons {
            right: 10px;
            gap: 8px;
        }
        .page-8k8-5__floating-button {
            padding: 10px 15px;
            font-size: 0.9em;
            min-width: 90px;
        }

        /* List item responsive requirements */
        .page-8k8-5__features-grid .page-8k8-5__feature-card,
        .page-8k8-5__game-categories .page-8k8-5__game-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px !important; /* Ensure content doesn't touch edges */
            padding-right: 15px !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }

        .page-8k8-5__features-grid,
        .page-8k8-5__game-categories {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-8k8-5__feature-card p,
        .page-8k8-5__game-card p {
            word-break: break-word !important;
        }

        .page-8k8-5__payment-logo,
        .page-8k8-5__provider-logo {
            width: 120px;
            height: 80px;
            padding: 8px;
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-8k8-5__payment-providers,
        .page-8k8-5__game-providers {
            gap: 15px;
        }

        .page-8k8-5__game-image {
            height: 180px;
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-8k8-5__hero-background {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-5__hero-title {
            font-size: 2em;
        }

        .page-8k8-5__hero-subtitle {
            font-size: 1em;
        }

        .page-8k8-5__button {
            padding: 12px 25px;
            font-size: 1em;
        }

        .page-8k8-5__heading {
            font-size: 1.8em;
        }

        .page-8k8-5__promo-title {
            font-size: 1.5em;
        }

        .page-8k8-5__promo-description {
            font-size: 0.9em;
        }
    }
  