
    :root {
        --page-35llwin-primary-color: #007bff; /* Blue */
        --page-35llwin-secondary-color: #6c757d; /* Grey */
        --page-35llwin-accent-color: #ffc107; /* Yellow */
        --page-35llwin-background-dark: #1a1a2e; /* Dark background for sections */
        --page-35llwin-background-light: #2e2e4a; /* Slightly lighter dark */
        --page-35llwin-text-color: #f8f9fa; /* Light text */
        --page-35llwin-border-color: #4a4a6e; /* Border for elements */
        --page-35llwin-button-hover-bg: #0056b3;
        --page-35llwin-button-hover-text: #ffffff;
        --page-35llwin-faq-bg: #3c3c5c;
        --page-35llwin-faq-border: #5a5a7e;
    }

    .page-35llwin {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--page-35llwin-text-color);
        background-color: var(--page-35llwin-background-dark);
        line-height: 1.6;
        padding-bottom: 80px; /* Space for floating buttons */
    }

    .page-35llwin__section {
        padding: 40px 20px;
        margin-bottom: 20px;
        border-radius: 8px;
        background-color: var(--page-35llwin-background-light);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-35llwin__hero-section {
        text-align: center;
        padding-top: 10px; /* Small top padding, body handles header offset */
        padding-bottom: 40px;
        background-color: var(--page-35llwin-background-dark);
        border-radius: 0;
        margin-bottom: 0;
    }

    .page-35llwin__hero-title {
        font-size: 2.8em;
        color: var(--page-35llwin-accent-color);
        margin-bottom: 15px;
        text-shadow: 0 0 10px rgba(255, 193, 7, 0.5);
    }

    .page-35llwin__hero-subtitle {
        font-size: 1.4em;
        color: var(--page-35llwin-text-color);
        margin-bottom: 25px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-35llwin__promo-button {
        display: inline-block;
        background-color: var(--page-35llwin-primary-color);
        color: #ffffff;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease, transform 0.2s ease;
        border: none;
        cursor: pointer;
    }

    .page-35llwin__promo-button:hover {
        background-color: var(--page-35llwin-button-hover-bg);
        transform: translateY(-2px);
    }

    .page-35llwin__image-container {
        margin-top: 30px;
        text-align: center; /* Center images */
    }

    .page-35llwin__hero-image {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        max-height: 400px; /* Limit hero image height on desktop */
        object-fit: cover;
    }

    .page-35llwin__content-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    .page-35llwin__heading {
        font-size: 2em;
        color: var(--page-35llwin-accent-color);
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--page-35llwin-border-color);
    }

    .page-35llwin__subheading {
        font-size: 1.5em;
        color: var(--page-35llwin-primary-color);
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .page-35llwin__text-block {
        margin-bottom: 20px;
        font-size: 1.1em;
        color: var(--page-35llwin-text-color);
    }

    .page-35llwin__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
        justify-content: center; /* Center items in grid */
    }

    .page-35llwin__game-card {
        background-color: var(--page-35llwin-background-dark);
        border: 1px solid var(--page-35llwin-border-color);
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-35llwin__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    }

    .page-35llwin__game-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-bottom: 1px solid var(--page-35llwin-border-color);
    }

    .page-35llwin__game-title {
        font-size: 1.3em;
        color: var(--page-35llwin-accent-color);
        margin: 15px 10px 10px;
    }

    .page-35llwin__game-description {
        font-size: 0.95em;
        color: var(--page-35llwin-text-color);
        padding: 0 15px;
        flex-grow: 1;
    }

    .page-35llwin__game-button {
        display: inline-block;
        background-color: var(--page-35llwin-primary-color);
        color: #ffffff;
        padding: 8px 20px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: bold;
        margin-top: 15px;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-35llwin__game-button:hover {
        background-color: var(--page-35llwin-button-hover-bg);
    }

    .page-35llwin__promo-list {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

    .page-35llwin__promo-item {
        background-color: var(--page-35llwin-background-dark);
        border: 1px solid var(--page-35llwin-border-color);
        padding: 15px 20px;
        margin-bottom: 15px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        box-sizing: border-box; /* Ensure padding and border are included in width */
    }

    .page-35llwin__promo-icon {
        width: 200px; /* Min size for image, not small icon */
        height: 200px; /* Min size for image, not small icon */
        margin-right: 15px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .page-35llwin__promo-details {
        flex-grow: 1;
    }

    .page-35llwin__promo-title {
        font-size: 1.2em;
        color: var(--page-35llwin-primary-color);
        margin-bottom: 5px;
    }

    .page-35llwin__promo-description {
        font-size: 0.95em;
        color: var(--page-35llwin-text-color);
    }

    .page-35llwin__faq-section {
        background-color: var(--page-35llwin-background-light);
        padding: 40px 20px;
        margin-top: 20px;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .page-35llwin__faq-heading {
        font-size: 2em;
        color: var(--page-35llwin-accent-color);
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--page-35llwin-border-color);
    }

    .page-35llwin__faq-item {
        background-color: var(--page-35llwin-faq-bg);
        border: 1px solid var(--page-35llwin-faq-border);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
    }

    .page-35llwin__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        user-select: none;
        background-color: var(--page-35llwin-background-dark);
        border-bottom: 1px solid var(--page-35llwin-faq-border);
        transition: background-color 0.3s ease;
    }

    .page-35llwin__faq-question:hover {
        background-color: #3a3a5a;
    }

    .page-35llwin__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--page-35llwin-primary-color);
        pointer-events: none; /* Prevent h3 from blocking click */
    }

    .page-35llwin__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: var(--page-35llwin-accent-color);
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle from blocking click */
    }

    .page-35llwin__faq-item.active .page-35llwin__faq-toggle {
        transform: rotate(45deg); /* Change '+' to 'x' visually */
    }

    .page-35llwin__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: var(--page-35llwin-text-color);
        background-color: var(--page-35llwin-faq-bg);
    }

    .page-35llwin__faq-item.active .page-35llwin__faq-answer {
        max-height: 2000px !important; /* Sufficiently large to contain content */
        padding: 20px 15px !important;
        opacity: 1;
    }

    .page-35llwin__faq-answer p {
        margin: 0;
        padding-bottom: 10px;
    }

    .page-35llwin__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-35llwin__register-button,
    .page-35llwin__login-button {
        background-color: var(--page-35llwin-primary-color);
        color: #ffffff;
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        transition: background-color 0.3s ease, transform 0.2s ease;
        min-width: 120px; /* Ensure buttons have consistent width */
    }

    .page-35llwin__register-button:hover,
    .page-35llwin__login-button:hover {
        background-color: var(--page-35llwin-button-hover-bg);
        transform: translateY(-2px);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-35llwin__hero-title {
            font-size: 2em;
        }

        .page-35llwin__hero-subtitle {
            font-size: 1.1em;
        }

        .page-35llwin__heading {
            font-size: 1.8em;
        }

        .page-35llwin__subheading {
            font-size: 1.3em;
        }

        .page-35llwin__section {
            padding: 25px 15px;
        }

        .page-35llwin__game-grid {
            grid-template-columns: 1fr; /* Single column on mobile */
        }

        .page-35llwin__game-image {
            height: 180px;
        }

        .page-35llwin__promo-item {
            flex-direction: column;
            align-items: flex-start;
            padding: 15px;
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-35llwin__promo-icon {
            margin-bottom: 10px;
            margin-right: 0;
            width: 100% !important; /* Ensure image takes full width in mobile list item */
            height: auto !important;
            max-width: 200px !important; /* Maintain original aspect ratio if image is smaller */
            object-fit: contain;
        }

        .page-35llwin__promo-list {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-35llwin__faq-question {
            padding: 12px 15px;
        }

        .page-35llwin__faq-question h3 {
            font-size: 1em;
        }

        .page-35llwin__faq-answer {
            padding: 0 10px;
        }

        .page-35llwin__faq-item.active .page-35llwin__faq-answer {
            padding: 15px 10px !important;
        }

        .page-35llwin__floating-buttons {
            right: 15px;
            bottom: 15px;
        }

        /* Image responsiveness */
        .page-35llwin__hero-image,
        .page-35llwin__game-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }
        .page-35llwin__image-container,
        .page-35llwin__game-card {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }
  