* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,0,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255,215,0,0.1) 0%, transparent 50%);
    z-index: -1;
    animation: bgPulse 20s ease-in-out infinite;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 1.5rem 2rem;
}

.logo {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo span {
    color: #ffd700;
}

.coming-soon {
    text-align: center;
}

.glass-card {
    padding: 4rem 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.glass-card h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, #00ffff);
    -webkit-background-clip: text;
    margin-bottom: 3rem;
    filter: drop-shadow(0 0 30px rgba(0,255,255,0.5));
    animation: titleGlow 2s ease-in-out infinite alternate;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 3rem;
    text-align: left;
}

.feature {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.3);
}

.status {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    -webkit-background-clip: text;
    margin: 2rem 0;
    filter: drop-shadow(0 0 40px rgba(255, 65, 108, 0.6));
    animation: pulse 2s ease-in-out infinite;
}

.notify {
    font-size: 1.3rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.coming {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Animations */
@keyframes bgPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px #00ffff); }
    to { filter: drop-shadow(0 0 40px #ffffff); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 1rem; }
    .glass-card { padding: 2.5rem 2rem; }
    .features { gap: 1rem; }
    .feature { font-size: 1rem; padding: 0.8rem 1.2rem; }
}
