:root {
    --bg-color: #fafafa;
    --text-primary: #171717;
    --text-secondary: #737373;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-color: #0a0a0a;
        --text-primary: #ededed;
        --text-secondary: #a3a3a3;
    }
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

h1 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.05em;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

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