
    /* CSS styles for page-20lc88 */
    :root {
        --page-20lc88-primary-color: #e44d26; /* A vibrant orange/red */
        --page-20lc88-secondary-color: #f7b731; /* A bright yellow/orange */
        --page-20lc88-background-dark: #1a1a1a;
        --page-20lc88-background-light: #2c2c2c;
        --page-20lc88-text-light: #f0f0f0;
        --page-20lc88-text-dark: #333333;
        --page-20lc88-border-color: #444444;
        --page-20lc88-accent-color: #00bfff; /* A bright blue for highlights */
    }

    .page-20lc88 {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--page-20lc88-text-light);
        background-color: var(--page-20lc88-background-dark);
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback for header offset */
    }

    /* General container and section styling */
    .page-20lc88__section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
    }

    .page-20lc88__section--dark {
        background-color: var(--page-20lc88-background-light);
    }

    .page-20lc88__heading {
        font-size: 2.5em;
        color: var(--page-20lc88-primary-color);
        margin-bottom: 20px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .page-20lc88__subheading {
        font-size: 1.8em;
        color: var(--page-20lc88-secondary-color);
        margin-bottom: 15px;
        font-weight: 600;
    }

    .page-20lc88__paragraph {
        font-size: 1.1em;
        margin-bottom: 20px;
        color: var(--page-20lc88-text-light);
    }

    /* Hero Section */
    .page-20lc88__hero-section {
        position: relative;
        padding: 10px 0 60px 0; /* Rely on body padding for header offset, add a small top padding */
        background-color: var(--page-20lc88-background-dark);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 400px;
    }

    .page-20lc88__hero-content {
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 10px;
    }

    .page-20lc88__hero-title {
        font-size: 3em;
        color: var(--page-20lc88-secondary-color);
        margin-bottom: 10px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-20lc88__hero-description {
        font-size: 1.3em;
        color: var(--page-20lc88-text-light);
        margin-bottom: 30px;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    }

    .page-20lc88__hero-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        object-fit: cover;
    }

    /* Floating Buttons */
    .page-20lc88__floating-buttons {
        position: fixed;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .page-20lc88__button {
        display: block;
        padding: 12px 25px;
        border-radius: 30px;
        font-size: 1.1em;
        font-weight: bold;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        border: none;
        color: var(--page-20lc88-text-light);
    }

    .page-20lc88__button--register {
        background-color: var(--page-20lc88-primary-color);
    }

    .page-20lc88__button--register:hover {
        background-color: #ff6f40;
        transform: translateY(-2px);
    }

    .page-20lc88__button--login {
        background-color: var(--page-20lc88-accent-color);
    }

    .page-20lc88__button--login:hover {
        background-color: #4ddbff;
        transform: translateY(-2px);
    }

    /* Game Categories */
    .page-20lc88__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-20lc88__game-card {
        background-color: var(--page-20lc88-background-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        display: flex;
        flex-direction: column;
    }

    .page-20lc88__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-20lc88__game-card-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-20lc88__game-card-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .page-20lc88__game-card:hover .page-20lc88__game-card-image {
        transform: scale(1.05);
    }

    .page-20lc88__game-card-content {
        padding: 20px;
        flex-grow: 1;
    }

    .page-20lc88__game-card-title {
        font-size: 1.5em;
        color: var(--page-20lc88-secondary-color);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .page-20lc88__game-card-description {
        font-size: 0.95em;
        color: var(--page-20lc88-text-light);
    }

    /* Promotions Section */
    .page-20lc88__promotion-list {
        list-style: none;
        padding: 0;
        margin: 30px 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .page-20lc88__promotion-item {
        background-color: var(--page-20lc88-background-light);
        border-radius: 10px;
        padding: 25px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        text-align: left;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-left: 5px solid var(--page-20lc88-primary-color);
        box-sizing: border-box; /* Important for responsive lists */
    }

    .page-20lc88__promotion-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .page-20lc88__promotion-title {
        font-size: 1.3em;
        color: var(--page-20lc88-secondary-color);
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-20lc88__promotion-description {
        font-size: 0.9em;
        color: var(--page-20lc88-text-light);
        margin-bottom: 15px;
    }

    .page-20lc88__promotion-cta {
        display: inline-block;
        background-color: var(--page-20lc88-primary-color);
        color: var(--page-20lc88-text-light);
        padding: 8px 15px;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-20lc88__promotion-cta:hover {
        background-color: #ff6f40;
    }

    /* News Section */
    .page-20lc88__news-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-20lc88__news-article {
        background-color: var(--page-20lc88-background-light);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: left;
        box-sizing: border-box; /* Important for responsive lists */
    }

    .page-20lc88__news-article:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .page-20lc88__news-image-container {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-20lc88__news-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

    .page-20lc88__news-content {
        padding: 20px;
    }

    .page-20lc88__news-date {
        font-size: 0.85em;
        color: #aaa;
        margin-bottom: 10px;
    }

    .page-20lc88__news-title {
        font-size: 1.4em;
        color: var(--page-20lc88-secondary-color);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .page-20lc88__news-summary {
        font-size: 0.95em;
        color: var(--page-20lc88-text-light);
    }

    /* Partners and Payments */
    .page-20lc88__partner-grid,
    .page-20lc88__payment-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        margin-top: 30px;
        align-items: center;
        justify-items: center;
    }

    .page-20lc88__partner-item,
    .page-20lc88__payment-item {
        background-color: var(--page-20lc88-background-light);
        border-radius: 8px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px; /* Uniform height for logos */
        box-sizing: border-box; /* Important for responsive lists */
    }

    .page-20lc88__partner-item:hover,
    .page-20lc88__payment-item:hover {
        transform: translateY(-3px);
    }

    .page-20lc88__partner-logo,
    .page-20lc88__payment-logo {
        max-width: 100%;
        max-height: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }

    /* FAQ Section */
    .page-20lc88__faq-container {
        max-width: 800px;
        margin: 30px auto;
        text-align: left;
    }

    .page-20lc88__faq-item {
        background-color: var(--page-20lc88-background-light);
        border: 1px solid var(--page-20lc88-border-color);
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        box-sizing: border-box; /* Important for responsive lists */
    }

    .page-20lc88__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        cursor: pointer;
        background-color: var(--page-20lc88-primary-color);
        color: var(--page-20lc88-text-light);
        font-size: 1.2em;
        font-weight: bold;
        user-select: none;
        transition: background-color 0.3s ease;
    }

    .page-20lc88__faq-question:hover {
        background-color: #ff6f40;
    }

    .page-20lc88__faq-question h3 {
        margin: 0;
        flex-grow: 1;
        pointer-events: none; /* Prevent h3 from blocking click event */
        color: inherit; /* Ensure h3 inherits color from parent */
    }

    .page-20lc88__faq-toggle {
        font-size: 1.5em;
        line-height: 1;
        margin-left: 10px;
        transition: transform 0.3s ease;
        pointer-events: none; /* Prevent toggle icon from blocking click event */
    }

    .page-20lc88__faq-item.active .page-20lc88__faq-toggle {
        transform: rotate(45deg); /* Change + to X or similar */
    }

    .page-20lc88__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 20px;
        opacity: 0;
        background-color: var(--page-20lc88-background-dark);
        color: var(--page-20lc88-text-light);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    }

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

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .page-20lc88 {
            padding-top: var(--header-offset, 122px); /* Ensure body padding is applied */
        }
        .page-20lc88__section {
            padding: 30px 15px;
        }

        .page-20lc88__heading {
            font-size: 2em;
        }

        .page-20lc88__subheading {
            font-size: 1.5em;
        }

        .page-20lc88__hero-title {
            font-size: 2.2em;
        }

        .page-20lc88__hero-description {
            font-size: 1em;
        }

        .page-20lc88__floating-buttons {
            right: 10px;
            gap: 8px;
        }

        .page-20lc88__button {
            padding: 10px 20px;
            font-size: 1em;
        }

        .page-20lc88__game-categories,
        .page-20lc88__promotion-list,
        .page-20lc88__news-grid,
        .page-20lc88__partner-grid,
        .page-20lc88__payment-grid {
            grid-template-columns: 1fr; /* Stack items on small screens */
            gap: 20px;
        }

        /* Responsive adjustments for list items */
        .page-20lc88__game-card,
        .page-20lc88__promotion-item,
        .page-20lc88__news-article,
        .page-20lc88__partner-item,
        .page-20lc88__payment-item,
        .page-20lc88__faq-item {
            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; /* Ensure text wraps */
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }
        
        .page-20lc88__promotion-list,
        .page-20lc88__news-grid,
        .page-20lc88__partner-grid,
        .page-20lc88__payment-grid,
        .page-20lc88__game-categories {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            padding: 0 !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .page-20lc88__faq-question {
            padding: 12px 15px;
            font-size: 1.1em;
        }

        .page-20lc88__faq-answer {
            padding: 15px 15px;
        }

        .page-20lc88__faq-item.active .page-20lc88__faq-answer {
            padding: 15px 15px !important;
        }
    }

    @media (max-width: 480px) {
        .page-20lc88__hero-title {
            font-size: 1.8em;
        }
        .page-20lc88__hero-description {
            font-size: 0.9em;
        }
        .page-20lc88__floating-buttons {
            right: 5px;
        }
        .page-20lc88__button {
            padding: 8px 15px;
            font-size: 0.9em;
        }
    }
  