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

html, body {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: #0C0C0C;
    color: #ffffff;
    overflow-x: hidden;
}

/* Main container */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    opacity: 0;
    animation: fadeIn 1.2s ease-out forwards;
}


.logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* Main title - Coming soon */
.text-content h1 {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* Secondary text - Slogan (2 levels down from h1) */
.text-content h2 {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.4;
    color: #ffffff;
    opacity: 0.9;
    letter-spacing: 0.02em;
    margin-top: 20px;
}


/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }
    
    .logo {
        max-width: 150px;
    }
    
    .text-content h1 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .text-content h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .logo {
        max-width: 120px;
    }
    
    .text-content h1 {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .text-content h2 {
        font-size: 1rem;
    }
}

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