* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.logo {
    width: min(80vw, 650px);
    animation: floatLogo 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.coming-soon {
    font-size: clamp(36px, 6vw, 64px);
    letter-spacing: 6px;
    margin-top: 10px;
    background: linear-gradient(90deg, #fff, #b6ff00, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
}

.sub {
    margin-top: 15px;
    opacity: 0.6;
    font-size: 18px;
}

canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
}

/* Animations */

@keyframes floatLogo {
    0%   { transform: translateY(0px) rotate(0deg); }
    25%  { transform: translateY(-14px) rotate(-0.3deg); }
    50%  { transform: translateY(-20px) rotate(0deg); }
    75%  { transform: translateY(-14px) rotate(0.3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.6; transform: scale(1) }
    50% { opacity: 1; transform: scale(1.15) }
}

@keyframes shimmer {
    0% { background-position: 0% center }
    100% { background-position: 200% center }
}

.countdown {
    margin-top: 15px;
    font-size: 22px;
    letter-spacing: 2px;
    color: #b6ff00;
    font-weight: bold;
}
