* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Ethnocentric', sans-serif;
    overflow: hidden;
}

.container {
    text-align: center;
    animation: fadeInUp 1.8s ease-out;
}

.logo-wrapper {
    animation: scaleIn 1.6s ease-out;
    margin-bottom: 1.5rem;
}

.logo {
    max-width: 700px;
    width: 90vw;
    height: auto;
}

.coming-soon {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.4rem;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeInSlide 1.5s ease-out 1s forwards;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.3) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        max-width: 500px;
    }
    
    .coming-soon {
        letter-spacing: 0.3rem;
    }
    
    .logo-wrapper {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 350px;
    }
    
    .coming-soon {
        letter-spacing: 0.2rem;
    }
    
    .logo-wrapper {
        margin-bottom: 0.8rem;
    }
}