
    /* Reset & Base Styles */
    .page-kv999today {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f4f7f6;
        overflow-x: hidden;
    }

    .page-kv999today__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        box-sizing: border-box;
    }

    /* Hero Section */
    .page-kv999today__hero-section {
        position: relative;
        width: 100%;
        min-height: 400px; /* Adjusted for banner image aspect ratio */
        background-color: #0d1a26;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
        padding-top: 10px; /* For fixed header clearance - Desktop */
        box-sizing: border-box;
        overflow: hidden;
    }

    .page-kv999today__hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
        z-index: 1;
    }

    .page-kv999today__hero-content {
        position: relative;
        z-index: 2;
        padding: 20px;
        max-width: 900px;
    }

    .page-kv999today__hero-title {
        font-size: 2.8em;
        margin-bottom: 15px;
        color: #ffe066; /* Gold/Yellow for prominence */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

    .page-kv999today__hero-subtitle {
        font-size: 1.3em;
        margin-bottom: 30px;
        color: #f0f0f0;
    }

    /* Floating CTA Button */
    .page-kv999today__floating-cta {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(90deg, #ff6b6b, #ee5253); /* Red gradient */
        color: #fff;
        padding: 15px 30px;
        border-radius: 50px;
        font-size: 1.2em;
        font-weight: bold;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        white-space: nowrap; /* Prevent text wrapping */
    }

    .page-kv999today__floating-cta:hover {
        transform: translateX(-50%) translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    /* Section Styles */
    .page-kv999today__section {
        padding: 40px 0;
        background-color: #fff;
        margin-bottom: 20px;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .page-kv999today__section--dark {
        background-color: #2c3e50; /* Darker background for contrast */
        color: #ecf0f1;
    }

    .page-kv999today__section-title {
        font-size: 2.2em;
        color: #2c3e50;
        text-align: center;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 10px;
    }

    .page-kv999today__section-title--dark {
        color: #ffe066;
    }

    .page-kv999today__section-title::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: #ff6b6b;
        border-radius: 2px;
    }
    
    .page-kv999today__section-title--dark::after {
        background-color: #ffe066;
    }

    .page-kv999today__text-content {
        font-size: 1.1em;
        margin-bottom: 20px;
        text-align: center;
    }

    /* Game Categories */
    .page-kv999today__game-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        padding: 20px 0;
    }

    .page-kv999today__game-card {
        background-color: #fcfcfc;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .page-kv999today__game-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .page-kv999today__game-card-image-wrapper {
        width: 100%;
        height: 200px; /* Fixed height for image */
        overflow: hidden;
    }

    .page-kv999today__game-card-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        max-width: 100%; /* Ensure responsiveness */
    }

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

    .page-kv999today__game-card-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .page-kv999today__game-card-title {
        font-size: 1.5em;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-kv999today__game-card-description {
        font-size: 0.95em;
        color: #666;
        margin-bottom: 15px;
    }

    .page-kv999today__game-card-button {
        display: inline-block;
        background-color: #ff6b6b;
        color: #fff;
        padding: 10px 20px;
        border-radius: 25px;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-kv999today__game-card-button:hover {
        background-color: #e74c3c;
    }

    /* How To Join Section */
    .page-kv999today__steps-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 30px;
    }

    .page-kv999today__step-item {
        background-color: #fefefe;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        text-align: center;
        border-top: 5px solid #ff6b6b;
        transition: transform 0.3s ease;
    }

    .page-kv999today__step-item:hover {
        transform: translateY(-5px);
    }

    .page-kv999today__step-icon {
        font-size: 3em;
        color: #ff6b6b;
        margin-bottom: 15px;
    }

    .page-kv999today__step-title {
        font-size: 1.3em;
        color: #2c3e50;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .page-kv999today__step-description {
        font-size: 0.95em;
        color: #555;
    }

    /* Promotions Section */
    .page-kv999today__promotion-card {
        background-color: #fefefe;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        border: 2px solid #ffe066;
    }

    .page-kv999today__promotion-title {
        font-size: 2em;
        color: #ff6b6b;
        margin-bottom: 15px;
        font-weight: bold;
    }

    .page-kv999today__promotion-description {
        font-size: 1.1em;
        color: #444;
        margin-bottom: 25px;
    }

    .page-kv999today__promotion-button {
        display: inline-block;
        background: linear-gradient(45deg, #ffe066, #ffc107);
        color: #333;
        padding: 12px 25px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.1em;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-kv999today__promotion-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    /* FAQ Section */
    .page-kv999today__faq-list {
        max-width: 800px;
        margin: 0 auto;
        padding: 20px 0;
    }

    .page-kv999today__faq-item {
        background-color: #fefefe;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        margin-bottom: 15px;
        overflow: hidden;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .page-kv999today__faq-question {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: #f0f0f0;
        cursor: pointer;
        user-select: none;
        font-size: 1.1em;
        color: #333;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .page-kv999today__faq-question:hover {
        background-color: #e5e5e5;
    }

    .page-kv999today__faq-question h3 {
        margin: 0;
        font-size: 1.1em; /* Ensure h3 itself doesn't cause issues */
        pointer-events: none; /* Crucial for click event on parent */
    }

    .page-kv999today__faq-toggle {
        font-size: 1.5em;
        font-weight: bold;
        color: #ff6b6b;
        transition: transform 0.3s ease;
        pointer-events: none; /* Crucial for click event on parent */
    }

    .page-kv999today__faq-item.active .page-kv999today__faq-toggle {
        transform: rotate(45deg); /* Change + to X or a similar effect */
        color: #2c3e50;
    }
    
    .page-kv999today__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: #555;
        font-size: 0.95em;
    }

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

    /* General CTA Button at bottom */
    .page-kv999today__main-cta {
        text-align: center;
        margin-top: 40px;
    }

    .page-kv999today__main-cta-button {
        display: inline-block;
        background: linear-gradient(90deg, #3498db, #2980b9); /* Blue gradient */
        color: #fff;
        padding: 15px 40px;
        border-radius: 50px;
        font-size: 1.3em;
        font-weight: bold;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .page-kv999today__main-cta-button:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .page-kv999today__container {
            padding: 15px;
        }

        .page-kv999today__hero-section {
            min-height: 300px;
            padding-top: 10px; /* For fixed header clearance - Mobile */
        }

        .page-kv999today__hero-title {
            font-size: 2em;
        }

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

        .page-kv999today__section-title {
            font-size: 1.8em;
        }

        .page-kv999today__game-grid {
            grid-template-columns: 1fr;
        }
        
        .page-kv999today__game-card-image-wrapper {
            height: 180px; /* Adjust height for mobile */
        }

        .page-kv999today__steps-grid {
            grid-template-columns: 1fr;
        }

        .page-kv999today__promotion-title {
            font-size: 1.6em;
        }

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

        .page-kv999today__promotion-button,
        .page-kv999today__main-cta-button {
            padding: 12px 25px;
            font-size: 1.1em;
        }

        .page-kv999today__floating-cta {
            padding: 12px 25px;
            font-size: 1em;
            width: calc(100% - 40px); /* Adjust width for mobile */
            bottom: 15px;
        }

        /* Mobile image responsiveness */
        .page-kv999today img {
            max-width: 100% !important;
            height: auto !important;
        }
        .page-kv999today__game-card-image-wrapper,
        .page-kv999today__hero-background {
            width: 100% !important;
            max-width: 100% !important;
            overflow: hidden !important;
            box-sizing: border-box !important;
        }
    }

    @media (max-width: 480px) {
        .page-kv999today__hero-title {
            font-size: 1.6em;
        }
        .page-kv999today__hero-subtitle {
            font-size: 0.9em;
        }
        .page-kv999today__floating-cta {
            font-size: 0.9em;
            padding: 10px 20px;
        }
    }
  