
    .page-8k8-777-com-login {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #e0e0e0;
        background-color: #1a1a2e; /* Dark background for casino theme */
        line-height: 1.6;
        overflow-x: hidden;
    }

    .page-8k8-777-com-login__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-8k8-777-com-login__hero-section {
        position: relative;
        padding: 100px 0 60px; /* Base padding */
        text-align: center;
        background: linear-gradient(135deg, #0f0f1f, #2a003a);
        overflow: hidden;
        color: #fff;
        padding-top: 10px; /* Small decorative padding, assuming body handles main offset */
    }

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

    .page-8k8-777-com-login__hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .page-8k8-777-com-login__hero-title {
        font-size: 3.2em;
        margin-bottom: 20px;
        color: #ffcc00; /* Gold color for emphasis */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .page-8k8-777-com-login__hero-subtitle {
        font-size: 1.4em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    .page-8k8-777-com-login__button-group {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .page-8k8-777-com-login__button {
        display: inline-block;
        padding: 15px 30px;
        background-color: #ffcc00;
        color: #1a1a2e;
        border: none;
        border-radius: 8px;
        font-size: 1.1em;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none; /* Ensure no underline for a-tag styled as button */
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-777-com-login__button:hover {
        background-color: #e6b800;
        transform: translateY(-2px);
    }

    .page-8k8-777-com-login__section {
        padding: 60px 0;
        background-color: #1a1a2e;
    }

    .page-8k8-777-com-login__section--dark {
        background-color: #121220;
    }

    .page-8k8-777-com-login__section-title {
        font-size: 2.5em;
        color: #ffcc00;
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        padding-bottom: 15px;
    }

    .page-8k8-777-com-login__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: #ffcc00;
        border-radius: 2px;
    }

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

    .page-8k8-777-com-login__card {
        background-color: #2c2c4a;
        border-radius: 12px;
        padding: 30px;
        text-align: center;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        min-height: 250px;
    }

    .page-8k8-777-com-login__card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    }

    .page-8k8-777-com-login__card-icon {
        width: 200px; /* Minimum size requirement */
        height: 200px; /* Minimum size requirement */
        margin-bottom: 20px;
        object-fit: contain;
        border-radius: 8px;
        max-width: 100%;
        height: auto;
    }

    .page-8k8-777-com-login__card-title {
        font-size: 1.6em;
        color: #ffcc00;
        margin-bottom: 15px;
    }

    .page-8k8-777-com-login__card-description {
        font-size: 1em;
        color: #c0c0c0;
    }

    .page-8k8-777-com-login__image-full {
        width: 100%;
        height: auto;
        border-radius: 12px;
        margin-bottom: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    }

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

    .page-8k8-777-com-login__steps-item {
        background-color: #2c2c4a;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: flex-start;
        gap: 20px;
        box-sizing: border-box; /* Crucial for list item responsiveness */
    }

    .page-8k8-777-com-login__step-number {
        font-size: 2.5em;
        font-weight: bold;
        color: #ffcc00;
        flex-shrink: 0;
    }

    .page-8k8-777-com-login__step-content {
        text-align: left;
    }

    .page-8k8-777-com-login__step-title {
        font-size: 1.4em;
        color: #ffcc00;
        margin-bottom: 10px;
    }

    .page-8k8-777-com-login__step-description {
        font-size: 1em;
        color: #c0c0c0;
    }

    .page-8k8-777-com-login__game-providers {
        text-align: center;
    }

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

    .page-8k8-777-com-login__provider-item {
        background-color: #2c2c4a;
        border-radius: 8px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100px;
        box-sizing: border-box;
    }
    
    .page-8k8-777-com-login__provider-logo {
        max-width: 100%;
        max-height: 60px;
        object-fit: contain;
    }

    .page-8k8-777-com-login__faq-section {
        padding: 60px 0;
        background-color: #121220;
    }

    .page-8k8-777-com-login__faq-item {
        background-color: #2c2c4a;
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }

    .page-8k8-777-com-login__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        user-select: none;
        background-color: #3a3a5e;
        transition: background-color 0.3s ease;
    }

    .page-8k8-777-com-login__faq-question:hover {
        background-color: #4a4a6e;
    }

    .page-8k8-777-com-login__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #ffcc00;
        pointer-events: none; /* Prevent h3 from blocking click on parent div */
    }

    .page-8k8-777-com-login__faq-toggle {
        font-size: 1.8em;
        font-weight: bold;
        color: #ffcc00;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click on parent div */
    }

    .page-8k8-777-com-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: 0.95em;
        line-height: 1.8;
    }

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

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

    .page-8k8-777-com-login__contact-promo {
        text-align: center;
        background-color: #1a1a2e;
        padding: 60px 0;
    }

    .page-8k8-777-com-login__contact-promo p {
        font-size: 1.2em;
        margin-bottom: 30px;
        color: #e0e0e0;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .page-8k8-777-com-login__hero-title {
            font-size: 2.8em;
        }
        .page-8k8-777-com-login__hero-subtitle {
            font-size: 1.2em;
        }
        .page-8k8-777-com-login__section-title {
            font-size: 2em;
        }
        .page-8k8-777-com-login__card-title {
            font-size: 1.4em;
        }
        .page-8k8-777-com-login__card-description {
            font-size: 0.95em;
        }
    }

    @media (max-width: 768px) {
        .page-8k8-777-com-login__hero-section {
            padding: 80px 0 40px;
        }
        .page-8k8-777-com-login__hero-title {
            font-size: 2.2em;
        }
        .page-8k8-777-com-login__hero-subtitle {
            font-size: 1em;
        }
        .page-8k8-777-com-login__button {
            padding: 12px 25px;
            font-size: 1em;
            width: 100%; /* Full width buttons on mobile */
            max-width: 250px;
        }
        .page-8k8-777-com-login__section {
            padding: 40px 0;
        }
        .page-8k8-777-com-login__section-title {
            font-size: 1.8em;
            margin-bottom: 30px;
        }
        .page-8k8-777-com-login__grid,
        .page-8k8-777-com-login__steps-list,
        .page-8k8-777-com-login__provider-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .page-8k8-777-com-login__card,
        .page-8k8-777-com-login__steps-item,
        .page-8k8-777-com-login__provider-item {
            padding: 20px;
            box-sizing: border-box !important; /* Ensure correct box model */
            width: 100% !important; /* Force full width */
            max-width: 100% !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }
        .page-8k8-777-com-login__steps-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .page-8k8-777-com-login__step-content {
            text-align: center;
        }
        .page-8k8-777-com-login__faq-question {
            padding: 15px 20px;
        }
        .page-8k8-777-com-login__faq-question h3 {
            font-size: 1.1em;
        }
        .page-8k8-777-com-login__faq-answer {
            padding: 15px 20px;
        }
        .page-8k8-777-com-login__faq-item.active .page-8k8-777-com-login__faq-answer {
            padding: 15px 20px !important;
        }
        .page-8k8-777-com-login__steps-list,
        .page-8k8-777-com-login__provider-grid {
            padding: 0 !important; /* Remove container padding */
            margin-left: 0 !important;
            margin-right: 0 !important;
            width: 100% !important;
            max-width: 100% !important;
        }
        .page-8k8-777-com-login__steps-item,
        .page-8k8-777-com-login__provider-item {
             word-wrap: break-word !important;
             overflow-wrap: break-word !important;
             word-break: break-word !important;
        }
        .page-8k8-777-com-login__card-icon {
            width: 150px; /* Adjust icon size for smaller screens */
            height: 150px;
        }
    }

    @media (max-width: 480px) {
        .page-8k8-777-com-login__hero-title {
            font-size: 1.8em;
        }
        .page-8k8-777-com-login__section-title {
            font-size: 1.6em;
        }
        .page-8k8-777-com-login__button-group {
            flex-direction: column;
        }
        .page-8k8-777-com-login__button {
            max-width: 100%;
        }
    }
  