
        .page-k9ccclup {
            font-family: 'Arial', sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #f8f9fa;
        }

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

        .page-k9ccclup__hero-section {
            position: relative;
            text-align: center;
            padding-top: 10px; /* Adjusted for shared header */
            padding-bottom: 40px;
            background-color: #f8f9fa;
        }

        .page-k9ccclup__hero-image-wrapper {
            width: 100%;
            max-width: 100%;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .page-k9ccclup__hero-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }

        .page-k9ccclup__hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .page-k9ccclup__main-title {
            font-size: 2.8em;
            color: #2563eb;
            margin-bottom: 15px;
            line-height: 1.2;
            font-weight: 700;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .page-k9ccclup__tagline {
            font-size: 1.2em;
            color: #64748b;
            margin-bottom: 30px;
        }

        .page-k9ccclup__button-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        .page-k9ccclup__btn-primary,
        .page-k9ccclup__btn-secondary {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
            box-sizing: border-box;
            max-width: 100%;
            white-space: normal;
            word-wrap: break-word;
            text-align: center;
        }

        .page-k9ccclup__btn-primary {
            background-color: #2563eb;
            color: #ffffff;
            border: 2px solid #2563eb;
        }

        .page-k9ccclup__btn-primary:hover {
            background-color: #1a4dbe;
            transform: translateY(-2px);
        }

        .page-k9ccclup__btn-secondary {
            background-color: #ffffff;
            color: #2563eb;
            border: 2px solid #2563eb;
        }

        .page-k9ccclup__btn-secondary:hover {
            background-color: #e0e7ff;
            transform: translateY(-2px);
        }

        .page-k9ccclup__section-title {
            font-size: 2.2em;
            color: #2563eb;
            text-align: center;
            margin-bottom: 30px;
            margin-top: 60px;
            font-weight: 700;
        }

        .page-k9ccclup__section-subtitle {
            font-size: 1.1em;
            color: #64748b;
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-k9ccclup__features-grid,
        .page-k9ccclup__games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .page-k9ccclup__card {
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            color: #333333;
            box-sizing: border-box;
        }

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

        .page-k9ccclup__card-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 20px;
            display: block;
            margin-left: auto;
            margin-right: auto;
            object-fit: contain;
        }

        .page-k9ccclup__card-title {
            font-size: 1.5em;
            color: #2563eb;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .page-k9ccclup__card-description {
            font-size: 1em;
            color: #555555;
        }

        .page-k9ccclup__game-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
            display: block;
        }

        .page-k9ccclup__game-card-title {
            font-size: 1.4em;
            color: #2563eb;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-k9ccclup__game-card-text {
            font-size: 0.95em;
            color: #555555;
            margin-bottom: 20px;
        }

        .page-k9ccclup__steps-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-bottom: 60px;
        }

        .page-k9ccclup__step-item {
            flex: 1 1 calc(33% - 20px);
            min-width: 280px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            padding: 30px;
            text-align: center;
            position: relative;
            box-sizing: border-box;
        }

        .page-k9ccclup__step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #2563eb;
            color: #ffffff;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5em;
            font-weight: bold;
            border: 3px solid #f8f9fa;
        }

        .page-k9ccclup__step-title {
            font-size: 1.4em;
            color: #2563eb;
            margin-top: 15px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .page-k9ccclup__step-description {
            font-size: 1em;
            color: #555555;
        }

        .page-k9ccclup__download-section {
            background-color: #e0e7ff;
            padding: 60px 20px;
            text-align: center;
            border-radius: 12px;
            margin-bottom: 60px;
        }

        .page-k9ccclup__download-title {
            font-size: 2em;
            color: #2563eb;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .page-k9ccclup__download-description {
            font-size: 1.1em;
            color: #555555;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-k9ccclup__download-qr-image {
            width: 200px;
            height: 200px;
            object-fit: contain;
            margin-bottom: 20px;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }

        .page-k9ccclup__faq-section {
            margin-bottom: 60px;
        }

        .page-k9ccclup__faq-item {
            background-color: #ffffff;
            border-radius: 8px;
            margin-bottom: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            box-sizing: border-box;
        }

        .page-k9ccclup__faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 25px;
            background-color: #f0f4f8;
            cursor: pointer;
            font-size: 1.1em;
            font-weight: 600;
            color: #2563eb;
            border-bottom: 1px solid #e0e0e0;
            user-select: none;
            transition: background-color 0.3s ease;
        }

        .page-k9ccclup__faq-question:hover {
            background-color: #e6edf5;
        }

        .page-k9ccclup__faq-question h3 {
            margin: 0;
            font-size: inherit;
            color: inherit;
            pointer-events: none;
        }

        .page-k9ccclup__faq-toggle {
            font-size: 1.5em;
            font-weight: bold;
            color: #2563eb;
            pointer-events: none;
            transition: transform 0.3s ease;
        }

        .page-k9ccclup__faq-item.active .page-k9ccclup__faq-toggle {
            transform: rotate(45deg);
        }

        .page-k9ccclup__faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 25px;
            opacity: 0;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
            color: #555555;
            text-align: left;
        }

        .page-k9ccclup__faq-item.active .page-k9ccclup__faq-answer {
            max-height: 2000px !important;
            padding: 20px 25px !important;
            opacity: 1;
        }

        .page-k9ccclup__cta-final-section {
            background-color: #2563eb;
            padding: 60px 20px;
            text-align: center;
            border-radius: 12px;
            margin-bottom: 60px;
            color: #ffffff;
        }

        .page-k9ccclup__cta-final-title {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .page-k9ccclup__cta-final-description {
            font-size: 1.2em;
            margin-bottom: 40px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .page-k9ccclup__cta-final-button {
            background-color: #ffffff;
            color: #2563eb;
            border: 2px solid #ffffff;
        }

        .page-k9ccclup__cta-final-button:hover {
            background-color: #e0e7ff;
            color: #1a4dbe;
        }

        /* Floating Login Button */
        .page-k9ccclup__floating-login-btn {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ffc107; /* Bright, attention-grabbing color */
            color: #333333;
            padding: 15px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1em;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            display: none; /* Hidden by default, shown on mobile */
            border: none;
            max-width: calc(100% - 40px); /* Ensure it doesn't overflow on small screens */
            box-sizing: border-box;
            white-space: normal;
            word-wrap: break-word;
            text-align: center;
        }

        .page-k9ccclup__floating-login-btn:hover {
            background-color: #e0a800;
        }

        /* General image responsiveness */
        .page-k9ccclup img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .page-k9ccclup__main-title {
                font-size: 2.5em;
            }

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

            .page-k9ccclup__features-grid,
            .page-k9ccclup__games-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 20px;
            }

            .page-k9ccclup__step-item {
                flex: 1 1 calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .page-k9ccclup__hero-section {
                padding-top: 10px !important;
                padding-bottom: 30px;
            }

            .page-k9ccclup__main-title {
                font-size: 2em;
                margin-bottom: 10px;
            }

            .page-k9ccclup__tagline {
                font-size: 1em;
                margin-bottom: 20px;
            }

            .page-k9ccclup__button-group {
                flex-direction: column;
                gap: 15px;
                padding: 0 15px;
            }

            .page-k9ccclup__btn-primary,
            .page-k9ccclup__btn-secondary {
                padding: 12px 20px;
                font-size: 1em;
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
            }

            .page-k9ccclup__section-title {
                font-size: 1.8em;
                margin-top: 40px;
                margin-bottom: 25px;
            }

            .page-k9ccclup__section-subtitle {
                font-size: 0.95em;
                margin-bottom: 30px;
                padding: 0 15px;
            }

            .page-k9ccclup__features-grid,
            .page-k9ccclup__games-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 15px;
            }

            .page-k9ccclup__card {
                padding: 25px;
            }

            .page-k9ccclup__card-icon {
                width: 60px;
                height: 60px;
            }

            .page-k9ccclup__card-title {
                font-size: 1.3em;
            }

            .page-k9ccclup__game-card-image {
                height: 180px;
            }

            .page-k9ccclup__steps-list {
                flex-direction: column;
                padding: 0 15px;
            }

            .page-k9ccclup__step-item {
                flex: 1 1 100%;
                min-width: unset;
            }

            .page-k9ccclup__download-section {
                padding: 40px 15px;
                margin-bottom: 40px;
            }

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

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

            .page-k9ccclup__faq-section {
                margin-bottom: 40px;
                padding: 0 15px;
            }

            .page-k9ccclup__faq-question {
                font-size: 1em;
                padding: 15px 20px;
            }

            .page-k9ccclup__faq-answer {
                padding: 15px 20px !important;
            }

            .page-k9ccclup__cta-final-section {
                padding: 40px 15px;
                margin-bottom: 40px;
            }

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

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

            .page-k9ccclup__floating-login-btn {
                display: block; /* Show on mobile */
                max-width: calc(100% - 40px) !important;
                width: calc(100% - 40px) !important;
                left: 20px;
                transform: translateX(0);
                margin-left: 0;
                margin-right: 0;
            }

            /* General mobile image and container responsiveness */
            .page-k9ccclup img {
                max-width: 100% !important;
                width: 100% !important;
                height: auto !important;
            }

            .page-k9ccclup__container,
            .page-k9ccclup__hero-content,
            .page-k9ccclup__download-section,
            .page-k9ccclup__cta-final-section,
            .page-k9ccclup__faq-item {
                max-width: 100% !important;
                width: 100% !important;
                box-sizing: border-box !important;
                padding-left: 15px;
                padding-right: 15px;
            }

            .page-k9ccclup ul,
            .page-k9ccclup ol {
                width: 100% !important;
                max-width: 100% !important;
                box-sizing: border-box !important;
                padding: 0 !important;
                margin-left: 0 !important;
                margin-right: 0 !important;
            }

            .page-k9ccclup ul li,
            .page-k9ccclup ol li {
                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;
            }
        }
    