* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: white;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            perspective: 1000px;
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 3rem;
            width: 100%;
            z-index: 100;
            position: relative;
        }

        .nav-logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            background: linear-gradient(to right, #ff8a00, #e52e71);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transform: translateZ(20px);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            transform: translateZ(15px);
        }

        .nav-link:hover {
            color: white;
        }

        /* Main Content */
        .container {
            text-align: center;
            z-index: 10;
            transform-style: preserve-3d;
            animation: float 6s ease-in-out infinite;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .coming-soon {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 8px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transform: translateZ(30px);
            background: linear-gradient(to right, #ff8a00, #e52e71);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .launch-date {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.8;
            transform: translateZ(20px);
        }

        .countdown {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
            transform: translateZ(40px);
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 10px;
            padding: 1.5rem 1rem;
            min-width: 120px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }

        .countdown-item:hover {
            transform: translateY(-10px) translateZ(20px);
        }

        .countdown-value {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .countdown-label {
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.8;
        }

        .subscribe {
            margin-top: 2rem;
            transform: translateZ(30px);
        }

        .subscribe p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .subscribe-form {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
        }

        .email-input {
            padding: 0.8rem 1.2rem;
            border: none;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 1rem;
            width: 300px;
            outline: none;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .email-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .notify-btn {
            padding: 0.8rem 1.5rem;
            border: none;
            border-radius: 30px;
            background: linear-gradient(to right, #ff8a00, #e52e71);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .notify-btn:hover {
            transform: translateY(-3px);
        }

        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            animation: float-element 15s infinite linear;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-duration: 20s;
        }

        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 70%;
            left: 80%;
            animation-duration: 25s;
        }

        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 20%;
            left: 80%;
            animation-duration: 15s;
        }

        .floating-element:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 80%;
            left: 20%;
            animation-duration: 30s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotateX(5deg);
            }
            50% {
                transform: translateY(-20px) rotateX(5deg);
            }
        }

        @keyframes float-element {
            0% {
                transform: translateY(0) rotate(0deg) translateZ(0);
            }
            50% {
                transform: translateY(-40px) rotate(180deg) translateZ(20px);
            }
            100% {
                transform: translateY(0) rotate(360deg) translateZ(0);
            }
        }

        /* Footer */
        footer {
            padding: 1.5rem;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            z-index: 10;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            nav {
                padding: 1rem;
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-logo {
                font-size: 1.5rem;
            }
            
            .coming-soon {
                font-size: 2rem;
                letter-spacing: 4px;
            }
            
            .countdown {
                flex-wrap: wrap;
                gap: 1rem;
            }
            
            .countdown-item {
                min-width: 100px;
                padding: 1rem 0.5rem;
            }
            
            .countdown-value {
                font-size: 2rem;
            }
            
            .subscribe-form {
                flex-direction: column;
                align-items: center;
            }
            
            .email-input {
                width: 250px;
            }
        }