
    .page-k-o-nh-c-i-5m {
        font-family: 'Arial', sans-serif;
        color: #f0f0f0;
        background-color: #1a1a2e; /* Dark background */
        line-height: 1.6;
        padding-bottom: 20px; /* General padding to avoid content touching footer */
    }

    .page-k-o-nh-c-i-5m__section-title {
        font-size: 2.2em;
        color: #e94560; /* Accent color */
        text-align: center;
        margin-bottom: 40px;
        padding-top: 20px;
        font-weight: bold;
    }

    .page-k-o-nh-c-i-5m__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px 20px 40px; /* Small top padding, relying on body for header offset */
        background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
        overflow: hidden;
        position: relative;
    }

    .page-k-o-nh-c-i-5m__hero-content {
        max-width: 900px;
        z-index: 1;
    }

    .page-k-o-nh-c-i-5m__hero-title {
        font-size: 2.8em;
        color: #ffffff;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .page-k-o-nh-c-i-5m__hero-description {
        font-size: 1.1em;
        color: #cccccc;
        margin-bottom: 30px;
    }

    .page-k-o-nh-c-i-5m__hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 30px;
    }

    .page-k-o-nh-c-i-5m__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        border: none;
        font-size: 1em;
    }

    .page-k-o-nh-c-i-5m__button--primary {
        background-color: #e94560;
        color: #ffffff;
    }

    .page-k-o-nh-c-i-5m__button--primary:hover {
        background-color: #d13a52;
        transform: translateY(-2px);
    }

    .page-k-o-nh-c-i-5m__button--secondary {
        background-color: transparent;
        color: #e94560;
        border: 2px solid #e94560;
    }

    .page-k-o-nh-c-i-5m__button--secondary:hover {
        background-color: #e94560;
        color: #ffffff;
        transform: translateY(-2px);
    }

    .page-k-o-nh-c-i-5m__button--small {
        padding: 8px 18px;
        font-size: 0.9em;
        border-radius: 5px;
    }

    .page-k-o-nh-c-i-5m__button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-k-o-nh-c-i-5m__hero-image-wrapper {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
        margin-top: 30px;
    }

    .page-k-o-nh-c-i-5m__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

    .page-k-o-nh-c-i-5m__features-section,
    .page-k-o-nh-c-i-5m__games-section,
    .page-k-o-nh-c-i-5m__promotions-section,
    .page-k-o-nh-c-i-5m__faq-section,
    .page-k-o-nh-c-i-5m__cta-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-k-o-nh-c-i-5m__features-grid,
    .page-k-o-nh-c-i-5m__games-grid,
    .page-k-o-nh-c-i-5m__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        justify-content: center;
    }

    .page-k-o-nh-c-i-5m__feature-item,
    .page-k-o-nh-c-i-5m__game-card,
    .page-k-o-nh-c-i-5m__promo-card {
        background-color: #2c2c4e;
        border-radius: 10px;
        padding: 25px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box; /* Ensure padding/border included in width */
    }

    .page-k-o-nh-c-i-5m__feature-item:hover,
    .page-k-o-nh-c-i-5m__game-card:hover,
    .page-k-o-nh-c-i-5m__promo-card:hover {
        transform: translateY(-5px);
    }

    .page-k-o-nh-c-i-5m__feature-icon {
        width: 100px;
        height: 100px;
        object-fit: contain;
        margin-bottom: 20px;
        max-width: 100%; /* Ensure responsiveness */
        height: auto;
    }

    .page-k-o-nh-c-i-5m__feature-title,
    .page-k-o-nh-c-i-5m__game-title,
    .page-k-o-nh-c-i-5m__promo-title {
        font-size: 1.4em;
        color: #e94560;
        margin-bottom: 10px;
    }

    .page-k-o-nh-c-i-5m__feature-description,
    .page-k-o-nh-c-i-5m__game-description,
    .page-k-o-nh-c-i-5m__promo-description {
        font-size: 0.95em;
        color: #b0b0b0;
        margin-bottom: 20px;
        flex-grow: 1; /* Make descriptions take available space */
    }

    .page-k-o-nh-c-i-5m__game-image,
    .page-k-o-nh-c-i-5m__promo-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        margin-bottom: 15px;
        object-fit: cover;
    }

    /* FAQ Section */
    .page-k-o-nh-c-i-5m__faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .page-k-o-nh-c-i-5m__faq-item {
        background-color: #2c2c4e;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-k-o-nh-c-i-5m__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #3f3f6c;
        cursor: pointer;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-k-o-nh-c-i-5m__faq-question:hover {
        background-color: #4a4a7d;
    }

    .page-k-o-nh-c-i-5m__faq-title {
        font-size: 1.1em;
        color: #e94560;
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-k-o-nh-c-i-5m__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffffff;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click on parent div */
    }

    .page-k-o-nh-c-i-5m__faq-item.active .page-k-o-nh-c-i-5m__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'X' or '−' */
    }

    .page-k-o-nh-c-i-5m__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #b0b0b0;
        font-size: 0.95em;
    }

    .page-k-o-nh-c-i-5m__faq-item.active .page-k-o-nh-c-i-5m__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain any content */
        padding: 20px 20px !important;
        opacity: 1;
    }

    .page-k-o-nh-c-i-5m__faq-answer p {
        margin-bottom: 15px;
    }

    .page-k-o-nh-c-i-5m__faq-answer .page-k-o-nh-c-i-5m__button {
        margin-top: 10px;
    }


    /* CTA Section */
    .page-k-o-nh-c-i-5m__cta-section {
        text-align: center;
        padding: 60px 20px;
        background-color: #0f3460;
        border-radius: 10px;
        margin-top: 40px;
    }

    .page-k-o-nh-c-i-5m__cta-title {
        font-size: 2.5em;
        color: #ffffff;
        margin-bottom: 20px;
    }

    .page-k-o-nh-c-i-5m__cta-description {
        font-size: 1.2em;
        color: #cccccc;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-k-o-nh-c-i-5m__hero-title {
            font-size: 2.5em;
        }
        .page-k-o-nh-c-i-5m__section-title {
            font-size: 2em;
        }
        .page-k-o-nh-c-i-5m__cta-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-k-o-nh-c-i-5m__hero-section {
            padding-bottom: 20px;
        }
        .page-k-o-nh-c-i-5m__hero-title {
            font-size: 2em;
        }
        .page-k-o-nh-c-i-5m__hero-description {
            font-size: 1em;
        }
        .page-k-o-nh-c-i-5m__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-k-o-nh-c-i-5m__button {
            width: 80%;
            max-width: 300px;
        }

        .page-k-o-nh-c-i-5m__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-k-o-nh-c-i-5m__features-grid,
        .page-k-o-nh-c-i-5m__games-grid,
        .page-k-o-nh-c-i-5m__promotions-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-k-o-nh-c-i-5m__feature-item,
        .page-k-o-nh-c-i-5m__game-card,
        .page-k-o-nh-c-i-5m__promo-card {
            padding: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-k-o-nh-c-i-5m__feature-description,
        .page-k-o-nh-c-i-5m__game-description,
        .page-k-o-nh-c-i-5m__promo-description,
        .page-k-o-nh-c-i-5m__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-k-o-nh-c-i-5m__faq-question {
            padding: 12px 15px;
        }
        .page-k-o-nh-c-i-5m__faq-title {
            font-size: 1em;
        }
        .page-k-o-nh-c-i-5m__faq-answer {
            padding: 0 15px;
        }
        .page-k-o-nh-c-i-5m__faq-item.active .page-k-o-nh-c-i-5m__faq-answer {
            padding: 15px 15px !important;
        }

        .page-k-o-nh-c-i-5m__cta-title {
            font-size: 1.8em;
        }
        .page-k-o-nh-c-i-5m__cta-description {
            font-size: 1em;
        }
        .page-k-o-nh-c-i-5m__cta-section {
            padding: 40px 15px;
        }
    }

    @media (max-width: 480px) {
        .page-k-o-nh-c-i-5m__hero-title {
            font-size: 1.8em;
        }
        .page-k-o-nh-c-i-5m__section-title {
            font-size: 1.6em;
        }
        .page-k-o-nh-c-i-5m__cta-title {
            font-size: 1.6em;
        }
        .page-k-o-nh-c-i-5m__button {
            width: 90%;
        }
    }
  