        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background-color: #fafafa;
            position: relative;
        }

        /* Background Image with Overlay */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1516589178581-6cd7833ae3b2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center;
            background-size: cover;
            opacity: 0.1;
            z-index: -2;
        }

        /* Floating Love Lines Animation */
        .love-lines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
            opacity: 0.5;
        }

        .love-line {
            position: absolute;
            bottom: -100px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ff6b6b"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>') no-repeat;
            background-size: contain;
            width: 30px;
            height: 30px;
            animation: floating 15s linear infinite;
        }

        @keyframes floating {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Navigation - Desktop */
        .chikonnect-nav {
            background-color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(5px);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .nav-logo img {
            height: 40px;
        }
        
        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #ff6b6b;
        }
        
        .nav-button {
            background-color: #ff6b6b;
            color: white !important;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600 !important;
        }
        
        /* Mobile Menu Toggle */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: #333;
        }
        
        /* Mobile Drawer Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: -100%;
            width: 80%;
            max-width: 300px;
            height: 100vh;
            background: white;
            box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            transition: left 0.3s ease;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .mobile-nav.active {
            left: 0;
        }
        
        .mobile-nav a {
            text-decoration: none;
            color: #333;
            font-size: 16px;
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .mobile-nav .nav-button {
            margin-top: 10px;
            text-align: center;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }
        
        .overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        
        /* Main Content */
        .chat-area {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        
        .chat-header {
            flex: 1;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        
        .chikonnect-logo {
            text-align: center;
            margin-bottom: 15px;
        }
        
        .chikonnect-logo img {
            max-width: 250px;
            height: auto;
            width: 100%;
        }
        
        /* Hero Tagline */
        .hero-tagline {
            text-align: center;
            margin: 0 auto 20px;
            max-width: 600px;
            position: relative;
            z-index: 1;
        }
        
        .hero-tagline h1 {
            font-size: 4.2rem;
            color: #333;
            margin-bottom: 10px;
           
        }
        
        .hero-tagline p {
            font-size: 1.1rem;
            color: #666;
            font-weight: 300;
        }
        
        .about-chikonnect {
            margin: 20px auto;
            padding: 20px;
            max-width: 600px;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.85);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }
        
        .about-chikonnect p {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
        }
        
        .chikonnect-images {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 20px 0;
            position: relative;
            z-index: 1;
        }
        
        .chikonnect-images img {
            width: 100%;
            max-width: 290px;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            object-fit: cover;
            transition: transform 0.3s;
        }

        .chikonnect-images img:hover {
            transform: scale(1.03);
        }
        
        /* How to Start Section */
        .start-chatting {
            background-color: rgba(255, 255, 255, 0.85);
            border-radius: 10px;
            padding: 30px;
            margin: 30px auto;
            max-width: 800px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }
        
        .start-chatting h2 {
            text-align: center;
            color: #ff6b6b;
            margin-bottom: 25px;
            font-size: 24px;
        }
        
        .steps-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        
        .step {
            flex: 1;
            min-width: 200px;
            text-align: center;
            padding: 20px;
            background: rgba(255, 107, 107, 0.1);
            border-radius: 8px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
        }
        
        .step-icon {
            font-size: 40px;
            color: #ff6b6b;
            margin-bottom: 15px;
        }
        
        .step h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }
        
        .step p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
        }
        
        /* Auth Buttons Section */
        .auth-buttons {
            text-align: center;
            margin: 30px 0;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .auth-buttons h3 {
            color: #555;
            margin-bottom: 20px;
            font-weight: 500;
            font-size: 18px;
        }
        
        .button-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
            text-align: center;
            min-width: 160px;
        }
        
        .btn-primary {
            background-color: #ff6b6b;
            color: white;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
        }
        
        .btn-primary:hover {
            background-color: #ff5252;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }
        
        .btn-secondary {
            background-color: white;
            color: #ff6b6b;
            border: 2px solid #ff6b6b;
        }
        
        .btn-secondary:hover {
            background-color: #fff0f0;
            transform: translateY(-2px);
        }
        
        /* Footer */
        .chikonnect-footer {
            background-color: orangered;
            padding: 30px 0 10px;
            margin-top: auto;
            color: white;
            position: relative;
            z-index: 1;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 0 20px;
        }
        
        .footer-logo img {
            width: 120px;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        
        .footer-links a {
            text-decoration: none;
            color: white;
            font-size: 13px;
        }
        
        .footer-links a:hover {
            color: #ffeb3b;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            color: white;
            font-size: 18px;
        }
        
        .footer-social a:hover {
            color: #ffeb3b;
        }
        
        .footer-copyright {
            text-align: center;
            margin-top: 20px;
            padding-top: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 12px;
            width: 100%;
        }
        
        /* Responsive Breakpoints */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .menu-toggle {
                display: block;
            }
            
            .hero-tagline h1 {
                font-size: 2.8rem;
            }
            
            .hero-tagline p {
                font-size: 1rem;
            }
            
            .chikonnect-images img {
                max-width: 100%;
            }
            
            .steps-container {
                flex-direction: column;
                align-items: center;
            }
            
            .step {
                width: 100%;
                max-width: 300px;
            }
            
            .button-group {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 250px;
            }
        }
        
        @media (max-width: 480px) {
            .about-chikonnect,
            .start-chatting {
                padding: 15px;
            }
            
            .hero-tagline h1 {
                font-size: 2.5rem;
            }
            
            .about-chikonnect p {
                font-size: 14px;
            }
            
            .start-chatting h2 {
                font-size: 20px;
            }
        }
