
    :root {
        --page-99kl-love-primary-color: #e44d26; /* A vibrant orange-red, common in betting sites */
        --page-99kl-love-secondary-color: #333;
        --page-99kl-love-accent-color: #f7b731; /* Gold/yellow for highlights */
        --page-99kl-love-background-dark: #1a1a1a; /* Dark background */
        --page-99kl-love-background-light: #2c2c2c; /* Slightly lighter dark */
        --page-99kl-love-text-light: #f0f0f0;
        --page-99kl-love-text-dark: #333;
        --page-99kl-love-border-radius: 8px;
        --page-99kl-love-spacing-md: 20px;
        --page-99kl-love-spacing-lg: 40px;
    }

    .page-99kl-love {
        font-family: 'Arial', sans-serif;
        color: var(--page-99kl-love-text-light);
        background-color: var(--page-99kl-love-background-dark);
        line-height: 1.6;
        padding-top: var(--header-offset, 122px); /* Fallback to 122px if --header-offset is not defined */
    }

    .page-99kl-love__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--page-99kl-love-spacing-md);
    }

    /* Hero Section */
    .page-99kl-love__hero-section {
        position: relative;
        background-color: var(--page-99kl-love-background-dark);
        padding: 10px 0 var(--page-99kl-love-spacing-lg); /* Rely on body padding-top for main offset */
        text-align: center;
        overflow: hidden;
    }

    .page-99kl-love__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.3;
        z-index: 0;
    }

    .page-99kl-love__hero-content {
        position: relative;
        z-index: 1;
        padding: var(--page-99kl-love-spacing-lg) var(--page-99kl-love-spacing-md);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 400px; /* Ensure content is visible */
    }

    .page-99kl-love__hero-title {
        font-size: 2.8em;
        color: var(--page-99kl-love-accent-color);
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        line-height: 1.2;
    }

    .page-99kl-love__hero-subtitle {
        font-size: 1.3em;
        color: var(--page-99kl-love-text-light);
        margin-bottom: var(--page-99kl-love-spacing-md);
        max-width: 800px;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .page-99kl-love__hero-buttons {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .page-99kl-love__button {
        display: inline-block;
        padding: 12px 25px;
        background-color: var(--page-99kl-love-primary-color);
        color: var(--page-99kl-love-text-light);
        border: none;
        border-radius: var(--page-99kl-love-border-radius);
        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;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }

    .page-99kl-love__button:hover {
        background-color: #ff6a42;
        transform: translateY(-2px);
    }

    .page-99kl-love__button--secondary {
        background-color: var(--page-99kl-love-secondary-color);
    }

    .page-99kl-love__button--secondary:hover {
        background-color: #555;
    }

    /* Floating Buttons */
    .page-99kl-love__floating-buttons {
        position: fixed;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 1000;
    }

    .page-99kl-love__floating-button {
        padding: 12px 20px;
        background-color: var(--page-99kl-love-primary-color);
        color: var(--page-99kl-love-text-light);
        border: none;
        border-radius: 50px; /* Pill shape */
        font-size: 1em;
        font-weight: bold;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
        transition: background-color 0.3s ease, transform 0.2s ease;
        text-decoration: none; /* Ensure no underline */
        text-align: center;
        min-width: 100px;
    }

    .page-99kl-love__floating-button:hover {
        background-color: #ff6a42;
        transform: translateY(-3px);
    }

    /* Section Styling */
    .page-99kl-love__section {
        padding: var(--page-99kl-love-spacing-lg) 0;
        background-color: var(--page-99kl-love-background-light);
        margin-bottom: 10px; /* Small separation between sections */
    }

    .page-99kl-love__section:nth-of-type(even) {
        background-color: var(--page-99kl-love-background-dark);
    }

    .page-99kl-love__section-title {
        font-size: 2.2em;
        color: var(--page-99kl-love-accent-color);
        text-align: center;
        margin-bottom: var(--page-99kl-love-spacing-lg);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .page-99kl-love__section-subtitle {
        font-size: 1.1em;
        color: var(--page-99kl-love-text-light);
        text-align: center;
        margin-bottom: var(--page-99kl-love-spacing-md);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* About Section */
    .page-99kl-love__about-content {
        display: flex;
        flex-direction: column;
        gap: var(--page-99kl-love-spacing-md);
        align-items: center;
    }

    .page-99kl-love__about-text {
        text-align: center;
        font-size: 1.1em;
        max-width: 900px;
    }

    .page-99kl-love__about-image {
        width: 100%;
        max-width: 600px;
        border-radius: var(--page-99kl-love-border-radius);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
        display: block;
        margin-top: var(--page-99kl-love-spacing-md);
        max-width: 100%; /* Responsive image */
        height: auto; /* Responsive image */
        box-sizing: border-box;
    }

    /* Game Categories Section */
    .page-99kl-love__game-categories {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--page-99kl-love-spacing-md);
        margin-top: var(--page-99kl-love-spacing-md);
    }

    .page-99kl-love__game-card {
        background-color: var(--page-99kl-love-background-dark);
        border-radius: var(--page-99kl-love-border-radius);
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%; /* Ensure cards are same height */
    }

    .page-99kl-love__game-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-99kl-love__game-image-wrapper {
        width: 100%;
        max-height: 200px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .page-99kl-love__game-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
        max-width: 100%; /* Responsive image */
        height: auto; /* Responsive image */
        box-sizing: border-box;
    }

    .page-99kl-love__game-card:hover .page-99kl-love__game-image {
        transform: scale(1.05);
    }

    .page-99kl-love__game-title {
        font-size: 1.4em;
        color: var(--page-99kl-love-accent-color);
        padding: 15px;
        margin-bottom: 0;
    }

    .page-99kl-love__game-description {
        font-size: 0.95em;
        color: var(--page-99kl-love-text-light);
        padding: 0 15px 15px;
        flex-grow: 1; /* Allow description to take available space */
    }

    /* Promotions Section */
    .page-99kl-love__promotions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: var(--page-99kl-love-spacing-md);
    }

    .page-99kl-love__promo-card {
        background-color: var(--page-99kl-love-background-dark);
        border-radius: var(--page-99kl-love-border-radius);
        padding: var(--page-99kl-love-spacing-md);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .page-99kl-love__promo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
    }

    .page-99kl-love__promo-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
        border-radius: 50%;
        object-fit: cover;
        max-width: 100%; /* Responsive image */
        height: auto; /* Responsive image */
        box-sizing: border-box;
    }

    .page-99kl-love__promo-title {
        font-size: 1.5em;
        color: var(--page-99kl-love-primary-color);
        margin-bottom: 10px;
    }

    .page-99kl-love__promo-description {
        font-size: 1em;
        color: var(--page-99kl-love-text-light);
        margin-bottom: 15px;
    }

    /* Features/Why Choose Us Section */
    .page-99kl-love__features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: var(--page-99kl-love-spacing-md);
    }

    .page-99kl-love__feature-item {
        background-color: var(--page-99kl-love-background-dark);
        border-radius: var(--page-99kl-love-border-radius);
        padding: var(--page-99kl-love-spacing-md);
        text-align: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .page-99kl-love__feature-title {
        font-size: 1.3em;
        color: var(--page-99kl-love-primary-color);
        margin-bottom: 10px;
    }

    .page-99kl-love__feature-description {
        font-size: 0.95em;
        color: var(--page-99kl-love-text-light);
    }

    /* Payment Methods & Providers */
    .page-99kl-love__logos-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
        margin-top: var(--page-99kl-love-spacing-md);
        justify-items: center;
        align-items: center;
    }

    .page-99kl-love__logo-item {
        background-color: var(--page-99kl-love-background-dark);
        padding: 10px;
        border-radius: var(--page-99kl-love-border-radius);
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px;
        width: 100%;
        max-width: 150px;
        box-sizing: border-box;
    }

    .page-99kl-love__logo-image {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        max-width: 100%; /* Responsive image */
        height: auto; /* Responsive image */
        box-sizing: border-box;
    }

    /* FAQ Section */
    .page-99kl-love__faq-section {
        background-color: var(--page-99kl-love-background-light);
        padding: var(--page-99kl-love-spacing-lg) 0;
    }

    .page-99kl-love__faq-item {
        background-color: var(--page-99kl-love-background-dark);
        margin-bottom: 10px;
        border-radius: var(--page-99kl-love-border-radius);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        overflow: hidden;
    }

    .page-99kl-love__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px var(--page-99kl-love-spacing-md);
        cursor: pointer;
        background-color: var(--page-99kl-love-secondary-color);
        color: var(--page-99kl-love-text-light);
        font-weight: bold;
        font-size: 1.1em;
        transition: background-color 0.3s ease;
        user-select: none;
    }

    .page-99kl-love__faq-question:hover {
        background-color: #555;
    }

    .page-99kl-love__faq-question h3 {
        margin: 0;
        font-size: 1.1em;
        color: var(--page-99kl-love-text-light);
        pointer-events: none; /* Prevent h3 from blocking click event */
    }

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

    .page-99kl-love__faq-item.active .page-99kl-love__faq-toggle {
        transform: rotate(45deg); /* Change + to X visually */
    }

    .page-99kl-love__faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 var(--page-99kl-love-spacing-md);
        color: var(--page-99kl-love-text-light);
        background-color: var(--page-99kl-love-background-dark);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
        opacity: 0;
    }

    .page-99kl-love__faq-item.active .page-99kl-love__faq-answer {
        max-height: 2000px !important; /* Sufficiently large height */
        padding: 20px var(--page-99kl-love-spacing-md) !important;
        opacity: 1;
    }

    /* Call to Action Section */
    .page-99kl-love__cta-section {
        text-align: center;
        padding: var(--page-99kl-love-spacing-lg) 0;
        background-color: var(--page-99kl-love-primary-color);
        color: var(--page-99kl-love-text-light);
    }

    .page-99kl-love__cta-title {
        font-size: 2.5em;
        margin-bottom: 15px;
        color: var(--page-99kl-love-text-light);
    }

    .page-99kl-love__cta-description {
        font-size: 1.2em;
        margin-bottom: var(--page-99kl-love-spacing-md);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-99kl-love__hero-title {
            font-size: 2em;
        }

        .page-99kl-love__hero-subtitle {
            font-size: 1em;
        }

        .page-99kl-love__section-title {
            font-size: 1.8em;
        }

        .page-99kl-love__game-categories,
        .page-99kl-love__promotions-grid,
        .page-99kl-love__features-grid,
        .page-99kl-love__logos-grid {
            grid-template-columns: 1fr;
            padding: 0 var(--page-99kl-love-spacing-md);
        }

        .page-99kl-love__game-card,
        .page-99kl-love__promo-card,
        .page-99kl-love__feature-item,
        .page-99kl-love__logo-item {
            width: 100% !important;
            max-width: 100% !important;
            box-sizing: border-box !important;
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 15px !important; /* Adjust padding for smaller screens */
            padding-right: 15px !important;
        }
        
        .page-99kl-love__game-card .page-99kl-love__game-description,
        .page-99kl-love__promo-card .page-99kl-love__promo-description,
        .page-99kl-love__feature-item .page-99kl-love__feature-description {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: break-word !important;
        }

        .page-99kl-love__about-image,
        .page-99kl-love__game-image,
        .page-99kl-love__promo-icon,
        .page-99kl-love__logo-image {
            max-width: 100% !important;
            height: auto !important;
            box-sizing: border-box !important;
        }

        .page-99kl-love__floating-buttons {
            flex-direction: row;
            width: 100%;
            left: 0;
            right: 0;
            bottom: 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            background-color: var(--page-99kl-love-background-dark);
            padding: 10px;
            justify-content: space-around;
            border-radius: 0;
            box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.4);
        }

        .page-99kl-love__floating-button {
            flex: 1;
            margin: 0 5px;
            border-radius: 8px;
            min-width: unset;
        }

        .page-99kl-love__cta-title {
            font-size: 2em;
        }

        .page-99kl-love__cta-description {
            font-size: 1em;
        }
        
        .page-99kl-love__faq-question,
        .page-99kl-love__faq-answer {
            padding-left: 15px !important;
            padding-right: 15px !important;
        }
    }

    @media (max-width: 480px) {
        .page-99kl-love__hero-buttons {
            flex-direction: column;
            gap: 10px;
        }
        .page-99kl-love__button {
            width: 80%;
            max-width: 250px;
        }
    }
  