
    :root {
        --page-8-ki-primary-color: #e44d26; /* Orange-Red, common in betting sites */
        --page-8-ki-secondary-color: #007bff; /* Blue */
        --page-8-ki-dark-bg: #1a1a1a; /* Dark background */
        --page-8-ki-light-text: #f0f0f0; /* Light text on dark bg */
        --page-8-ki-medium-gray: #333; /* Medium dark for sections */
        --page-8-ki-light-bg: #f8f9fa; /* Light background */
        --page-8-ki-dark-text: #212529; /* Dark text on light bg */
        --page-8-ki-border-color: #444;
    }

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

    /* General Section Styling */
    .page-8-ki__section {
        padding: 40px 20px;
        text-align: center;
        margin-bottom: 20px;
    }
    .page-8-ki__section--dark {
        background-color: var(--page-8-ki-dark-bg);
        color: var(--page-8-ki-light-text);
    }
    .page-8-ki__section--light {
        background-color: var(--page-8-ki-medium-gray);
        color: var(--page-8-ki-light-text);
    }
    .page-8-ki__section-title {
        font-size: 2.5em;
        color: var(--page-8-ki-primary-color);
        margin-bottom: 20px;
        font-weight: bold;
        text-transform: uppercase;
    }
    .page-8-ki__section-subtitle {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: var(--page-8-ki-light-text);
    }

    /* Hero Section */
    .page-8-ki__hero-section {
        position: relative;
        padding: 10px 20px 80px 20px; /* Small top padding, more bottom for buttons */
        min-height: 500px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        background-color: var(--page-8-ki-dark-bg);
        overflow: hidden;
    }
    .page-8-ki__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 0.4;
    }
    .page-8-ki__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        width: 100%;
        padding: 20px;
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 10px;
    }
    .page-8-ki__hero-title {
        font-size: 3em;
        color: var(--page-8-ki-primary-color);
        margin-bottom: 15px;
        font-weight: 900;
        line-height: 1.2;
    }
    .page-8-ki__hero-description {
        font-size: 1.3em;
        color: var(--page-8-ki-light-text);
        margin-bottom: 30px;
    }
    .page-8-ki__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }
    .page-8-ki__hero-button {
        display: inline-block;
        padding: 15px 30px;
        background-color: var(--page-8-ki-primary-color);
        color: #fff;
        text-decoration: none;
        border-radius: 30px;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    .page-8-ki__hero-button--secondary {
        background-color: var(--page-8-ki-secondary-color);
    }
    .page-8-ki__hero-button:hover {
        background-color: #f76c49;
        transform: translateY(-3px);
    }
    .page-8-ki__hero-button--secondary:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }

    /* Floating Buttons */
    .page-8-ki__fixed-buttons {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        z-index: 1000;
        width: calc(100% - 40px);
        max-width: 400px;
    }
    .page-8-ki__button {
        flex: 1;
        padding: 12px 15px;
        border-radius: 25px;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        color: #fff;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        font-size: 1.1em;
        white-space: nowrap; /* Prevent text wrapping */
    }
    .page-8-ki__button--register {
        background-color: var(--page-8-ki-primary-color);
    }
    .page-8-ki__button--register:hover {
        background-color: #f76c49;
        transform: translateY(-2px);
    }
    .page-8-ki__button--login {
        background-color: var(--page-8-ki-secondary-color);
    }
    .page-8-ki__button--login:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    /* Product Display */
    .page-8-ki__product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .page-8-ki__product-card {
        background-color: var(--page-8-ki-medium-gray);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: left;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
    }
    .page-8-ki__product-card:hover {
        transform: translateY(-5px);
    }
    .page-8-ki__product-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }
    .page-8-ki__product-content {
        padding: 20px;
        flex-grow: 1;
    }
    .page-8-ki__product-title {
        font-size: 1.5em;
        color: var(--page-8-ki-primary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }
    .page-8-ki__product-description {
        font-size: 1em;
        color: var(--page-8-ki-light-text);
    }

    /* Promotions Section */
    .page-8-ki__promo-list {
        list-style: none;
        padding: 0;
        margin: 0 auto;
        max-width: 900px;
    }
    .page-8-ki__promo-item {
        background-color: var(--page-8-ki-medium-gray);
        margin-bottom: 15px;
        padding: 20px;
        border-radius: 8px;
        text-align: left;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }
    .page-8-ki__promo-item-title {
        font-size: 1.4em;
        color: var(--page-8-ki-primary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }
    .page-8-ki__promo-item-description {
        font-size: 1em;
        color: var(--page-8-ki-light-text);
    }

    /* Why Choose Section */
    .page-8-ki__advantages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .page-8-ki__advantage-card {
        background-color: var(--page-8-ki-medium-gray);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-8-ki__advantage-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
    }
    .page-8-ki__advantage-title {
        font-size: 1.6em;
        color: var(--page-8-ki-primary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }
    .page-8-ki__advantage-description {
        font-size: 1em;
        color: var(--page-8-ki-light-text);
    }

    /* FAQ Section */
    .page-8-ki__faq-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .page-8-ki__faq-item {
        background-color: var(--page-8-ki-medium-gray);
        margin-bottom: 10px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    .page-8-ki__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: #2a2a2a;
        color: var(--page-8-ki-light-text);
        font-size: 1.1em;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }
    .page-8-ki__faq-question:hover {
        background-color: #3a3a3a;
    }
    .page-8-ki__faq-question h3 {
        margin: 0;
        padding: 0;
        font-size: 1.1em;
        color: var(--page-8-ki-primary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
        flex-grow: 1;
        text-align: left;
    }
    .page-8-ki__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        margin-left: 10px;
        pointer-events: none; /* Prevent toggle from blocking click event */
        color: var(--page-8-ki-primary-color);
    }
    .page-8-ki__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px; /* Initial padding */
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: var(--page-8-ki-light-text);
        text-align: left;
    }
    .page-8-ki__faq-item.active .page-8-ki__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px !important; /* Target padding */
        opacity: 1;
    }
    .page-8-ki__faq-item.active .page-8-ki__faq-question {
        background-color: #3a3a3a;
    }

    /* Call to Action Section */
    .page-8-ki__cta-section {
        background-color: var(--page-8-ki-primary-color);
        color: #fff;
        padding: 50px 20px;
    }
    .page-8-ki__cta-title {
        font-size: 2.5em;
        margin-bottom: 20px;
        font-weight: bold;
    }
    .page-8-ki__cta-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-8-ki__cta-button {
        display: inline-block;
        padding: 15px 40px;
        background-color: #fff;
        color: var(--page-8-ki-primary-color);
        text-decoration: none;
        border-radius: 30px;
        font-weight: bold;
        font-size: 1.2em;
        transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    .page-8-ki__cta-button:hover {
        background-color: #eee;
        color: #c0392b;
        transform: translateY(-3px);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-8-ki__section {
            padding: 30px 15px;
        }
        .page-8-ki__section-title {
            font-size: 2em;
        }
        .page-8-ki__section-subtitle {
            font-size: 1em;
        }

        .page-8-ki__hero-section {
            min-height: 400px;
            padding: 10px 15px 80px 15px;
        }
        .page-8-ki__hero-title {
            font-size: 2.2em;
        }
        .page-8-ki__hero-description {
            font-size: 1em;
        }
        .page-8-ki__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-8-ki__hero-button {
            width: 100%;
            padding: 12px 20px;
            font-size: 1em;
        }

        .page-8-ki__fixed-buttons {
            width: calc(100% - 30px); /* Adjust for 15px padding on each side */
            gap: 10px;
            bottom: 15px;
        }
        .page-8-ki__button {
            padding: 10px 12px;
            font-size: 0.95em;
        }

        .page-8-ki__product-grid {
            grid-template-columns: 1fr;
            padding: 0 15px;
        }
        .page-8-ki__product-image {
            height: 180px;
        }
        .page-8-ki__product-title {
            font-size: 1.3em;
        }

        .page-8-ki__promo-item {
            padding: 15px;
        }
        .page-8-ki__promo-item-title {
            font-size: 1.2em;
        }
        .page-8-ki__promo-item-description {
            font-size: 0.95em;
        }

        .page-8-ki__advantages-grid {
            grid-template-columns: 1fr;
            padding: 0 15px;
        }
        .page-8-ki__advantage-card {
            padding: 25px;
        }
        .page-8-ki__advantage-icon {
            width: 80px;
            height: 80px;
        }
        .page-8-ki__advantage-title {
            font-size: 1.4em;
        }

        .page-8-ki__faq-container {
            padding: 0 15px;
        }
        .page-8-ki__faq-question {
            padding: 12px 15px;
            font-size: 1em;
        }
        .page-8-ki__faq-question h3 {
            font-size: 1em;
        }
        .page-8-ki__faq-toggle {
            font-size: 1.3em;
        }
        .page-8-ki__faq-answer {
            padding: 0 15px;
        }
        .page-8-ki__faq-item.active .page-8-ki__faq-answer {
            padding: 15px !important;
        }

        .page-8-ki__cta-title {
            font-size: 2em;
        }
        .page-8-ki__cta-description {
            font-size: 1em;
        }
        .page-8-ki__cta-button {
            padding: 12px 30px;
            font-size: 1.1em;
        }
    }

    /* Ensure all list items and images are responsive and break words */
    .page-8-ki ul,
    .page-8-ki ol {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .page-8-ki ul li,
    .page-8-ki ol li {
        box-sizing: border-box;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    .page-8-ki img {
        max-width: 100%;
        height: auto;
        display: block;
        box-sizing: border-box;
    }

    @media (max-width: 768px) {
        .page-8-ki ul,
        .page-8-ki ol {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 15px !important; /* Adjust padding as needed for overall layout */
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }
        .page-8-ki ul li,
        .page-8-ki ol li {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 0 !important; /* Ensure no extra padding from list-style */
            padding-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        .page-8-ki img {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-8-ki__product-card,
        .page-8-ki__advantage-card {
            width: 100% !important;
            max-width: 100% !important;
            margin: 0 auto 20px auto !important;
            box-sizing: border-box !important;
        }
    }
  