* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background: #0C1030;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .container {
            max-width: 800px;
            width: 100%;
            margin: 0 auto;
        }

        .coming-soon-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            text-align: center;
            margin-bottom: 30px;
        }

        .logo {
            font-size: 48px;
            margin-bottom: 15px;
        }

        .coming-soon-card h1 {
            font-size: 36px;
            font-weight: 700;
            color: #222;
            margin-bottom: 15px;
        }

        .coming-soon-card p {
            font-size: 16px;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        /* Countdown Timer */
        .countdown-container {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
        }

        .countdown-item {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px 15px;
            min-width: 100px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }

        .countdown-value {
            font-size: 32px;
            font-weight: 700;
            color: #2575fc;
            display: block;
        }

        .countdown-label {
            font-size: 14px;
            color: #666;
            margin-top: 5px;
            display: block;
        }

        /* Progress Section */
        .progress-section {
            margin: 30px 0;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-size: 14px;
            color: #666;
        }

        .progress-bar {
            height: 10px;
            background: #e0e0e0;
            border-radius: 5px;
            overflow: hidden;
        }

        .progress-fill {
            height: 100%;
            background: linear-gradient(to right, #25D366, #2575fc);
            width: 0%;
            transition: width 0.5s ease;
        }

        /* Notify Section */
        .notify-section {
            display: flex;
            gap: 10px;
            margin-top: 30px;
        }

        .email-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 25px;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }

        .email-input:focus {
            border-color: #2575fc;
            box-shadow: 0 0 0 2px rgba(37, 117, 252, 0.2);
        }

        .notify-btn {
            background: #25D366;
            color: #fff;
            border: none;
            font-size: 14px;
            font-weight: 600;
            border-radius: 25px;
            padding: 12px 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
        }

        .notify-btn:hover {
            background: #25D363;
            transform: translateY(-2px);
        }

        /* Social Links */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #2575fc;
            color: white;
            transform: translateY(-3px);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .coming-soon-card {
                padding: 20px;
            }
            
            .coming-soon-card h1 {
                font-size: 28px;
            }
            
            .countdown-container {
                gap: 10px;
            }
            
            .countdown-item {
                min-width: 80px;
                padding: 15px 10px;
            }
            
            .countdown-value {
                font-size: 24px;
            }
            
            .notify-section {
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .countdown-container {
                flex-wrap: wrap;
            }
            
            .countdown-item {
                min-width: 70px;
            }
        }

        