* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
    height: 100vh;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    height: auto;
    width: 600px;
    max-width: 600px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.logo:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #0066ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 500;
    color: #ccc;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #aaa;
    max-width: 600px;
    margin-bottom: 3rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.email-link {
    color: #0066ff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 12px 24px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 6px;
    transition: all 0.3s ease;
    background: rgba(0, 102, 255, 0.05);
}

.email-link:hover {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.6);
    transform: translateY(-2px);
}

.investor-note {
    color: #888;
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    font-weight: 400;
}

.launch-note {
    margin-bottom: 0.5rem;
}

.copyright {
    font-size: 0.8rem;
    color: #555;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .logo {
        width: 450px;
        max-width: 450px;
    }
    
    .description {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .logo {
        width: 380px;
        max-width: 380px;
    }
    
    .subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: 2.5rem;
    }
    
    .description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2.5rem;
    }
    
    .email-link {
        font-size: 1rem;
        padding: 12px 20px;
    }
    
    .footer-info {
        bottom: 20px;
        font-size: 0.8rem;
    }
    
    .copyright {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        justify-content: flex-start;
        padding-top: 15vh;
    }
    
    .logo-container {
        margin-bottom: 1.5rem;
    }
    
    .logo {
        width: 380px;
        max-width: 380px;
    }
    
    .subtitle {
        font-size: clamp(0.9rem, 5vw, 1rem);
        margin-bottom: 2rem;
    }
    
    .description {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .email-link {
        font-size: 0.95rem;
        padding: 10px 18px;
        width: 100%;
        max-width: 280px;
    }
    
    .footer-info {
        bottom: 15px;
        font-size: 0.75rem;
    }
    
    .copyright {
        font-size: 0.7rem;
    }
}

/* Extra small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
        padding-top: 12vh;
    }
    
    .logo {
        width: 280px;
        max-width: 280px;
    }
    
    .subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}
    
    .footer-info {
        bottom: 15px;
        font-size: 0.75rem;
    }
    
    .copyright {
        font-size: 0.7rem;
    }

/* Extra small screens */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
        padding-top: 12vh;
    }
    
    .logo {
        width: 280px;
        max-width: 280px;
    }
    
    .subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }
    
    .description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}