
    /* CSS for page-8k8-5 */
    .page-8k8-5 {
        font-family: Arial, sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f8f8f8;
        overflow-x: hidden; /* Prevent horizontal scroll */
        padding-top: var(--header-offset, 122px); /* Fallback for header offset, ensures content isn't hidden by fixed header */
    }

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

    .page-8k8-5__floating-button {
        background-color: #e0b100; /* Gold-like color for brand */
        color: #fff;
        border: none;
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-align: center;
        text-decoration: none;
        display: block;
        width: 150px; /* Fixed width for consistent look */
        box-sizing: border-box; /* Include padding in width calculation */
    }

    .page-8k8-5__floating-button:hover {
        background-color: #c9a000;
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-8k8-5__hero-section {
        position: relative;
        width: 100%;
        min-height: 450px; /* Minimum height for visual impact */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        padding: 20px; /* Small top padding for aesthetic, main offset handled by body */
        box-sizing: border-box;
        overflow: hidden;
    }

    .page-8k8-5__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        filter: brightness(0.7); /* Darken background image for text visibility */
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Maintain aspect ratio */
    }

    .page-8k8-5__hero-content {
        max-width: 900px;
        z-index: 1;
    }

    .page-8k8-5__hero-title {
        font-size: 2.5em;
        margin-bottom: 15px;
        font-weight: bold;
        color: #e0b100; /* Brand accent color */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-5__hero-description {
        font-size: 1.1em;
        margin-bottom: 30px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-5__primary-button {
        background-color: #e0b100;
        color: #fff;
        border: none;
        padding: 15px 30px;
        border-radius: 5px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease;
        display: inline-block; /* For button-like appearance */
        text-decoration: none;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-8k8-5__primary-button:hover {
        background-color: #c9a000;
    }

    /* General Section Styling */
    .page-8k8-5__section {
        padding: 40px 20px;
        margin: 0 auto;
        max-width: 1200px;
        box-sizing: border-box;
    }

    .page-8k8-5__section-title {
        font-size: 2em;
        color: #222;
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-8k8-5__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background-color: #e0b100;
    }

    .page-8k8-5__text-content {
        font-size: 1em;
        text-align: center;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Game Categories / Features Grid */
    .page-8k8-5__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-8k8-5__grid-item {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

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

    .page-8k8-5__grid-item-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency */
        object-fit: cover;
        display: block;
        max-width: 100%; /* Ensure responsiveness */
        height: auto; /* Maintain aspect ratio */
    }

    .page-8k8-5__grid-item-content {
        padding: 20px;
        flex-grow: 1;
    }

    .page-8k8-5__grid-item-title {
        font-size: 1.4em;
        color: #e0b100;
        margin-bottom: 10px;
    }

    .page-8k8-5__grid-item-description {
        font-size: 0.95em;
        color: #555;
    }

    /* Payment Methods / Game Providers Lists */
    .page-8k8-5__list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .page-8k8-5__list-item {
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px 20px;
        font-size: 1em;
        color: #444;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        transition: background-color 0.3s ease;
        box-sizing: border-box; /* Crucial for responsive list items */
        width: auto; /* Default for desktop */
        text-align: center;
    }

    .page-8k8-5__list-item:hover {
        background-color: #f0f0f0;
    }

    /* Promotions Section */
    .page-8k8-5__promo-card {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        padding: 25px;
        margin-bottom: 20px;
        text-align: center;
    }

    .page-8k8-5__promo-title {
        font-size: 1.8em;
        color: #e0b100;
        margin-bottom: 15px;
    }

    .page-8k8-5__promo-description {
        font-size: 1em;
        color: #555;
        margin-bottom: 20px;
    }

    /* FAQ Section */
    .page-8k8-5__faq-section {
        padding: 40px 20px;
        margin: 0 auto;
        max-width: 900px;
        box-sizing: border-box;
    }

    .page-8k8-5__faq-item {
        background-color: #fff;
        border: 1px solid #eee;
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .page-8k8-5__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #f9f9f9;
        border-bottom: 1px solid #eee;
        transition: background-color 0.3s ease;
        user-select: none;
    }

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

    .page-8k8-5__faq-question h3 {
        margin: 0;
        font-size: 1.15em;
        color: #333;
        flex-grow: 1;
        text-align: left;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-5__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #e0b100;
        margin-left: 15px;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
        transition: transform 0.3s ease;
    }

    .page-8k8-5__faq-item.active .page-8k8-5__faq-toggle {
        transform: rotate(45deg); /* Plus to Minus visual */
    }

    .page-8k8-5__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding, no vertical padding when closed */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #555;
        font-size: 0.95em;
        text-align: left;
    }

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

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-8k8-5__hero-section {
            min-height: 380px;
            padding-top: 10px; /* Smaller top padding on mobile */
        }
        .page-8k8-5__hero-title {
            font-size: 1.8em;
        }

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

        .page-8k8-5__section {
            padding: 30px 15px;
        }

        .page-8k8-5__section-title {
            font-size: 1.7em;
        }

        .page-8k8-5__grid {
            grid-template-columns: 1fr; /* Single column for mobile */
        }

        .page-8k8-5__grid-item-image {
            height: 180px;
        }

        .page-8k8-5__list {
            flex-direction: column; /* Stack list items */
            align-items: center;
        }

        .page-8k8-5__list-item {
            width: 100% !important; /* Force full width for list items */
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 10px 15px !important; /* Adjust padding for mobile */
            word-wrap: break-word !important; /* Ensure text wraps */
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-5__faq-question {
            padding: 12px 15px;
        }

        .page-8k8-5__faq-question h3 {
            font-size: 1em;
        }

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

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

        .page-8k8-5__floating-buttons {
            bottom: 15px;
            right: 15px;
            gap: 8px;
        }

        .page-8k8-5__floating-button {
            padding: 10px 20px;
            font-size: 1em;
            width: 120px;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-5__hero-section {
            min-height: 300px;
            padding: 15px;
        }
        .page-8k8-5__hero-title {
            font-size: 1.5em;
        }
        .page-8k8-5__hero-description {
            font-size: 0.9em;
        }
        .page-8k8-5__primary-button {
            padding: 12px 25px;
            font-size: 1em;
        }
    }
  