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

body {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #fff;
    overflow: hidden;
    height: 100vh;
}

#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
}

.content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 1.5s ease-out;
}

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

.logo-container {
    margin-bottom: 60px;
}

.logo {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 8px;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #00ffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s linear infinite, glitch 5s infinite;
    display: inline-block;
    position: relative;
}

.studios {
    display: block;
    font-size: 1.8rem;
    letter-spacing: 12px;
    margin-top: 10px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

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

@keyframes glitch {
    0%, 90%, 100% {
        transform: translate(0);
    }
    92% {
        transform: translate(-2px, 2px);
    }
    94% {
        transform: translate(2px, -2px);
    }
    96% {
        transform: translate(-2px, -2px);
    }
}

.tagline {
    font-size: 1rem;
    letter-spacing: 4px;
    color: #00ffff;
    margin-top: 20px;
    opacity: 0.8;
    text-transform: uppercase;
}

.coming-soon {
    margin: 60px 0;
}

.coming-soon h2 {
    font-size: 2.5rem;
    letter-spacing: 10px;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

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

@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
        letter-spacing: 4px;
    }
    
    .studios {
        font-size: 1.2rem;
        letter-spacing: 6px;
    }
    
    .coming-soon h2 {
        font-size: 1.8rem;
        letter-spacing: 6px;
    }
}
