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

body {
    font-family: 'Audiowide', sans-serif;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Container */
.container {
    animation: fadeIn 1.5s ease-in-out forwards;
}

/* Logo */
.logo {
    font-size: 3.9rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: slideDown 1.2s ease-out forwards;
}

/* Subtitle */
.subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
    animation-delay: 0.5s;
}

/* Coming Soon Text */
.coming-soon {
    font-size: 1.5rem;
    font-weight: 600;
    color: #cdaa7d;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1.5s ease forwards;
    animation-delay: 1s;
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes slideDown {
    0% { opacity: 0; transform: translateY(-50px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
    .logo {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .coming-soon {
        font-size: 1.2rem;
    }
}
