
    /* Page-specific CSS for 8k8 17 Login */
    :root {
        --page-8k8-17-login__primary-color: #FFD700; /* Gold */
        --page-8k8-17-login__secondary-color: #000000; /* Black */
        --page-8k8-17-login__text-color: #FFFFFF; /* White */
        --page-8k8-17-login__dark-grey: #333333;
        --page-8k8-17-login__light-grey: #f0f0f0;
        --page-8k8-17-login__accent-color: #FF4500; /* OrangeRed */
    }

    .page-8k8-17-login {
        font-family: 'Arial', sans-serif;
        line-height: 1.6;
        color: var(--page-8k8-17-login__text-color);
        background-color: var(--page-8k8-17-login__secondary-color);
        padding-top: 10px; /* Small padding for fixed header, as body padding-top is assumed */
    }

    .page-8k8-17-login__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .page-8k8-17-login__section {
        padding: 60px 20px;
        margin-bottom: 20px;
        border-radius: 10px;
        text-align: center;
        background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background for sections */
    }

    .page-8k8-17-login__section--dark {
        background-color: var(--page-8k8-17-login__dark-grey);
    }

    .page-8k8-17-login__hero-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:hero:1920x1080:8k8,casino,login,philippines,mobile,slot]');
        background-size: cover;
        background-position: center;
        color: var(--page-8k8-17-login__text-color);
        padding: 100px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 60vh;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        border-radius: 0; /* Hero section typically full width */
        margin-bottom: 0; /* No margin bottom for hero */
    }

    .page-8k8-17-login__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        color: var(--page-8k8-17-login__primary-color);
        font-weight: bold;
        text-transform: uppercase;
    }

    .page-8k8-17-login__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        max-width: 800px;
        line-height: 1.5;
    }

    .page-8k8-17-login__button {
        display: inline-block;
        background-color: var(--page-8k8-17-login__accent-color);
        color: var(--page-8k8-17-login__text-color);
        padding: 15px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 1.2em;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-8k8-17-login__button:hover {
        background-color: #cc3700; /* Darker orange */
        transform: translateY(-2px);
    }

    .page-8k8-17-login__content-title {
        font-size: 2.5em;
        color: var(--page-8k8-17-login__primary-color);
        margin-bottom: 40px;
        text-transform: uppercase;
        font-weight: bold;
    }

    .page-8k8-17-login__content-text {
        font-size: 1.1em;
        margin-bottom: 20px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        color: #e0e0e0;
    }

    .page-8k8-17-login__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .page-8k8-17-login__feature-item {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 8px;
        text-align: center;
        transition: transform 0.3s ease, background-color 0.3s ease;
        box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-17-login__feature-item:hover {
        transform: translateY(-5px);
        background-color: rgba(255, 255, 255, 0.15);
    }

    .page-8k8-17-login__feature-icon {
        width: 250px; /* Min size 200x200 */
        height: auto;
        max-width: 100%; /* Responsive */
        margin-bottom: 20px;
        border-radius: 5px;
    }

    .page-8k8-17-login__feature-title {
        font-size: 1.5em;
        color: var(--page-8k8-17-login__primary-color);
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-8k8-17-login__feature-description {
        font-size: 1em;
        color: #c0c0c0;
    }

    .page-8k8-17-login__steps-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
        list-style: none;
        padding: 0;
        width: 100%; /* Required for list container */
        max-width: 100%; /* Required for list container */
        box-sizing: border-box; /* Required for list container */
    }

    .page-8k8-17-login__step-item {
        background-color: rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 8px;
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        box-sizing: border-box; /* Required for list items */
        width: 100%; /* Required for list items */
        max-width: 100%; /* Required for list items */
    }

    .page-8k8-17-login__step-number {
        font-size: 2.5em;
        font-weight: bold;
        color: var(--page-8k8-17-login__primary-color);
        flex-shrink: 0;
        line-height: 1;
    }

    .page-8k8-17-login__step-content {
        flex-grow: 1;
    }

    .page-8k8-17-login__step-title {
        font-size: 1.8em;
        color: var(--page-8k8-17-login__primary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-8k8-17-login__step-description {
        font-size: 1.1em;
        color: #c0c0c0;
    }

    .page-8k8-17-login__game-providers {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .page-8k8-17-login__provider-logo {
        width: 100%;
        max-width: 250px; /* Example, adjust as needed */
        height: auto;
        border-radius: 5px;
        opacity: 0.8;
        transition: opacity 0.3s ease;
        box-sizing: border-box; /* Required for images in grid */
    }

    .page-8k8-17-login__provider-logo:hover {
        opacity: 1;
    }

    .page-8k8-17-login__payment-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    .page-8k8-17-login__payment-logo {
        width: 100%;
        max-width: 180px; /* Example, adjust as needed */
        height: auto;
        border-radius: 5px;
        opacity: 0.8;
        transition: opacity 0.3s ease;
        box-sizing: border-box; /* Required for images in grid */
    }

    .page-8k8-17-login__payment-logo:hover {
        opacity: 1;
    }

    /* FAQ Section Styles */
    .page-8k8-17-login__faq-section {
        text-align: left;
    }

    .page-8k8-17-login__faq-container {
        max-width: 900px;
        margin: 40px auto 0 auto;
    }

    .page-8k8-17-login__faq-item {
        background-color: rgba(255, 255, 255, 0.1);
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-sizing: border-box; /* Required for list items */
    }

    .page-8k8-17-login__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        transition: background-color 0.3s ease;
    }

    .page-8k8-17-login__faq-question:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

    .page-8k8-17-login__faq-question h3 {
        margin: 0;
        font-size: 1.3em;
        color: var(--page-8k8-17-login__primary-color);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-8k8-17-login__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: var(--page-8k8-17-login__primary-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-8k8-17-login__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: #c0c0c0;
        font-size: 1.05em;
        line-height: 1.8;
    }

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

    .page-8k8-17-login__faq-item.active .page-8k8-17-login__faq-toggle {
        transform: rotate(45deg); /* Rotate '+' to 'x' or '-' to visually indicate open */
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .page-8k8-17-login__hero-title {
            font-size: 3em;
        }
        .page-8k8-17-login__hero-subtitle {
            font-size: 1.3em;
        }
        .page-8k8-17-login__content-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-17-login__hero-section {
            padding: 80px 20px;
            min-height: 50vh;
        }
        .page-8k8-17-login__hero-title {
            font-size: 2.5em;
        }
        .page-8k8-17-login__hero-subtitle {
            font-size: 1.1em;
        }
        .page-8k8-17-login__button {
            padding: 12px 25px;
            font-size: 1.1em;
        }
        .page-8k8-17-login__section {
            padding: 40px 15px;
        }
        .page-8k8-17-login__content-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
        .page-8k8-17-login__content-text {
            font-size: 1em;
        }

        /* List item responsive adjustments */
        .page-8k8-17-login__features-grid,
        .page-8k8-17-login__game-providers,
        .page-8k8-17-login__payment-methods {
            grid-template-columns: 1fr; /* Stack items */
            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-8k8-17-login__feature-item,
        .page-8k8-17-login__step-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding: 20px !important; /* Adjust padding for smaller screens */
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-8k8-17-login__step-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .page-8k8-17-login__step-number {
            margin-bottom: 10px;
        }
        .page-8k8-17-login__step-title {
            font-size: 1.5em;
        }

        .page-8k8-17-login__provider-logo,
        .page-8k8-17-login__payment-logo {
            width: 80% !important; /* Make logos a bit smaller for consistency */
            margin: 0 auto; /* Center logos */
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        /* FAQ responsive adjustments */
        .page-8k8-17-login__faq-question {
            padding: 15px 20px;
        }
        .page-8k8-17-login__faq-question h3 {
            font-size: 1.1em;
        }
        .page-8k8-17-login__faq-toggle {
            font-size: 1.5em;
        }
        .page-8k8-17-login__faq-answer {
            padding: 15px 20px;
            font-size: 0.95em;
        }
        .page-8k8-17-login__faq-item.active .page-8k8-17-login__faq-answer {
            padding: 15px 20px !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-17-login__hero-title {
            font-size: 2em;
        }
        .page-8k8-17-login__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-17-login__button {
            padding: 10px 20px;
            font-size: 1em;
        }
        .page-8k8-17-login__content-title {
            font-size: 1.5em;
        }
    }
  