*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    text-align: center;
}

h1 {
    margin: 0;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.page-title {
    margin: 0;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 600;
    text-transform: lowercase;
}

.page-content {
    max-width: 36rem;
    margin: 0;
    line-height: 1.6;
    color: #a3a3a3;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.125rem;
    text-transform: lowercase;
}

.social-links {
    position: fixed;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #737373;
    text-transform: lowercase;
}

.home-link {
    font-size: 0.875rem;
    color: #737373;
    text-transform: lowercase;
}

.subpage {
    gap: 1rem;
}
