
    .page-www-8k8 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #f0f0f0;
        background-color: #1a1a2e; /* Dark background for casino theme */
        line-height: 1.6;
        overflow-x: hidden; /* Prevent horizontal scroll on small screens */
    }

    .page-www-8k8__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    /* Hero Section */
    .page-www-8k8__hero-section {
        position: relative;
        text-align: center;
        padding: 10px 20px 80px; /* 10px top for header offset, 80px bottom for content */
        background-color: #0f0f1d;
        overflow: hidden;
        border-radius: 15px;
        margin-bottom: 40px;
    }

    .page-www-8k8__hero-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
        opacity: 0.3;
    }

    .page-www-8k8__hero-content {
        position: relative;
        z-index: 2;
        color: #ffffff;
        padding: 40px 20px;
    }

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

    .page-www-8k8__hero-description {
        font-size: 1.3em;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-www-8k8__hero-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .page-www-8k8__button {
        display: inline-block;
        padding: 15px 30px;
        background-color: #e6b800; /* Gold */
        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;
        text-align: center;
    }

    .page-www-8k8__button:hover {
        background-color: #ffcc00;
        transform: translateY(-2px);
    }

    .page-www-8k8__button--secondary {
        background-color: #333366;
        color: #ffffff;
    }

    .page-www-8k8__button--secondary:hover {
        background-color: #444488;
    }

    /* Floating Register/Login Buttons */
    .page-www-8k8__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-www-8k8__floating-button {
        padding: 12px 25px;
        background-color: #e6b800;
        color: #1a1a2e;
        border: none;
        border-radius: 25px;
        font-size: 1em;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .page-www-8k8__floating-button:hover {
        background-color: #ffcc00;
        transform: translateY(-2px);
    }

    .page-www-8k8__floating-button--login {
        background-color: #333366;
        color: #ffffff;
    }

    .page-www-8k8__floating-button--login:hover {
        background-color: #444488;
    }

    /* Sections */
    .page-www-8k8__section {
        padding: 60px 20px;
        margin-bottom: 40px;
        background-color: #22223b;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

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

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

    /* Promotions */
    .page-www-8k8__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .page-www-8k8__promo-card {
        background-color: #333366;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
        display: flex;
        flex-direction: column;
    }

    .page-www-8k8__promo-card:hover {
        transform: translateY(-5px);
    }

    .page-www-8k8__promo-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-www-8k8__promo-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .page-www-8k8__promo-title {
        font-size: 1.5em;
        color: #ffcc00;
        margin-bottom: 15px;
    }

    .page-www-8k8__promo-description {
        font-size: 1em;
        color: #cccccc;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .page-www-8k8__promo-button {
        background-color: #e6b800;
        color: #1a1a2e;
        padding: 10px 20px;
        border-radius: 5px;
        font-weight: bold;
        text-align: center;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: none;
    }

    .page-www-8k8__promo-button:hover {
        background-color: #ffcc00;
    }

    /* Game Categories */
    .page-www-8k8__categories-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .page-www-8k8__category-card {
        background-color: #333366;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        text-align: center;
        transition: transform 0.3s ease;
    }

    .page-www-8k8__category-card:hover {
        transform: translateY(-5px);
    }

    .page-www-8k8__category-image {
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
    }

    .page-www-8k8__category-title {
        font-size: 1.3em;
        color: #ffcc00;
        padding: 15px;
        margin: 0;
    }

    /* Features List */
    .page-www-8k8__features-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        list-style: none;
        padding: 0;
    }

    .page-www-8k8__feature-item {
        background-color: #333366;
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        display: flex;
        align-items: flex-start;
        gap: 15px;
        box-sizing: border-box; /* Important for list items */
    }

    .page-www-8k8__feature-icon {
        width: 200px; /* Minimum 200x200 */
        height: 200px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .page-www-8k8__feature-content h3 {
        color: #ffcc00;
        font-size: 1.4em;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .page-www-8k8__feature-content p {
        color: #cccccc;
        font-size: 0.95em;
        margin: 0;
    }

    /* Payment Providers */
    .page-www-8k8__payment-providers {
        text-align: center;
        margin-top: 50px;
    }

    .page-www-8k8__payment-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .page-www-8k8__payment-logo {
        height: 100px; /* Minimum 200x100, so height 100px is okay for a logo */
        width: auto;
        max-width: 200px; /* Minimum 200x100 */
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .page-www-8k8__payment-logo:hover {
        transform: scale(1.05);
    }

    /* Game Providers */
    .page-www-8k8__game-providers {
        text-align: center;
        margin-top: 50px;
    }

    .page-www-8k8__game-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }

    .page-www-8k8__game-logo {
        height: 100px; /* Minimum 200x100 */
        width: auto;
        max-width: 200px; /* Minimum 200x100 */
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .page-www-8k8__game-logo:hover {
        transform: scale(1.05);
    }

    /* FAQ Section */
    .page-www-8k8__faq-section {
        background-color: #22223b;
        border-radius: 15px;
        padding: 60px 20px;
        margin-bottom: 40px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

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

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

    .page-www-8k8__faq-item {
        background-color: #333366;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .page-www-8k8__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        cursor: pointer;
        background-color: #333366;
        color: #ffcc00;
        font-size: 1.2em;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-www-8k8__faq-question:hover {
        background-color: #444488;
    }

    .page-www-8k8__faq-question h3 {
        margin: 0;
        font-size: 1.2em;
        color: #ffcc00;
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

    .page-www-8k8__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ffcc00;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click event */
    }

    .page-www-8k8__faq-item.active .page-www-8k8__faq-toggle {
        transform: rotate(45deg); /* Plus to X (minus) */
    }

    .page-www-8k8__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        opacity: 0;
        background-color: #22223b;
        color: #cccccc;
        font-size: 1em;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

    .page-www-8k8__faq-item.active .page-www-8k8__faq-answer {
        max-height: 2000px !important; /* Sufficiently large value */
        padding: 20px 25px !important;
        opacity: 1;
    }

    .page-www-8k8__faq-answer p {
        margin: 0;
    }

    /* Call to Action */
    .page-www-8k8__cta-section {
        text-align: center;
        background-color: #0f0f1d;
        padding: 80px 20px;
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .page-www-8k8__cta-title {
        font-size: 2.8em;
        color: #ffcc00;
        margin-bottom: 25px;
    }

    .page-www-8k8__cta-description {
        font-size: 1.2em;
        color: #ffffff;
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive adjustments */
    @media (max-width: 1024px) {
        .page-www-8k8__hero-title {
            font-size: 3em;
        }
        .page-www-8k8__hero-description {
            font-size: 1.2em;
        }
        .page-www-8k8__section-title,
        .page-www-8k8__faq-title,
        .page-www-8k8__cta-title {
            font-size: 2em;
        }
    }

    @media (max-width: 768px) {
        .page-www-8k8__container {
            padding: 15px;
        }
        .page-www-8k8__hero-section {
            padding-bottom: 60px;
        }
        .page-www-8k8__hero-content {
            padding: 30px 15px;
        }
        .page-www-8k8__hero-title {
            font-size: 2.5em;
        }
        .page-www-8k8__hero-description {
            font-size: 1.1em;
        }
        .page-www-8k8__hero-buttons {
            flex-direction: column;
            gap: 15px;
        }
        .page-www-8k8__button {
            width: 100%;
            padding: 12px 20px;
            font-size: 1em;
        }
        .page-www-8k8__floating-buttons {
            bottom: 15px;
            right: 15px;
        }
        .page-www-8k8__floating-button {
            padding: 10px 20px;
            font-size: 0.9em;
        }

        /* List item specific responsive requirements */
        .page-www-8k8__features-list {
            grid-template-columns: 1fr; /* Single column on mobile */
            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-www-8k8__feature-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 20px !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
        }
        .page-www-8k8__feature-content h3 {
            font-size: 1.2em;
        }
        .page-www-8k8__feature-content p {
            font-size: 0.9em;
        }

        .page-www-8k8__promotions-grid,
        .page-www-8k8__categories-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .page-www-8k8__promo-content,
        .page-www-8k8__category-card {
            padding: 15px;
        }

        .page-www-8k8__promo-title {
            font-size: 1.3em;
        }

        .page-www-8k8__faq-question {
            padding: 15px 20px;
            font-size: 1.1em;
        }
        .page-www-8k8__faq-question h3 {
            font-size: 1.1em;
        }
        .page-www-8k8__faq-answer {
            padding: 0 20px;
        }
        .page-www-8k8__faq-item.active .page-www-8k8__faq-answer {
            padding: 15px 20px !important;
        }

        .page-www-8k8__cta-title {
            font-size: 2em;
        }
        .page-www-8k8__cta-description {
            font-size: 1em;
        }

        /* Images responsive */
        .page-www-8k8__hero-image,
        .page-www-8k8__promo-image,
        .page-www-8k8__category-image,
        .page-www-8k8__feature-icon,
        .page-www-8k8__payment-logo,
        .page-www-8k8__game-logo {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
            overflow: hidden !important;
        }
    }

    @media (max-width: 480px) {
        .page-www-8k8__hero-title {
            font-size: 2em;
        }
        .page-www-8k8__section-title,
        .page-www-8k8__faq-title,
        .page-www-8k8__cta-title {
            font-size: 1.8em;
        }
        .page-www-8k8__button {
            font-size: 0.9em;
            padding: 10px 15px;
        }
        .page-www-8k8__floating-buttons {
            bottom: 10px;
            right: 10px;
        }
        .page-www-8k8__floating-button {
            padding: 8px 15px;
            font-size: 0.85em;
        }
        .page-www-8k8__promo-card,
        .page-www-8k8__category-card,
        .page-www-8k8__feature-item,
        .page-www-8k8__faq-item {
            padding: 15px;
        }
        .page-www-8k8__faq-question {
            font-size: 1em;
        }
        .page-www-8k8__faq-question h3 {
            font-size: 1em;
        }
        .page-www-8k8__faq-toggle {
            font-size: 1.2em;
        }
    }
  