
    :root {
        --primary-color: #e44d26; /* A vibrant orange/red for accents */
        --secondary-color: #333; /* Dark gray for backgrounds */
        --text-color: #f0f0f0; /* Light text for dark backgrounds */
        --heading-color: #ffffff; /* White for headings */
        --background-color: #1a1a1a; /* Very dark background */
        --card-background: #2a2a2a; /* Slightly lighter card background */
        --border-color: #444; /* Border color for elements */
        --button-hover-bg: #ff6f40; /* Lighter orange for button hover */
        --button-secondary-hover-bg: #4a4a4a; /* Lighter gray for secondary button hover */
        --header-offset: 122px; /* Default header offset if not provided by shared.css */
    }

    /* Base styling for the page */
    .page-8k8-com-login-ph {
        font-family: 'Arial', sans-serif;
        color: var(--text-color);
        background-color: var(--background-color);
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .page-8k8-com-login-ph strong {
        color: var(--primary-color);
        font-weight: bold;
    }

    .page-8k8-com-login-ph__section-title {
        font-size: 2.5em;
        color: var(--heading-color);
        text-align: center;
        margin-bottom: 40px;
        padding: 0 15px;
        line-height: 1.2;
    }

    .page-8k8-com-login-ph__section-subtitle {
        font-size: 1.1em;
        color: var(--text-color);
        text-align: center;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .page-8k8-com-login-ph__button {
        display: inline-block;
        padding: 12px 25px;
        border-radius: 8px;
        font-size: 1em;
        font-weight: bold;
        cursor: pointer;
        text-align: center;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        text-decoration: none; /* For external link button */
    }

    .page-8k8-com-login-ph__button--primary {
        background-color: var(--primary-color);
        color: #fff;
    }

    .page-8k8-com-login-ph__button--primary:hover {
        background-color: var(--button-hover-bg);
        transform: translateY(-2px);
    }

    .page-8k8-com-login-ph__button--secondary {
        background-color: var(--card-background);
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
    }

    .page-8k8-com-login-ph__button--secondary:hover {
        background-color: var(--button-secondary-hover-bg);
        transform: translateY(-2px);
    }

    .page-8k8-com-login-ph__button--external {
        background-color: var(--primary-color);
        color: #fff;
        margin-top: 20px;
    }

    .page-8k8-com-login-ph__button--external:hover {
        background-color: var(--button-hover-bg);
        transform: translateY(-2px);
    }

    /* Hero Section */
    .page-8k8-com-login-ph__hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 60px 20px;
        background-color: #111;
        text-align: center;
        gap: 40px;
        padding-top: 10px; /* Small decorative padding, body handles main offset */
    }

    .page-8k8-com-login-ph__hero-content {
        max-width: 800px;
        z-index: 1;
    }

    .page-8k8-com-login-ph__hero-title {
        font-size: 3.5em;
        color: var(--heading-color);
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .page-8k8-com-login-ph__hero-description {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #ccc;
    }

    .page-8k8-com-login-ph__hero-actions {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-8k8-com-login-ph__hero-image-container {
        width: 100%;
        max-width: 800px;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        margin-top: 40px;
        box-sizing: border-box;
    }

    .page-8k8-com-login-ph__hero-image {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Benefits Section */
    .page-8k8-com-login-ph__benefits-section {
        padding: 80px 20px;
        background-color: var(--background-color);
    }

    .page-8k8-com-login-ph__benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8k8-com-login-ph__benefit-card {
        background-color: var(--card-background);
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Important for grid items */
    }

    .page-8k8-com-login-ph__benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login-ph__benefit-icon {
        width: 200px; /* Minimum size requirement */
        height: auto;
        margin-bottom: 20px;
        max-width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

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

    .page-8k8-com-login-ph__benefit-description {
        font-size: 1em;
        color: #bbb;
    }

    /* How to Login Section */
    .page-8k8-com-login-ph__how-to-login-section {
        padding: 80px 20px;
        background-color: #111;
    }

    .page-8k8-com-login-ph__steps-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8k8-com-login-ph__step-card {
        background-color: var(--card-background);
        padding: 30px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
        box-sizing: border-box; /* Important for grid items */
    }

    .page-8k8-com-login-ph__step-number {
        font-size: 3em;
        font-weight: bold;
        color: rgba(228, 77, 38, 0.2);
        position: absolute;
        top: 10px;
        left: 10px;
        line-height: 1;
    }

    .page-8k8-com-login-ph__step-title {
        font-size: 1.4em;
        color: var(--heading-color);
        margin-top: 40px;
        margin-bottom: 15px;
    }

    .page-8k8-com-login-ph__step-description {
        font-size: 1em;
        color: #bbb;
    }

    .page-8k8-com-login-ph__promo-link-container {
        text-align: center;
        margin-top: 60px;
    }

    .page-8k8-com-login-ph__promo-text {
        font-size: 1.2em;
        margin-bottom: 15px;
        color: var(--primary-color);
    }

    /* Games Section */
    .page-8k8-com-login-ph__games-section {
        padding: 80px 20px;
        background-color: var(--background-color);
    }

    .page-8k8-com-login-ph__games-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .page-8k8-com-login-ph__game-card {
        background-color: var(--card-background);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-sizing: border-box; /* Important for grid items */
    }

    .page-8k8-com-login-ph__game-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
    }

    .page-8k8-com-login-ph__game-image {
        width: 100%;
        height: 200px; /* Fixed height for consistency, min size 200x200 */
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-8k8-com-login-ph__game-title {
        font-size: 1.4em;
        color: var(--heading-color);
        padding: 15px 20px 0;
    }

    .page-8k8-com-login-ph__game-description {
        font-size: 0.95em;
        color: #bbb;
        padding: 10px 20px 20px;
    }

    /* FAQ Section */
    .page-8k8-com-login-ph__faq-section {
        padding: 80px 20px;
        background-color: #111;
    }

    .page-8k8-com-login-ph__faq-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .page-8k8-com-login-ph__faq-item {
        background-color: var(--card-background);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        border: 1px solid var(--border-color);
    }

    .page-8k8-com-login-ph__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #222;
        border-bottom: 1px solid transparent;
        transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
    }

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

    .page-8k8-com-login-ph__faq-item.active .page-8k8-com-login-ph__faq-question {
        border-bottom-color: var(--primary-color);
    }

    .page-8k8-com-login-ph__faq-question-text {
        font-size: 1.2em;
        color: var(--heading-color);
        margin: 0;
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-8k8-com-login-ph__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent span from blocking click */
    }

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

    .page-8k8-com-login-ph__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #bbb;
    }

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

    .page-8k8-com-login-ph__faq-answer p {
        margin: 0;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-8k8-com-login-ph__hero-title {
            font-size: 3em;
        }
        .page-8k8-com-login-ph__section-title {
            font-size: 2.2em;
        }
        .page-8k8-com-login-ph__benefits-grid,
        .page-8k8-com-login-ph__steps-container,
        .page-8k8-com-login-ph__games-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .page-8k8-com-login-ph__hero-section {
            flex-direction: column;
            padding: 40px 15px;
        }
        .page-8k8-com-login-ph__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-com-login-ph__hero-description {
            font-size: 1.1em;
        }
        .page-8k8-com-login-ph__hero-actions {
            flex-direction: column;
            gap: 15px;
        }
        .page-8k8-com-login-ph__button {
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
        }

        .page-8k8-com-login-ph__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
        .page-8k8-com-login-ph__section-subtitle {
            font-size: 1em;
        }

        .page-8k8-com-login-ph__benefits-section,
        .page-8k8-com-login-ph__how-to-login-section,
        .page-8k8-com-login-ph__games-section,
        .page-8k8-com-login-ph__faq-section {
            padding: 50px 15px;
        }

        /* List item responsive requirements */
        .page-8k8-com-login-ph__benefits-grid,
        .page-8k8-com-login-ph__steps-container,
        .page-8k8-com-login-ph__games-grid {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100% !important;
            max-width: 100% !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
        }

        .page-8k8-com-login-ph__benefit-card,
        .page-8k8-com-login-ph__step-card,
        .page-8k8-com-login-ph__game-card {
            width: 100% !important;
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            box-sizing: border-box !important;
            padding: 20px; /* Adjust padding for smaller screens */
        }

        .page-8k8-com-login-ph__benefit-description,
        .page-8k8-com-login-ph__step-description,
        .page-8k8-com-login-ph__game-description,
        .page-8k8-com-login-ph__faq-answer p {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-com-login-ph__hero-image,
        .page-8k8-com-login-ph__benefit-icon,
        .page-8k8-com-login-ph__game-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-8k8-com-login-ph__game-image {
            height: 180px;
        }

        .page-8k8-com-login-ph__faq-question {
            padding: 15px 20px;
        }

        .page-8k8-com-login-ph__faq-question-text {
            font-size: 1.1em;
        }

        .page-8k8-com-login-ph__faq-toggle {
            font-size: 1.5em;
        }

        .page-8k8-com-login-ph__faq-answer {
            padding: 0 20px;
        }

        .page-8k8-com-login-ph__faq-item.active .page-8k8-com-login-ph__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-com-login-ph__hero-title {
            font-size: 2em;
        }
        .page-8k8-com-login-ph__section-title {
            font-size: 1.6em;
        }
        .page-8k8-com-login-ph__game-image {
            height: 150px;
        }
    }
  