
    /* Page-specific CSS for 8k8 Slot Casino Login Register */
    :root {
        --primary-color: #007bff; /* Blue */
        --secondary-color: #6c757d; /* Grey */
        --accent-color: #ffc107; /* Yellow */
        --background-light: #f8f9fa;
        --text-dark: #212529;
        --text-light: #ffffff;
        --border-color: #dee2e6;
    }

    .page-8k8-slot-casino-login-register {
        font-family: 'Arial', sans-serif;
        color: var(--text-dark);
        line-height: 1.6;
    }

    .page-8k8-slot-casino-login-register__hero-section {
        background-color: #1a1a2e; /* Dark background for hero */
        color: var(--text-light);
        padding: 10px 0 80px 0; /* 10px top padding for hero, relying on body for header offset */
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-8k8-slot-casino-login-register__hero-image-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
        overflow: hidden;
    }

    .page-8k8-slot-casino-login-register__hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3; /* Subtle overlay */
        display: block;
        max-width: 100%; /* Ensure responsiveness */
    }

    .page-8k8-slot-casino-login-register__hero-content {
        position: relative;
        z-index: 1;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
    }

    .page-8k8-slot-casino-login-register__hero-title {
        font-size: 3.5em;
        margin-bottom: 20px;
        color: var(--accent-color);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-slot-casino-login-register__hero-subtitle {
        font-size: 1.5em;
        margin-bottom: 30px;
        color: var(--text-light);
    }

    .page-8k8-slot-casino-login-register__cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .page-8k8-slot-casino-login-register__button {
        display: inline-block;
        padding: 15px 30px;
        font-size: 1.2em;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        border-radius: 50px;
        transition: background-color 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        border: none;
    }

    .page-8k8-slot-casino-login-register__button--primary {
        background-color: var(--accent-color);
        color: var(--text-dark);
    }

    .page-8k8-slot-casino-login-register__button--primary:hover {
        background-color: #e0a800;
        transform: translateY(-2px);
    }

    .page-8k8-slot-casino-login-register__button--secondary {
        background-color: var(--primary-color);
        color: var(--text-light);
    }

    .page-8k8-slot-casino-login-register__button--secondary:hover {
        background-color: #0056b3;
        transform: translateY(-2px);
    }

    .page-8k8-slot-casino-login-register__section {
        padding: 60px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-8k8-slot-casino-login-register__section--light {
        background-color: var(--background-light);
    }

    .page-8k8-slot-casino-login-register__section--dark {
        background-color: #e9ecef;
    }

    .page-8k8-slot-casino-login-register__section-title {
        font-size: 2.5em;
        margin-bottom: 40px;
        color: var(--primary-color);
    }

    .page-8k8-slot-casino-login-register__section-text {
        font-size: 1.1em;
        margin-bottom: 30px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        color: #495057;
    }

    .page-8k8-slot-casino-login-register__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 40px;
        text-align: left;
    }

    .page-8k8-slot-casino-login-register__feature-card {
        background-color: var(--text-light);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: transform 0.3s ease;
        height: 100%;
        box-sizing: border-box; /* Crucial for consistent sizing */
    }

    .page-8k8-slot-casino-login-register__feature-card:hover {
        transform: translateY(-5px);
    }

    .page-8k8-slot-casino-login-register__feature-icon-container {
        margin-bottom: 20px;
        width: 200px; /* Min size 200x200 for images */
        height: 200px;
        border-radius: 50%;
        background-color: var(--primary-color);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        overflow: hidden; /* Ensure image fits */
    }

    .page-8k8-slot-casino-login-register__feature-icon {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        max-width: 100%;
        height: auto;
    }

    .page-8k8-slot-casino-login-register__feature-title {
        font-size: 1.5em;
        color: var(--primary-color);
        margin-bottom: 15px;
        text-align: center;
    }

    .page-8k8-slot-casino-login-register__feature-description {
        font-size: 1em;
        color: #555;
        text-align: center;
    }

    .page-8k8-slot-casino-login-register__slot-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .page-8k8-slot-casino-login-register__slot-card {
        background-color: var(--text-light);
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease;
        height: 100%;
        box-sizing: border-box;
    }

    .page-8k8-slot-casino-login-register__slot-card:hover {
        transform: translateY(-5px);
    }

    .page-8k8-slot-casino-login-register__slot-image-container {
        width: 100%;
        height: 200px; /* Fixed height for image consistency */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #f0f0f0;
    }

    .page-8k8-slot-casino-login-register__slot-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        max-width: 100%;
    }

    .page-8k8-slot-casino-login-register__slot-info {
        padding: 20px;
    }

    .page-8k8-slot-casino-login-register__slot-title {
        font-size: 1.4em;
        color: var(--primary-color);
        margin-bottom: 10px;
    }

    .page-8k8-slot-casino-login-register__slot-provider {
        font-size: 0.9em;
        color: var(--secondary-color);
    }

    .page-8k8-slot-casino-login-register__steps-list {
        list-style: none;
        padding: 0;
        margin-top: 40px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .page-8k8-slot-casino-login-register__step-item {
        background-color: var(--text-light);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        text-align: center;
        position: relative;
        height: 100%;
        box-sizing: border-box;
    }

    .page-8k8-slot-casino-login-register__step-number {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        background-color: var(--accent-color);
        color: var(--text-dark);
        border-radius: 50%;
        font-size: 2em;
        font-weight: bold;
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .page-8k8-slot-casino-login-register__step-content {
        padding-top: 40px;
    }

    .page-8k8-slot-casino-login-register__step-title {
        font-size: 1.8em;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .page-8k8-slot-casino-login-register__step-description {
        font-size: 1em;
        color: #555;
    }

    .page-8k8-slot-casino-login-register__promotion-card {
        background-color: var(--text-light);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-top: 40px;
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-8k8-slot-casino-login-register__promotion-image-container {
        width: 100%;
        max-width: 600px;
        margin-bottom: 25px;
        border-radius: 8px;
        overflow: hidden;
    }

    .page-8k8-slot-casino-login-register__promotion-image {
        width: 100%;
        height: auto;
        display: block;
        max-width: 100%;
    }

    .page-8k8-slot-casino-login-register__promotion-title {
        font-size: 2em;
        color: var(--primary-color);
        margin-bottom: 15px;
        text-align: center;
    }

    .page-8k8-slot-casino-login-register__promotion-description {
        font-size: 1.1em;
        color: #495057;
        margin-bottom: 25px;
        text-align: center;
    }

    .page-8k8-slot-casino-login-register__faq-container {
        margin-top: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .page-8k8-slot-casino-login-register__faq-item {
        margin-bottom: 10px;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
    }

    .page-8k8-slot-casino-login-register__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        user-select: none;
        background-color: #f0f0f0;
        padding: 15px;
        border-radius: 8px;
        transition: background-color 0.3s ease;
        color: var(--text-dark);
        font-weight: bold;
    }

    .page-8k8-slot-casino-login-register__faq-question:hover {
        background-color: #e0e0e0;
    }

    .page-8k8-slot-casino-login-register__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: var(--primary-color);
        pointer-events: none; /* Prevent h3 from blocking click */
    }

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

    .page-8k8-slot-casino-login-register__faq-item.active .page-8k8-slot-casino-login-register__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
        color: var(--accent-color);
    }

    .page-8k8-slot-casino-login-register__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 15px;
        opacity: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        color: #333;
        font-size: 1em;
        line-height: 1.6;
        background-color: #f9f9f9;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .page-8k8-slot-casino-login-register__faq-item.active .page-8k8-slot-casino-login-register__faq-answer {
        max-height: 2000px !important; /* Sufficiently large */
        padding: 20px 15px !important;
        opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .page-8k8-slot-casino-login-register__hero-title {
            font-size: 2.8em;
        }

        .page-8k8-slot-casino-login-register__hero-subtitle {
            font-size: 1.3em;
        }

        .page-8k8-slot-casino-login-register__section-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-slot-casino-login-register__hero-section {
            padding-bottom: 60px;
        }
        .page-8k8-slot-casino-login-register__hero-title {
            font-size: 2.2em;
            margin-bottom: 15px;
        }

        .page-8k8-slot-casino-login-register__hero-subtitle {
            font-size: 1.1em;
            margin-bottom: 20px;
        }

        .page-8k8-slot-casino-login-register__cta-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .page-8k8-slot-casino-login-register__button {
            width: 80%;
            margin: 0 auto;
            padding: 12px 25px;
            font-size: 1.1em;
        }

        .page-8k8-slot-casino-login-register__section {
            padding: 40px 15px;
        }

        .page-8k8-slot-casino-login-register__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }

        .page-8k8-slot-casino-login-register__section-text {
            font-size: 1em;
        }

        .page-8k8-slot-casino-login-register__features-grid,
        .page-8k8-slot-casino-login-register__slot-gallery,
        .page-8k8-slot-casino-login-register__steps-list {
            grid-template-columns: 1fr;
            gap: 25px;
        }

        .page-8k8-slot-casino-login-register__feature-card,
        .page-8k8-slot-casino-login-register__slot-card,
        .page-8k8-slot-casino-login-register__step-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 20px !important; /* Adjust padding for mobile */
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        
        .page-8k8-slot-casino-login-register__slot-image-container {
            height: 180px;
        }

        .page-8k8-slot-casino-login-register__step-number {
            top: -25px;
            width: 50px;
            height: 50px;
            font-size: 1.8em;
        }

        .page-8k8-slot-casino-login-register__step-content {
            padding-top: 30px;
        }

        .page-8k8-slot-casino-login-register__step-title {
            font-size: 1.5em;
        }

        .page-8k8-slot-casino-login-register__promotion-title {
            font-size: 1.8em;
        }

        .page-8k8-slot-casino-login-register__promotion-description {
            font-size: 1em;
        }

        .page-8k8-slot-casino-login-register__faq-question {
            padding: 12px;
        }
        .page-8k8-slot-casino-login-register__faq-question h3 {
            font-size: 1.1em;
        }
        .page-8k8-slot-casino-login-register__faq-answer {
            padding: 15px 12px;
            font-size: 0.95em;
        }
        .page-8k8-slot-casino-login-register__faq-item.active .page-8k8-slot-casino-login-register__faq-answer {
            padding: 15px 12px !important;
        }
        .page-8k8-slot-casino-login-register__image,
        .page-8k8-slot-casino-login-register__hero-image,
        .page-8k8-slot-casino-login-register__feature-icon,
        .page-8k8-slot-casino-login-register__slot-image,
        .page-8k8-slot-casino-login-register__promotion-image {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-8k8-slot-casino-login-register__image-container,
        .page-8k8-slot-casino-login-register__hero-image-container,
        .page-8k8-slot-casino-login-register__feature-icon-container,
        .page-8k8-slot-casino-login-register__slot-image-container,
        .page-8k8-slot-casino-login-register__promotion-image-container {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-slot-casino-login-register__hero-title {
            font-size: 1.8em;
        }
        .page-8k8-slot-casino-login-register__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-slot-casino-login-register__button {
            width: 90%;
            font-size: 1em;
            padding: 10px 20px;
        }
        .page-8k8-slot-casino-login-register__section-title {
            font-size: 1.5em;
        }
        .page-8k8-slot-casino-login-register__feature-title,
        .page-8k8-slot-casino-login-register__slot-title,
        .page-8k8-slot-casino-login-register__step-title {
            font-size: 1.3em;
        }
        .page-8k8-slot-casino-login-register__faq-question h3 {
            font-size: 1em;
        }
    }
  