
        :root {
            --page-8k8-5__primary-color: #FFD700; /* Gold */
            --page-8k8-5__secondary-color: #FFFFFF; /* White */
            --page-8k8-5__background-color: #1a1a1a; /* Dark Grey */
            --page-8k8-5__dark-text-color: #333333; /* Dark text for light backgrounds */
            --page-8k8-5__light-text-color: #FFFFFF; /* Light text for dark backgrounds */
            --page-8k8-5__accent-color: #FF4500; /* Orange-Red for highlights */
            --page-8k8-5__border-color: #333333; /* Border color */
        }

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

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

        .page-8k8-5__section-title {
            font-size: 2.5em;
            color: var(--page-8k8-5__primary-color);
            text-align: center;
            margin-bottom: 20px;
            padding-top: 40px;
            font-weight: bold;
        }

        .page-8k8-5__section-description {
            font-size: 1.1em;
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: var(--page-8k8-5__secondary-color);
        }

        /* Hero Section */
        .page-8k8-5__hero-section {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-height: 60vh;
            padding: 10px 0 60px; /* 10px top padding for decorative spacing below header */
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a1a, #333333);
        }

        .page-8k8-5__hero-image-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .page-8k8-5__hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: brightness(0.4) grayscale(0.2); /* Darken and slightly desaturate image for text readability */
            max-width: 100%; /* Ensure responsiveness */
            height: auto; /* Ensure responsiveness */
        }

        .page-8k8-5__hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 20px;
            background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
            border-radius: 10px;
        }

        .page-8k8-5__hero-title {
            font-size: 3.5em;
            color: var(--page-8k8-5__primary-color);
            margin-bottom: 15px;
            font-weight: bold;
            line-height: 1.2;
        }

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

        .page-8k8-5__hero-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .page-8k8-5__hero-button {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-sizing: border-box;
            word-wrap: break-word; /* Ensure text wraps */
        }

        .page-8k8-5__hero-button--primary {
            background-color: var(--page-8k8-5__primary-color);
            color: var(--page-8k8-5__dark-text-color);
            border: 2px solid var(--page-8k8-5__primary-color);
        }

        .page-8k8-5__hero-button--primary:hover {
            background-color: var(--page-8k8-5__accent-color);
            border-color: var(--page-8k8-5__accent-color);
            transform: translateY(-3px);
        }

        .page-8k8-5__hero-button--secondary {
            background-color: transparent;
            color: var(--page-8k8-5__secondary-color);
            border: 2px solid var(--page-8k8-5__secondary-color);
        }

        .page-8k8-5__hero-button--secondary:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        /* About Section */
        .page-8k8-5__about-section {
            padding: 60px 0;
            background-color: #222222;
        }

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

        .page-8k8-5__feature-item {
            background-color: #2c2c2c;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            box-sizing: border-box; /* Crucial for responsive lists */
        }

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

        .page-8k8-5__feature-icon {
            width: 120px;
            height: 120px;
            margin-bottom: 20px;
            object-fit: contain;
            max-width: 100%; /* Ensure responsiveness */
            height: auto; /* Ensure responsiveness */
        }

        .page-8k8-5__feature-title {
            font-size: 1.8em;
            color: var(--page-8k8-5__primary-color);
            margin-bottom: 10px;
            font-weight: bold;
        }

        .page-8k8-5__feature-text {
            font-size: 1em;
            color: var(--page-8k8-5__secondary-color);
        }

        /* Games Section */
        .page-8k8-5__games-section {
            padding: 60px 0;
            background-color: var(--page-8k8-5__background-color);
        }

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

        .page-8k8-5__game-card {
            background-color: #2c2c2c;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            box-sizing: border-box; /* Crucial for responsive lists */
        }

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

        .page-8k8-5__game-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            max-width: 100%; /* Ensure responsiveness */
            height: auto; /* Ensure responsiveness */
        }

        .page-8k8-5__game-title {
            font-size: 1.5em;
            color: var(--page-8k8-5__primary-color);
            padding: 15px 20px 5px;
            font-weight: bold;
        }

        .page-8k8-5__game-provider {
            font-size: 0.9em;
            color: #aaaaaa;
            padding: 0 20px 15px;
        }

        .page-8k8-5__view-all-button-wrapper {
            text-align: center;
            margin-top: 50px;
        }

        .page-8k8-5__view-all-button {
            background-color: var(--page-8k8-5__primary-color);
            color: var(--page-8k8-5__dark-text-color);
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-size: 1.1em;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
            box-sizing: border-box;
            word-wrap: break-word; /* Ensure text wraps */
        }

        .page-8k8-5__view-all-button:hover {
            background-color: var(--page-8k8-5__accent-color);
            transform: translateY(-3px);
        }

        /* Promotions Section */
        .page-8k8-5__promotions-section {
            padding: 60px 0;
            background-color: #222222;
        }

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

        .page-8k8-5__promo-card {
            background-color: #2c2c2c;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease;
            box-sizing: border-box; /* Crucial for responsive lists */
        }

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

        .page-8k8-5__promo-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            max-width: 100%; /* Ensure responsiveness */
            height: auto; /* Ensure responsiveness */
        }

        .page-8k8-5__promo-title {
            font-size: 1.6em;
            color: var(--page-8k8-5__primary-color);
            padding: 15px 20px 5px;
            font-weight: bold;
        }

        .page-8k8-5__promo-text {
            font-size: 1em;
            color: var(--page-8k8-5__secondary-color);
            padding: 0 20px 20px;
        }

        /* Payments & Security Section */
        .page-8k8-5__payments-security-section {
            padding: 60px 0;
            background-color: var(--page-8k8-5__background-color);
        }

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

        .page-8k8-5__info-block {
            background-color: #2c2c2c;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            box-sizing: border-box; /* Crucial for responsive lists */
        }

        .page-8k8-5__info-title {
            font-size: 1.8em;
            color: var(--page-8k8-5__primary-color);
            margin-bottom: 15px;
            font-weight: bold;
            text-align: center;
        }

        .page-8k8-5__info-text {
            font-size: 1em;
            color: var(--page-8k8-5__secondary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .page-8k8-5__payment-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 10px;
            text-align: center;
        }

        .page-8k8-5__payment-item {
            background-color: #3a3a3a;
            padding: 10px 15px;
            border-radius: 5px;
            font-size: 0.95em;
            color: var(--page-8k8-5__secondary-color);
            box-sizing: border-box; /* Crucial for responsive lists */
            word-wrap: break-word; /* Ensure text wraps */
        }

        .page-8k8-5__social-links {
            text-align: center;
            margin-top: 20px;
        }

        .page-8k8-5__social-text {
            display: block;
            margin-bottom: 15px;
            font-size: 1.1em;
            color: var(--page-8k8-5__primary-color);
            font-weight: bold;
        }

        .page-8k8-5__social-icons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .page-8k8-5__social-icon {
            width: 48px; /* Placeholder is 200x200, this is just display size */
            height: 48px;
            object-fit: contain;
            transition: transform 0.3s ease;
            max-width: 100%; /* Ensure responsiveness */
            height: auto; /* Ensure responsiveness */
        }
        .page-8k8-5__social-icon:hover {
            transform: translateY(-3px) scale(1.1);
        }

        /* FAQ Section */
        .page-8k8-5__faq-section {
            padding: 60px 0;
            background-color: #222222;
        }

        .page-8k8-5__faq-list {
            max-width: 900px;
            margin: 40px auto 0;
        }

        .page-8k8-5__faq-item {
            background-color: #2c2c2c;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            box-sizing: border-box; /* Crucial for responsive lists */
        }

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

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

        .page-8k8-5__faq-question h3 {
            margin: 0;
            font-size: 1.2em;
            color: var(--page-8k8-5__primary-color);
            pointer-events: none; /* Prevents text selection from interfering with click */
            flex-grow: 1; /* Allow h3 to take available space */
            word-wrap: break-word; /* Ensure text wraps */
            overflow-wrap: break-word;
        }

        .page-8k8-5__faq-toggle {
            font-size: 1.8em;
            line-height: 1;
            margin-left: 15px;
            color: var(--page-8k8-5__primary-color);
            transition: transform 0.3s ease;
            pointer-events: none; /* Prevents toggle icon from interfering with click */
        }

        .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;
            background-color: #2c2c2c;
            color: var(--page-8k8-5__secondary-color);
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            opacity: 0;
        }

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

        .page-8k8-5__faq-answer p {
            margin: 0;
            padding-bottom: 5px;
            font-size: 1em;
            word-wrap: break-word; /* Ensure text wraps */
            overflow-wrap: break-word;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .page-8k8-5__hero-title {
                font-size: 2.8em;
            }
            .page-8k8-5__hero-subtitle {
                font-size: 1.3em;
            }
            .page-8k8-5__section-title {
                font-size: 2em;
            }
            .page-8k8-5__feature-grid,
            .page-8k8-5__game-grid,
            .page-8k8-5__promo-grid,
            .page-8k8-5__info-grid {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .page-8k8-5__hero-section {
                min-height: 70vh;
                padding-bottom: 40px;
            }
            .page-8k8-5__hero-title {
                font-size: 2.2em;
            }
            .page-8k8-5__hero-subtitle {
                font-size: 1.1em;
            }
            .page-8k8-5__hero-cta-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .page-8k8-5__hero-button {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            .page-8k8-5__section-title {
                font-size: 1.8em;
                padding-top: 20px;
            }
            .page-8k8-5__section-description {
                font-size: 1em;
            }

            /* Responsive list items */
            .page-8k8-5__feature-grid,
            .page-8k8-5__game-grid,
            .page-8k8-5__promo-grid,
            .page-8k8-5__info-grid {
                grid-template-columns: 1fr; /* Stack items */
                gap: 20px;
            }

            .page-8k8-5__feature-item,
            .page-8k8-5__game-card,
            .page-8k8-5__promo-card,
            .page-8k8-5__info-block {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
                padding: 20px !important;
            }

            .page-8k8-5__payment-list {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                padding: 0 !important;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
            .page-8k8-5__payment-item {
                 padding: 8px 10px !important;
                 word-wrap: break-word !important;
                 overflow-wrap: break-word !important;
                 font-size: 0.9em;
            }

            .page-8k8-5__social-icons {
                gap: 10px;
            }
            .page-8k8-5__social-icon {
                width: 40px; /* Placeholder is 200x200, this is just display size */
                height: 40px;
            }

            .page-8k8-5__faq-question {
                padding: 15px 20px;
                font-size: 1.1em;
            }
            .page-8k8-5__faq-question h3 {
                font-size: 1.1em;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
            }
            .page-8k8-5__faq-toggle {
                font-size: 1.5em;
            }
            .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__faq-answer p {
                font-size: 0.95em;
                word-wrap: break-word !important;
                overflow-wrap: break-word !important;
            }

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

        @media (max-width: 480px) {
            .page-8k8-5__hero-title {
                font-size: 1.8em;
            }
            .page-8k8-5__hero-subtitle {
                font-size: 0.9em;
            }
            .page-8k8-5__hero-button {
                padding: 12px 20px;
                font-size: 1em;
            }
            .page-8k8-5__section-title {
                font-size: 1.5em;
            }
            .page-8k8-5__payment-list {
                grid-template-columns: repeat(2, 1fr); /* 2 columns for very small screens */
            }
        }
    