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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #E5E5E5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    max-width: 200px;
    max-height: 200px;
    width: auto;
    height: auto;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out 0.3s forwards;
}

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

.coming-soon {
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #E5E5E5;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out 0.6s forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo {
        max-width: 150px;
        max-height: 150px;
    }
    
    .coming-soon {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 120px;
        max-height: 120px;
    }
    
    .coming-soon {
        font-size: 12px;
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .logo,
    .coming-soon {
        animation: none;
        opacity: 1;
    }
}
