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

body {
    font-family: 'Bebas Neue', 'Arial Narrow', Arial, sans-serif;
    background: #0a0a0a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0px, transparent 1px, transparent 2px, rgba(255, 255, 255, 0.03) 3px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0px, transparent 1px, transparent 2px, rgba(255, 255, 255, 0.03) 3px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.4;
}

.container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    animation: fadeIn 1s ease-in;
}

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

.logo {
    font-size: 5rem;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.logo-underline {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 20px auto;
    animation: expand 2s ease-in-out infinite;
}

.coming-soon h2 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: slideUp 1s ease-out 0.3s backwards;
}

.tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 2px;
    animation: slideUp 1s ease-out 0.5s backwards;
}

.animation-container {
    margin-top: 80px;
    position: relative;
    height: 100px;
}

.pixel {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.pixel-1 {
    animation: float 3s ease-in-out infinite;
}

.pixel-2 {
    animation: float 3s ease-in-out 0.6s infinite;
}

.pixel-3 {
    animation: float 3s ease-in-out 1.2s infinite;
}

.pixel-4 {
    animation: float 3s ease-in-out 1.8s infinite;
}

.pixel-5 {
    animation: float 3s ease-in-out 2.4s infinite;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
    animation: fadeIn 1s ease-in 1s backwards;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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


@keyframes expand {
    0%, 100% {
        width: 200px;
        opacity: 1;
    }
    50% {
        width: 300px;
        opacity: 0.7;
    }
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%) translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: translate(calc(-50% + 40px), -50%) translateY(-60px) scale(0.8);
        opacity: 0.8;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translate(calc(-50% + 80px), -50%) translateY(-120px) scale(0.5);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
        letter-spacing: 4px;
    }
    
    .coming-soon h2 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .logo-underline {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .coming-soon h2 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.9rem;
    }
}

