@font-face {
    font-family: 'gothic';
    src: url('/static/fonts/gothic-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gothic';
    src: url('/static/fonts/gothic-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

:root {
    --bg-color: #f7f7f4;
    --text-color: #1a1a1a;
    --text-muted: #666;
    --font-main: 'gothic', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --max-width: 725px;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .content {
        margin-left: 15vw;
        padding-left: 0;
    }
}

.header {
    margin-bottom: 3rem;
}

.logo {
    width: 60px;
    height: auto;
}

.logo svg {
    display: block;
    width: 100%;
}

.hero {
    margin-bottom: 4rem;
}

.message {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: normal;
    letter-spacing: -0.02em;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

.link-item {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: opacity 0.2s ease;
}

.link-item:hover {
    opacity: 0.7;
}

.link-title {
    font-size: 1.25rem;
    font-weight: normal;
    margin-bottom: 0.25rem;
}

.link-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-height: 700px) {
    .content {
        justify-content: flex-start;
    }
}