
    :root {
        --primary-color: #e44d26; /* A vibrant red-orange often associated with gaming/energy */
        --secondary-color: #333;
        --accent-color: #fdd835; /* A bright yellow for highlights */
        --text-color-light: #f8f8f8;
        --text-color-dark: #222;
        --background-dark: #1a1a1a;
        --background-light: #2a2a2a;
        --border-radius-base: 8px;
        --spacing-unit: 1rem;
    }

    .page-8k8-com-login-ph {
        font-family: 'Arial', sans-serif;
        color: var(--text-color-light);
        background-color: var(--background-dark);
        line-height: 1.6;
        padding-top: var(--header-offset, 0); /* Fallback to 0 if not set by shared.css */
    }

    .page-8k8-com-login-ph__hero-section {
        position: relative;
        padding: 10px 0 60px; /* Small top padding, body handles main offset */
        text-align: center;
        overflow: hidden;
        background: linear-gradient(135deg, var(--background-dark) 0%, #000 100%);
        box-shadow: inset 0 -5px 15px rgba(0, 0, 0, 0.5);
    }

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

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

    .page-8k8-com-login-ph__hero-title {
        font-size: 2.8rem;
        color: var(--accent-color);
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-8k8-com-login-ph__hero-subtitle {
        font-size: 1.3rem;
        color: var(--text-color-light);
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-8k8-com-login-ph__cta-button {
        display: inline-block;
        background-color: var(--primary-color);
        color: var(--text-color-light);
        padding: 1rem 2rem;
        border-radius: var(--border-radius-base);
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1rem;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
        margin: 0 0.5rem;
    }

    .page-8k8-com-login-ph__cta-button:hover {
        background-color: #ff6a3d;
        transform: translateY(-3px);
    }

    .page-8k8-com-login-ph__section {
        padding: 3rem 1rem;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-8k8-com-login-ph__section-title {
        font-size: 2.2rem;
        color: var(--primary-color);
        margin-bottom: 2rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-com-login-ph__section-description {
        font-size: 1.1rem;
        color: var(--text-color-light);
        max-width: 800px;
        margin: 0 auto 2rem;
    }

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

    .page-8k8-com-login-ph__feature-item {
        background-color: var(--background-light);
        padding: 2rem;
        border-radius: var(--border-radius-base);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-login-ph__feature-icon {
        width: 60px; /* Min size 200x200, but this is an icon. Let's use image placeholder for larger images */
        height: auto;
        margin-bottom: 1rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-8k8-com-login-ph__feature-title {
        font-size: 1.5rem;
        color: var(--accent-color);
        margin-bottom: 0.8rem;
    }

    .page-8k8-com-login-ph__feature-description {
        font-size: 1rem;
        color: var(--text-color-light);
    }

    .page-8k8-com-login-ph__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .page-8k8-com-login-ph__game-card {
        background-color: var(--background-light);
        border-radius: var(--border-radius-base);
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease;
        box-sizing: border-box; /* Required for list items */
    }

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

    .page-8k8-com-login-ph__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-8k8-com-login-ph__game-info {
        padding: 1rem;
    }

    .page-8k8-com-login-ph__game-title {
        font-size: 1.2rem;
        color: var(--accent-color);
        margin-bottom: 0.5rem;
    }

    .page-8k8-com-login-ph__game-provider {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .page-8k8-com-login-ph__promo-card {
        background-color: var(--background-light);
        padding: 2rem;
        border-radius: var(--border-radius-base);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        margin-bottom: 1.5rem;
        text-align: left;
        box-sizing: border-box;
    }

    .page-8k8-com-login-ph__promo-title {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .page-8k8-com-login-ph__promo-description {
        font-size: 1rem;
        color: var(--text-color-light);
        margin-bottom: 1.5rem;
    }

    .page-8k8-com-login-ph__promo-link {
        display: inline-block;
        background-color: var(--accent-color);
        color: var(--text-color-dark);
        padding: 0.8rem 1.5rem;
        border-radius: var(--border-radius-base);
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-ph__promo-link:hover {
        background-color: #ffe082;
    }

    .page-8k8-com-login-ph__payment-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0;
        list-style: none;
    }

    .page-8k8-com-login-ph__payment-item {
        background-color: var(--background-light);
        padding: 1.5rem 2rem;
        border-radius: var(--border-radius-base);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        font-size: 1.1rem;
        font-weight: bold;
        color: var(--text-color-light);
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 150px;
        box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-login-ph__faq-section {
        background-color: var(--background-light);
        padding: 3rem 1rem;
        text-align: center;
    }

    .page-8k8-com-login-ph__faq-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
    }

    .page-8k8-com-login-ph__faq-item {
        background-color: var(--background-dark);
        border-radius: var(--border-radius-base);
        margin-bottom: 1rem;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-com-login-ph__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        cursor: pointer;
        background-color: var(--secondary-color);
        color: var(--text-color-light);
        font-size: 1.1rem;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-8k8-com-login-ph__faq-question:hover {
        background-color: #444;
    }

    .page-8k8-com-login-ph__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click event */
        color: var(--text-color-light); /* Ensure H3 color is correct */
    }

    .page-8k8-com-login-ph__faq-toggle {
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1;
        margin-left: 1rem;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
        transition: transform 0.3s ease;
    }

    .page-8k8-com-login-ph__faq-item.active .page-8k8-com-login-ph__faq-toggle {
        transform: rotate(45deg);
    }

    .page-8k8-com-login-ph__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 1.5rem;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
    }

    .page-8k8-com-login-ph__faq-item.active .page-8k8-com-login-ph__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to accommodate content */
        padding: 1.5rem !important;
        opacity: 1;
    }

    @media (max-width: 768px) {
        .page-8k8-com-login-ph__hero-title {
            font-size: 2rem;
        }

        .page-8k8-com-login-ph__hero-subtitle {
            font-size: 1rem;
        }

        .page-8k8-com-login-ph__cta-button {
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
            margin: 0.5rem 0; /* Stack buttons on mobile */
        }

        .page-8k8-com-login-ph__section-title {
            font-size: 1.8rem;
        }

        .page-8k8-com-login-ph__features-grid,
        .page-8k8-com-login-ph__game-grid {
            grid-template-columns: 1fr;
        }

        .page-8k8-com-login-ph__feature-item,
        .page-8k8-com-login-ph__game-card,
        .page-8k8-com-login-ph__payment-item,
        .page-8k8-com-login-ph__faq-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 1rem !important;
            padding-right: 1rem !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-com-login-ph__payment-list {
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-8k8-com-login-ph__game-image {
            max-width: 100% !important;
            height: auto !important;
        }

        .page-8k8-com-login-ph__faq-question,
        .page-8k8-com-login-ph__faq-answer {
            padding: 1rem !important;
        }

        .page-8k8-com-login-ph__faq-question h3 {
            font-size: 1rem;
        }
        .page-8k8-com-login-ph__faq-answer {
            font-size: 0.9rem;
        }
    }
  