:root {
    --bg-color: #ffffff;
    --text-color: #111111;
    --text-muted: #737373;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

h1 {
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: -0.04em;
    margin: 0 0 1rem 0;
}

.subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
    margin: 0 0 4rem 0;
}

.links {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.links a {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.links a:hover {
    color: var(--text-muted);
    border-bottom: 1px solid var(--text-muted);
}
