
    /* Page-specific CSS for www-8k8-com-login-2 */
    .page-www-8k8-com-login-2 {
        font-family: 'Arial', sans-serif;
        color: #333;
        background-color: #f5f5f5;
        line-height: 1.6;
        padding-top: 10px; /* Small top padding, relying on body padding for header offset */
    }

    .page-www-8k8-com-login-2__hero-section {
        background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
        color: #fff;
        padding: 60px 20px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 400px;
        position: relative;
        overflow: hidden;
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
        opacity: 0.3;
        max-width: 100%;
        height: auto;
    }

    .page-www-8k8-com-login-2__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
    }

    .page-www-8k8-com-login-2__hero-title {
        font-size: 3.2em;
        margin-bottom: 20px;
        color: #fff;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        font-weight: bold;
    }

    .page-www-8k8-com-login-2__hero-subtitle {
        font-size: 1.4em;
        margin-bottom: 30px;
        color: #eee;
    }

    .page-www-8k8-com-login-2__button-group {
        display: flex;
        gap: 20px;
        justify-content: center;
    }

    .page-www-8k8-com-login-2__primary-button,
    .page-www-8k8-com-login-2__secondary-button {
        display: inline-block;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        cursor: pointer;
        border: none;
        color: #fff; /* Ensure text color is white for contrast */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-www-8k8-com-login-2__primary-button {
        background-color: #ffcc00; /* Yellow */
        color: #333;
    }

    .page-www-8k8-com-login-2__primary-button:hover {
        background-color: #e6b800;
        transform: translateY(-3px);
    }

    .page-www-8k8-com-login-2__secondary-button {
        background-color: #007bff; /* Blue */
    }

    .page-www-8k8-com-login-2__secondary-button:hover {
        background-color: #0056b3;
        transform: translateY(-3px);
    }

    .page-www-8k8-com-login-2__content-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__section-title {
        font-size: 2.5em;
        color: #1a2a6c;
        text-align: center;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .page-www-8k8-com-login-2__section-subtitle {
        font-size: 1.2em;
        color: #555;
        text-align: center;
        margin-bottom: 40px;
    }

    .page-www-8k8-com-login-2__features-grid,
    .page-www-8k8-com-login-2__payment-methods-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-www-8k8-com-login-2__feature-item,
    .page-www-8k8-com-login-2__payment-method-item {
        background-color: #f9f9f9;
        padding: 25px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__feature-item:hover,
    .page-www-8k8-com-login-2__payment-method-item:hover {
        transform: translateY(-5px);
    }

    .page-www-8k8-com-login-2__feature-icon,
    .page-www-8k8-com-login-2__payment-icon {
        width: 100px; /* Enforce min width */
        height: 100px; /* Enforce min height */
        min-width: 200px; /* Minimum size requirement */
        min-height: 200px; /* Minimum size requirement */
        margin-bottom: 15px;
        object-fit: contain;
        max-width: 100%;
        height: auto;
    }

    .page-www-8k8-com-login-2__feature-title,
    .page-www-8k8-com-login-2__payment-title {
        font-size: 1.5em;
        color: #1a2a6c;
        margin-bottom: 10px;
    }

    .page-www-8k8-com-login-2__feature-description {
        font-size: 1em;
        color: #666;
    }

    .page-www-8k8-com-login-2__steps-list {
        list-style: none;
        padding: 0;
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .page-www-8k8-com-login-2__step-item {
        background-color: #e8f0fe;
        padding: 20px;
        border-left: 5px solid #007bff;
        border-radius: 8px;
        display: flex;
        align-items: flex-start;
        gap: 15px;
        box-shadow: 0 1px 5px rgba(0,0,0,0.03);
        box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__step-number {
        font-size: 1.8em;
        font-weight: bold;
        color: #007bff;
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #fff;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .page-www-8k8-com-login-2__step-content h3 {
        font-size: 1.3em;
        color: #1a2a6c;
        margin-top: 0;
        margin-bottom: 8px;
    }

    .page-www-8k8-com-login-2__step-content p {
        font-size: 1em;
        color: #555;
        margin-bottom: 0;
    }

    .page-www-8k8-com-login-2__game-categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .page-www-8k8-com-login-2__game-category {
        background-color: #f0f8ff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        text-align: center;
        transition: transform 0.3s ease;
        box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__game-category:hover {
        transform: translateY(-5px);
    }

    .page-www-8k8-com-login-2__game-category-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        max-width: 100%;
        height: auto;
    }

    .page-www-8k8-com-login-2__game-category-title {
        font-size: 1.3em;
        color: #1a2a6c;
        padding: 15px;
        margin: 0;
        background-color: #fff;
    }

    .page-www-8k8-com-login-2__promo-banner {
        background-color: #ffcc00;
        color: #333;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        margin-top: 40px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__promo-banner h2 {
        font-size: 2.2em;
        margin-bottom: 15px;
        color: #1a2a6c;
    }

    .page-www-8k8-com-login-2__promo-banner p {
        font-size: 1.1em;
        margin-bottom: 25px;
    }

    .page-www-8k8-com-login-2__promo-link {
        display: inline-block;
        background-color: #1a2a6c;
        color: #fff;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        cursor: pointer;
    }

    .page-www-8k8-com-login-2__promo-link:hover {
        background-color: #007bff;
    }

    /* FAQ Section */
    .page-www-8k8-com-login-2__faq-section {
        padding: 40px 20px;
        max-width: 900px;
        margin: 0 auto;
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        margin-bottom: 40px;
        box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__faq-title {
        font-size: 2.5em;
        color: #1a2a6c;
        text-align: center;
        margin-bottom: 30px;
        font-weight: bold;
    }

    .page-www-8k8-com-login-2__faq-item {
        border: 1px solid #ddd;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 1px 5px rgba(0,0,0,0.02);
        box-sizing: border-box;
    }

    .page-www-8k8-com-login-2__faq-question {
        background-color: #f0f8ff;
        padding: 15px 20px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1.2em;
        color: #1a2a6c;
        font-weight: bold;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-www-8k8-com-login-2__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click event */
        color: #1a2a6c; /* Ensure contrast */
    }

    .page-www-8k8-com-login-2__faq-question:hover {
        background-color: #e0f0ff;
    }

    .page-www-8k8-com-login-2__faq-toggle {
        font-size: 1.8em;
        line-height: 1;
        margin-left: 15px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
        color: #007bff; /* Ensure contrast */
    }

    .page-www-8k8-com-login-2__faq-item.active .page-www-8k8-com-login-2__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-www-8k8-com-login-2__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;
        background-color: #fff;
        color: #555;
    }

    .page-www-8k8-com-login-2__faq-item.active .page-www-8k8-com-login-2__faq-answer {
        max-height: 2000px !important; /* Sufficiently large height */
        padding: 20px !important; /* Expanded padding */
        opacity: 1;
    }

    .page-www-8k8-com-login-2__faq-answer p {
        margin-bottom: 10px;
        color: #555; /* Ensure contrast */
    }

    .page-www-8k8-com-login-2__faq-answer ul {
        list-style: disc;
        margin-left: 20px;
        margin-bottom: 10px;
        color: #555;
    }

    .page-www-8k8-com-login-2__faq-answer li {
        margin-bottom: 5px;
        color: #555;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-www-8k8-com-login-2__hero-title {
            font-size: 2.5em;
        }

        .page-www-8k8-com-login-2__hero-subtitle {
            font-size: 1.2em;
        }

        .page-www-8k8-com-login-2__button-group {
            flex-direction: column;
            gap: 15px;
        }

        .page-www-8k8-com-login-2__primary-button,
        .page-www-8k8-com-login-2__secondary-button {
            width: 100%;
            padding: 12px 20px;
            font-size: 1em;
        }

        .page-www-8k8-com-login-2__content-section,
        .page-www-8k8-com-login-2__faq-section {
            padding: 25px 15px;
            margin-bottom: 30px;
        }

        .page-www-8k8-com-login-2__section-title,
        .page-www-8k8-com-login-2__faq-title {
            font-size: 2em;
            margin-bottom: 25px;
        }

        .page-www-8k8-com-login-2__section-subtitle {
            font-size: 1.1em;
            margin-bottom: 30px;
        }

        .page-www-8k8-com-login-2__features-grid,
        .page-www-8k8-com-login-2__payment-methods-grid,
        .page-www-8k8-com-login-2__game-categories-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-www-8k8-com-login-2__feature-item,
        .page-www-8k8-com-login-2__payment-method-item,
        .page-www-8k8-com-login-2__game-category,
        .page-www-8k8-com-login-2__step-item,
        .page-www-8k8-com-login-2__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 15px !important; /* Reduce padding for smaller screens */
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-www-8k8-com-login-2__feature-description,
        .page-www-8k8-com-login-2__step-content p,
        .page-www-8k8-com-login-2__faq-answer p,
        .page-www-8k8-com-login-2__faq-answer li {
            word-break: break-word !important;
        }

        .page-www-8k8-com-login-2__promo-banner {
            padding: 20px;
        }

        .page-www-8k8-com-login-2__promo-banner h2 {
            font-size: 1.8em;
        }

        .page-www-8k8-com-login-2__promo-banner p {
            font-size: 1em;
        }

        .page-www-8k8-com-login-2__faq-question {
            font-size: 1.1em;
            padding: 12px 15px;
        }

        .page-www-8k8-com-login-2__faq-answer {
            padding: 0 15px; /* Adjust padding for mobile */
        }

        .page-www-8k8-com-login-2__faq-item.active .page-www-8k8-com-login-2__faq-answer {
            padding: 15px !important; /* Adjust expanded padding for mobile */
        }
    }
    @media (max-width: 480px) {
        .page-www-8k8-com-login-2__hero-title {
            font-size: 2em;
        }
        .page-www-8k8-com-login-2__section-title,
        .page-www-8k8-com-login-2__faq-title {
            font-size: 1.8em;
        }
    }
  