
        @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }
        
        body {
            background-color: #0c0c14;
            background-image: linear-gradient(to bottom, #0c0c14, #151530);
            color: #fff;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            padding: 20px 0;
            text-align: center;
        }
        
        .logo-container {
            margin-bottom: 15px;
        }
        
        .logo {
            max-width: 160px;
            border-radius: 50%;
            animation: float 3s ease-in-out infinite;
            box-shadow: 0 0 20px rgba(79, 139, 255, 0.6);
            border: 2px solid rgba(166, 81, 255, 0.5);
        }
        
        .welcome-text {
            color: #fff;
            font-size: 18px;
            margin-top: 10px;
            text-shadow: 0 0 10px rgba(135, 86, 255, 0.7);
        }
        
        /* Main Content Styles */
        .main-content {
            padding: 30px 0;
            text-align: center;
        }
        
        .headline {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 30px;
            background: linear-gradient(90deg, #4f8bff, #a651ff, #ffca28);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pulse 2s infinite, gradient 6s ease infinite;
            text-shadow: 0 0 15px rgba(135, 86, 255, 0.5);
        }
        
        .features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        
        .feature {
            flex: 1;
            min-width: 200px;
            background: rgba(30, 30, 50, 0.6);
            padding: 20px 15px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(135, 86, 255, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(135, 86, 255, 0.3);
        }
        
        .feature i {
            font-size: 32px;
            margin-bottom: 15px;
            color: #a651ff;
        }
        
        .feature-title {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 5px;
            color: #ffca28;
        }
        
        .trust-text {
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
            font-size: 18px;
            color: #ddd;
        }
        
        /* CTA Styles */
        .cta-section {
            margin: 40px 0;
            text-align: center;
        }
        
        .cta-button {
            background: linear-gradient(45deg, #4f8bff, #a651ff);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 20px;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 0 20px rgba(135, 86, 255, 0.5);
            position: relative;
            overflow: hidden;
            animation: glow 1.5s infinite alternate;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05), rgba(255,255,255,0.1));
            transform: rotate(45deg);
            animation: shine 3s infinite;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 30px rgba(135, 86, 255, 0.8);
        }
        
        /* Timer Section */
        .timer-section {
            margin: 50px 0;
            text-align: center;
        }
        
        .timer-text {
            font-size: 20px;
            color: #ffca28;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .countdown {
            font-size: 40px;
            font-weight: 800;
            color: #fff;
            background: rgba(30, 30, 50, 0.6);
            padding: 15px 30px;
            border-radius: 15px;
            box-shadow: 0 0 25px rgba(135, 86, 255, 0.3);
            display: inline-block;
            border: 1px solid rgba(135, 86, 255, 0.3);
        }
        
        /* Trust Badges */
        .trust-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 25px;
            margin: 40px 0;
        }
        
        .badge {
            background: rgba(30, 30, 50, 0.6);
            padding: 15px 20px;
            border-radius: 10px;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(79, 139, 255, 0.3);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .badge i {
            color: #4f8bff;
            font-size: 20px;
        }
        
        /* Footer */
        footer {
            background: rgba(20, 20, 35, 0.8);
            padding: 20px 0;
            text-align: center;
            margin-top: 50px;
        }
        
        .footer-text {
            color: #ddd;
            font-size: 16px;
        }
        
        .footer-text a {
            color: #4f8bff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-text a:hover {
            color: #a651ff;
        }
        
        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0px);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        @keyframes glow {
            from {
                box-shadow: 0 0 10px rgba(135, 86, 255, 0.5);
            }
            to {
                box-shadow: 0 0 20px rgba(135, 86, 255, 0.9), 0 0 30px rgba(79, 139, 255, 0.5);
            }
        }
        
        @keyframes shine {
            0% {
                left: -100%;
                opacity: 0;
            }
            20% {
                left: 100%;
                opacity: 0.5;
            }
            100% {
                left: 100%;
                opacity: 0;
            }
        }
        
        @keyframes gradient {
            0% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
            100% {
                background-position: 0% 50%;
            }
        }
        
        /* Particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        
        .particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(135, 86, 255, 0.2);
            border-radius: 50%;
            animation: particleFloat 15s infinite linear;
        }
        
        .particle:nth-child(1) {
            top: 10%;
            left: 10%;
            background: rgba(79, 139, 255, 0.2);
            animation-duration: 20s;
        }
        
        .particle:nth-child(2) {
            top: 20%;
            left: 80%;
            background: rgba(166, 81, 255, 0.2);
            animation-duration: 25s;
        }
        
        .particle:nth-child(3) {
            top: 50%;
            left: 20%;
            background: rgba(255, 202, 40, 0.2);
            animation-duration: 18s;
        }
        
        .particle:nth-child(4) {
            top: 70%;
            left: 70%;
            background: rgba(79, 139, 255, 0.2);
            animation-duration: 22s;
        }
        
        .particle:nth-child(5) {
            top: 85%;
            left: 40%;
            background: rgba(166, 81, 255, 0.2);
            animation-duration: 15s;
        }
        
        .particle:nth-child(6) {
            top: 30%;
            left: 65%;
            background: rgba(255, 202, 40, 0.2);
            animation-duration: 28s;
        }
        
        .particle:nth-child(7) {
            top: 15%;
            left: 30%;
            background: rgba(79, 139, 255, 0.2);
            animation-duration: 23s;
        }
        
        .particle:nth-child(8) {
            top: 60%;
            left: 90%;
            background: rgba(166, 81, 255, 0.2);
            animation-duration: 19s;
        }
        
        @keyframes particleFloat {
            0% {
                transform: translate(0, 0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translate(100px, -100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            .headline {
                font-size: 28px;
                padding: 0 10px;
                margin-bottom: 20px;
            }
            
            .welcome-text {
                font-size: 16px;
                padding: 0 15px;
            }
            
            .features {
                flex-direction: column;
                gap: 15px;
                padding: 0 10px;
            }
            
            .feature {
                min-width: 100%;
                padding: 15px;
            }
            
            .feature-title {
                font-size: 17px;
            }
            
            .trust-text {
                font-size: 16px;
                padding: 0 15px;
                margin-bottom: 30px;
            }
            
            .countdown {
                font-size: 30px;
                padding: 10px 20px;
            }
            
            .timer-text {
                font-size: 17px;
                padding: 0 20px;
            }
            
            .trust-badges {
                flex-direction: column;
                align-items: center;
                gap: 15px;
                padding: 0 10px;
            }
            
            .cta-button {
                padding: 14px 27px;
                font-size: 20px;
                width: 90%;
                max-width: 300px;
            }
            
            .cta-section {
                margin: 30px 0;
            }
            
            .timer-section {
                margin: 30px 0;
            }
            
            .badge {
                width: 90%;
                justify-content: center;
                padding: 12px 15px;
            }
            
            .main-content {
                padding: 20px 0;
            }
            
            .logo {
                max-width: 130px;
            }
        }
        
        /* Small Mobile Screens */
        @media (max-width: 480px) {
            .headline {
                font-size: 24px;
            }
            
            .countdown {
                font-size: 26px;
            }
            
            .feature i {
                font-size: 28px;
            }
            
            .cta-button {
                font-size: 20px;
                padding: 15px 23px;
            }
            
            .logo {
                max-width: 110px;
            }
        }
        
        /* Coin Animation */
        .floating-coins {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            pointer-events: none;
        }
        
        .coin {
            position: absolute;
            width: 30px;
            height: 30px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%23ffca28" stroke="%23ffa000" stroke-width="1"/><text x="50%" y="50%" dominant-baseline="middle" text-anchor="middle" font-family="Arial" font-weight="bold" font-size="14" fill="%23ffa000">₹</text></svg>') no-repeat center center;
            background-size: contain;
            animation: coinFloat 20s infinite linear;
            opacity: 0.7;
        }
        
        @keyframes coinFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
    