@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');
@font-face {
  font-family: nino;
  src: url(./fonts/nino.ttf);
}
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: #0D0D0D;
            color: #D7DAE1;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: nino !important;
            text-transform: uppercase;
        }
        
        /* Main container */
        .container {
            text-align: center;
            padding: 40px;
            max-width: 800px;
            width: 100%;
        }
        
        /* Logo Container */
        .logo-container {
            margin-bottom: 80px;
            opacity: 0;
            animation: fadeIn 1.2s ease-out forwards;
        }
        
        .logo-image {
            width: 150px;
            height: auto;
            margin: 0 auto;
            display: block;
            filter: drop-shadow(0 4px 20px rgba(215, 218, 225, 0.1));
            transition: transform 0.3s ease;
        }
        
        .logo-image:hover {
            transform: translateY(-5px);
        }
        
        /* Coming soon section */
        .content {
            opacity: 0;
            animation: fadeIn 1.2s ease-out 0.3s forwards;
        }
        
        .coming-text {
            font-size: 18px;
            font-weight: 300;
            letter-spacing: 8px;
            text-transform: uppercase;
            margin-bottom: 20px;
            color: #D7DAE1;
            opacity: 0.8;
        }
        
        .subtitle {
            font-size: 15px;
            font-weight: 400;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #D7DAE1;
            opacity: 0.6;
            margin-bottom: 50px;
        }
        
        /* Email form */
        .notify-section {
            opacity: 0;
            animation: fadeIn 1.2s ease-out 0.6s forwards;
        }
        
        .form-container {
            max-width: 450px;
            margin: 0 auto;
        }
        
        .email-group {
            display: flex;
            border: 1px solid rgba(215, 218, 225, 0.3);
            border-radius: 0;
            overflow: hidden;
            transition: border-color 0.3s;
        }
        
        .email-group:focus-within {
            border-color: #D7DAE1;
        }
        
        .email-input {
            flex: 1;
            padding: 18px 24px;
            font-size: 15px;
            background: transparent;
            border: none;
            color: #D7DAE1;
            outline: none;
            font-weight: 300;
            letter-spacing: 0.5px;
        }
        
        .email-input::placeholder {
            color: rgba(215, 218, 225, 0.4);
            font-family: nino;
        }
        
        .submit-btn {
            padding: 18px 36px;
            font-size: 14px;
            background: #D7DAE1;
            color: #0D0D0D;
            border: none;
            cursor: pointer;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            transition: all 0.3s;
            font-family: nino;
        }
        
        .submit-btn:hover {
            background: #C1C5CD;
        }
        
        /* Success message */
        .message {
            margin-top: 24px;
            font-size: 14px;
            color: #D7DAE1;
            opacity: 0;
            height: 0;
            transition: all 0.3s;
        }
        
        .message.show {
            opacity: 0.8;
            height: auto;
        }
        
        /* Social Links Section */
        .social-section {
            margin-top: 60px;
            opacity: 0;
            animation: fadeIn 1.2s ease-out 0.8s forwards;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #D7DAE1;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 1px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .contact-item:hover {
            opacity: 1;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(215, 218, 225, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D7DAE1;
            text-decoration: none;
            transition: all 0.3s ease;
            opacity: 0.7;
        }
        
        .social-link:hover {
            border-color: #D7DAE1;
            transform: translateY(-3px);
            opacity: 1;
        }
        
        .social-link svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }
        
        /* Footer */
        .footer {
            position: fixed;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            opacity: 0;
            animation: fadeIn 1.2s ease-out 1s forwards;
        }
        
        .footer-text {
            font-size: 13px;
            color: #D7DAE1;
            opacity: 0.5;
            letter-spacing: 1px;
            font-weight: 300;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .logo-image {
                width: 120px;
            }
            
            .coming-text {
                font-size: 16px;
                letter-spacing: 4px;
            }
            
            .subtitle {
                font-size: 13px;
                margin-bottom: 60px;
            }
            
            .email-group {
                flex-direction: column;
            }
            
            .submit-btn {
                padding: 16px 24px;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 15px;
            }
            
            .social-links {
                gap: 15px;
            }
            
            .social-link {
                width: 36px;
                height: 36px;
            }
            
            .footer {
                bottom: 10px;
            }
        }