        :root {
            --primary: #0a2463;
            --secondary: #61dafb;
            --accent: #ff4d4d;
            --dark: #1e1e2c;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #28a745;
            --warning: #ffc107;
            --info: #17a2b8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: white;
            background: linear-gradient(135deg, #0a2463 0%, #1e1e2c 100%);
            min-height: 100vh;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header & Navigation */
        header {
            background: rgba(10, 36, 99, 0.9);
            padding: 15px 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo-text {
            font-family: 'Orbitron', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-left: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .logo-text span {
            color: var(--secondary);
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
        }
        
        .nav-item {
            position: relative;
            margin: 0 12px;
        }
        
        .nav-link {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            padding: 10px 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .nav-link:hover {
            color: var(--secondary);
            transform: translateY(-2px);
        }
        
        .nav-link i {
            margin-left: 5px;
            font-size: 14px;
        }
        
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            width: 200px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(5px);
        }
        
        .dropdown-item {
            display: block;
            padding: 12px 20px;
            color: var(--dark);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            border-bottom: 1px solid #f1f1f1;
        }
        
        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: var(--primary);
            padding-left: 25px;
        }
        
        .nav-icons {
            display: flex;
            align-items: center;
        }
        
        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--accent);
            color: white;
            font-size: 12px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Mobile Menu Button (Hidden by Default) */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
            order: 2;
            margin-left: 15px;
        }
        
        /* Profile Icon for Mobile */
        .profile-icon-mobile {
            display: none;
        }
        
        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -300px;
            width: 300px;
            height: 100vh;
            background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
            z-index: 999;
            transition: right 0.4s ease;
            padding: 80px 20px 20px;
            overflow-y: auto;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        }
        
        .mobile-nav.active {
            right: 0;
        }
        
        .mobile-nav-list {
            list-style: none;
        }
        
        .mobile-nav-item {
            margin-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .mobile-nav-link {
            color: white;
            text-decoration: none;
            font-size: 18px;
            padding: 12px 0;
            display: block;
            transition: all 0.3s ease;
        }
        
        .mobile-nav-link:hover {
            color: var(--secondary);
            padding-left: 10px;
        }
        
        .mobile-dropdown-btn {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 12px 0;
            text-align: left;
        }
        
        .mobile-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
        }
        
        .mobile-dropdown.active {
            max-height: 500px;
        }
        
        .mobile-dropdown-item {
            display: block;
            padding: 10px 15px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
            border-left: 2px solid transparent;
        }
        
        .mobile-dropdown-item:hover {
            color: var(--secondary);
            border-left: 2px solid var(--secondary);
            padding-left: 20px;
        }
        
        .close-mobile-menu {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Main Content */
        .main-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .cyber-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
            overflow: hidden;
        }
        
        .cyber-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(97, 218, 251, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(97, 218, 251, 0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
        }
        
        @keyframes gridMove {
            0% {
                transform: translateY(0) translateX(0);
            }
            100% {
                transform: translateY(50px) translateX(50px);
            }
        }
        
        .cyber-circle {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(97, 218, 251, 0.2);
            animation: pulseCircle 8s ease-in-out infinite;
        }
        
        .cyber-circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
            animation-delay: 0s;
        }
        
        .cyber-circle:nth-child(2) {
            width: 500px;
            height: 500px;
            bottom: -250px;
            right: -250px;
            animation-delay: 2s;
        }
        
        .cyber-circle:nth-child(3) {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 10%;
            animation-delay: 4s;
        }
        
        .cyber-circle:nth-child(4) {
            width: 400px;
            height: 400px;
            bottom: 20%;
            right: 20%;
            animation-delay: 6s;
        }
        
        @keyframes pulseCircle {
            0%, 100% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.6;
            }
        }
        
        .content-wrapper {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .coming-soon-text {
            font-size: 5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--secondary) 0%, #ffffff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: glow 2s ease-in-out infinite alternate;
            text-shadow: 0 0 20px rgba(97, 218, 251, 0.5);
        }
        
        @keyframes glow {
            0% {
                text-shadow: 0 0 10px rgba(97, 218, 251, 0.5);
            }
            100% {
                text-shadow: 0 0 20px rgba(97, 218, 251, 0.8), 0 0 30px rgba(97, 218, 251, 0.6);
            }
        }
        
        .subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            color: var(--secondary);
            animation: fadeInUp 1s ease-out;
        }
        
        .description {
            font-size: 1.1rem;
            margin-bottom: 50px;
            color: rgba(255, 255, 255, 0.8);
            animation: fadeInUp 1s ease-out 0.2s;
            animation-fill-mode: both;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease-out 0.4s;
            animation-fill-mode: both;
        }
        
        .countdown-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px;
            min-width: 100px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(97, 218, 251, 0.2);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .countdown-number {
            font-size: 3rem;
            font-weight: 700;
            font-family: 'Orbitron', sans-serif;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .notify-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 500px;
            margin: 0 auto;
            animation: fadeInUp 1s ease-out 0.6s;
            animation-fill-mode: both;
        }
        
        .form-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .input-group {
            display: flex;
            gap: 10px;
        }
        
        .email-input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            font-family: 'Poppins', sans-serif;
            border: 1px solid rgba(97, 218, 251, 0.3);
            transition: all 0.3s ease;
        }
        
        .email-input:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 15px rgba(97, 218, 251, 0.5);
        }
        
        .email-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .notify-btn {
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            background: linear-gradient(135deg, var(--secondary) 0%, #4ec5e3 100%);
            color: var(--dark);
            font-family: 'Orbitron', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(97, 218, 251, 0.4);
        }
        
        .notify-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(97, 218, 251, 0.6);
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 50px;
            animation: fadeInUp 1s ease-out 0.8s;
            animation-fill-mode: both;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(97, 218, 251, 0.2);
        }
        
        .social-link:hover {
            background: linear-gradient(135deg, var(--secondary) 0%, #4ec5e3 100%);
            color: var(--dark);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(97, 218, 251, 0.4);
        }
        
        .progress-container {
            width: 100%;
            height: 5px;
            background: rgba(255, 255, 255, 0.1);
            position: fixed;
            bottom: 0;
            left: 0;
            z-index: 1000;
        }
        
        .progress-bar {
            height: 100%;
            background: linear-gradient(90deg, var(--secondary) 0%, #4ec5e3 100%);
            width: 0%;
            transition: width 0.3s ease;
        }
        
        /* Binary rain animation */
        .binary-rain {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.1;
            pointer-events: none;
        }
        
        .binary-digit {
            position: absolute;
            color: var(--secondary);
            font-family: 'Orbitron', sans-serif;
            font-size: 16px;
            animation: binaryRain 10s linear infinite;
            opacity: 0;
            text-shadow: 0 0 5px rgba(97, 218, 251, 0.8);
        }
        
        @keyframes binaryRain {
            0% {
                transform: translateY(-100%);
                opacity: 0;
            }
            5% {
                opacity: 1;
            }
            95% {
                opacity: 1;
            }
            100% {
                transform: translateY(1000%);
                opacity: 0;
            }
        }
        
        /* Hacker terminal animation */
        .terminal {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid var(--secondary);
            border-radius: 5px;
            padding: 10px;
            font-family: 'Courier New', monospace;
            font-size: 14px;
            color: var(--secondary);
            width: 300px;
            height: 150px;
            overflow: hidden;
            box-shadow: 0 0 15px rgba(97, 218, 251, 0.3);
            animation: terminalPulse 2s infinite alternate;
        }
        
        @keyframes terminalPulse {
            0% {
                box-shadow: 0 0 15px rgba(97, 218, 251, 0.3);
            }
            100% {
                box-shadow: 0 0 20px rgba(97, 218, 251, 0.6);
            }
        }
        
        .terminal-line {
            margin-bottom: 5px;
            white-space: nowrap;
            overflow: hidden;
            animation: typing 3s steps(40, end);
        }
        
        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }
        
        .terminal-cursor {
            display: inline-block;
            width: 8px;
            height: 16px;
            background: var(--secondary);
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .coming-soon-text {
                font-size: 4rem;
            }
            
            .countdown-item {
                min-width: 80px;
            }
            
            .countdown-number {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .coming-soon-text {
                font-size: 3rem;
                margin-bottom: 15px;
                line-height: 1.2;
                word-break: break-word;
                padding: 0 10px;
            }
                
            .subtitle {
                font-size: 1.2rem;
                padding: 0 10px;
            }
            
            .description {
                font-size: 1rem;
                padding: 0 10px;
            }
            
            .countdown {
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .countdown-item {
                min-width: 70px;
                padding: 15px 10px;
            }
            
            .countdown-number {
                font-size: 2rem;
            }
            
            .countdown-label {
                font-size: 0.8rem;
            }
            
            .input-group {
                flex-direction: column;
            }
            
            .terminal {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .coming-soon-text {
                font-size: 2.5rem;
            }
            
            .countdown-item {
                min-width: 60px;
                padding: 10px 5px;
            }
            
            .countdown-number {
                font-size: 1.5rem;
            }
            
            .countdown-label {
                font-size: 0.7rem;
            }
            
            .social-link {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }
