:root {
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    
    /* Background setup */
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    max-width: 600px;
    width: 100%;
    animation: fadeIn 1s ease-out;
}

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

.logo {
    margin-bottom: 4rem;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.logo span {
    display: block;
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.content h2 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .content h2 {
        font-size: 2.5rem;
    }
    .logo h1 {
        font-size: 2rem;
    }
}
