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

body {
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.logo-container {
    margin-bottom: 1rem;
}

.logo {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    display: block;
}

.site-name {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin: 0;
}

.coming-soon {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    opacity: 0.7;
    text-transform: uppercase;
}

/* Responsive design */
@media (max-width: 768px) {
    .site-name {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 100px;
        max-height: 100px;
    }
    
    .coming-soon {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .site-name {
        font-size: 1.5rem;
    }
    
    .logo {
        max-width: 80px;
        max-height: 80px;
    }
    
    .coming-soon {
        font-size: 0.8rem;
    }
    
    .content {
        gap: 1.5rem;
    }
}
