
    :root {
        --page-8k8-6-primary-color: #f7b500; /* Gold-like accent */
        --page-8k8-6-dark-bg: #1a1a1a;
        --page-8k8-6-medium-bg: #2a2a2a;
        --page-8k8-6-light-text: #e0e0e0;
        --page-8k8-6-gray-text: #b0b0b0;
    }

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

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

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

    .page-8k8-6__hero-section {
        position: relative;
        padding-top: 10px; /* Minimal padding-top, assuming body has header offset */
        padding-bottom: 80px;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 60vh;
        overflow: hidden;
        text-align: center;
    }

    .page-8k8-6__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -1;
        opacity: 0.4;
    }

    .page-8k8-6__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        padding: 20px;
    }

    .page-8k8-6__hero-title {
        font-size: 3.5em;
        color: var(--page-8k8-6-primary-color);
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
        font-weight: bold;
    }

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

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

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

    .page-8k8-6__button:hover {
        background-color: #ffc107;
        transform: translateY(-2px);
    }

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

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

    .page-8k8-6__text-content {
        font-size: 1.1em;
        color: var(--page-8k8-6-gray-text);
        margin-bottom: 30px;
    }

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

    .page-8k8-6__feature-item {
        background-color: #333;
        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; /* Ensure padding is included in width */
    }

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

    .page-8k8-6__feature-icon {
        margin-bottom: 20px;
        width: 120px;
        height: 120px;
        object-fit: contain;
        border-radius: 8px;
    }

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

    .page-8k8-6__feature-description {
        color: var(--page-8k8-6-light-text);
        font-size: 1em;
    }

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

    .page-8k8-6__promo-card {
        background-color: #333;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        box-sizing: border-box; /* Ensure padding is included in width */
    }

    .page-8k8-6__promo-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .page-8k8-6__promo-content {
        padding: 25px;
    }

    .page-8k8-6__promo-title {
        font-size: 1.4em;
        color: var(--page-8k8-6-primary-color);
        margin-bottom: 10px;
    }

    .page-8k8-6__promo-description {
        color: var(--page-8k8-6-light-text);
        font-size: 0.95em;
        margin-bottom: 20px;
    }

    .page-8k8-6__faq-section {
        max-width: 900px;
        margin: 40px auto;
        padding: 0 15px;
    }

    .page-8k8-6__faq-item {
        background-color: #2a2a2a;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .page-8k8-6__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        background-color: #333;
        color: #fff;
        cursor: pointer;
        font-size: 1.1em;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-8k8-6__faq-question:hover {
        background-color: #444;
    }

    .page-8k8-6__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: #fff;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-6__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-6__faq-item.active .page-8k8-6__faq-toggle {
        transform: rotate(45deg);
    }

    .page-8k8-6__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        background-color: #2a2a2a;
        color: #ccc;
        line-height: 1.6;
        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-6__faq-item.active .page-8k8-6__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-8k8-6__game-providers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
        justify-items: center;
    }

    .page-8k8-6__provider-logo {
        width: 150px;
        height: 80px;
        object-fit: contain;
        background-color: #333;
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-6__payment-methods-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        margin-top: 40px;
        justify-items: center;
    }

    .page-8k8-6__payment-logo {
        width: 120px;
        height: 60px;
        object-fit: contain;
        background-color: #333;
        padding: 8px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .page-8k8-6__hero-title {
            font-size: 2.8em;
        }
        .page-8k8-6__hero-subtitle {
            font-size: 1.3em;
        }
        .page-8k8-6__heading {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-6__hero-section {
            min-height: 50vh;
            padding-bottom: 60px;
        }
        .page-8k8-6__hero-title {
            font-size: 2.2em;
        }
        .page-8k8-6__hero-subtitle {
            font-size: 1.1em;
        }
        .page-8k8-6__section {
            padding: 40px 15px;
        }
        .page-8k8-6__heading {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
        .page-8k8-6__text-content {
            font-size: 1em;
        }
        .page-8k8-6__button-group {
            flex-direction: column;
            gap: 15px;
        }
        .page-8k8-6__button {
            width: 100%;
            padding: 12px 25px;
            font-size: 1em;
        }
        .page-8k8-6__features-grid,
        .page-8k8-6__promotions-grid,
        .page-8k8-6__game-providers-grid,
        .page-8k8-6__payment-methods-grid {
            grid-template-columns: 1fr; /* Stack items on mobile */
            gap: 20px;
        }
        .page-8k8-6__feature-item,
        .page-8k8-6__promo-card {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-8k8-6__faq-section {
            margin: 20px auto;
            padding: 0 10px;
        }
        .page-8k8-6__faq-question {
            padding: 15px 20px;
            font-size: 1em;
        }
        .page-8k8-6__faq-question h3 {
            font-size: 1em;
        }
        .page-8k8-6__faq-answer {
            padding: 0 20px;
            font-size: 0.95em;
        }
        .page-8k8-6__faq-item.active .page-8k8-6__faq-answer {
            padding: 15px 20px !important;
        }
        .page-8k8-6__feature-icon,
        .page-8k8-6__provider-logo,
        .page-8k8-6__payment-logo {
            max-width: 100%;
            height: auto;
            object-fit: contain; /* Ensure images scale down */
        }
        .page-8k8-6__promo-image {
            max-width: 100%;
            height: auto;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-6__hero-title {
            font-size: 1.8em;
        }
        .page-8k8-6__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-6__heading {
            font-size: 1.5em;
        }
        .page-8k8-6__button {
            padding: 10px 20px;
            font-size: 0.9em;
        }
    }
  