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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 70%), #0a1628;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 40px 20px;
}

.logo-wrapper {
    margin-bottom: 40px;
}

.logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(0, 212, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    object-fit: cover;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.brand-name {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    background: linear-gradient(90deg, #00d4ff 0%, #0ea5e9 25%, #00d4ff 50%, #0ea5e9 75%, #00d4ff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    animation: gradientFlow 4s linear infinite;
}

.tagline {
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #e2e8f0;
    margin-bottom: 40px;
    text-transform: uppercase;
    opacity: 0.95;
}

@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.coming-soon {
    display: inline-block;
    font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    font-weight: 500;
    color: #0a1628;
    background: linear-gradient(90deg, #00d4ff 0%, #0ea5e9 100%);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    padding: 12px 32px;
    border-radius: 30px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@media (max-width: 480px) {
    .logo {
        width: 150px;
        height: 150px;
        border-radius: 50%;
    }
    
    .brand-name {
        letter-spacing: 0.15em;
    }
    
    .coming-soon {
        letter-spacing: 0.2em;
    }
}
