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

:root {
    --bg: #0f0f0f;
    --text: #f5f5f5;
    --text-muted: #888;
    --accent: #f56565;
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  "Helvetica Neue", Arial, sans-serif;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-stack);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    padding: 6rem 1.5rem 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.hero {
    margin-bottom: 5rem;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero p:last-child {
    margin-bottom: 0;
}

.accent {
    color: var(--accent);
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
}

.link-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 4rem;
}

.link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    text-align: left;
    transition: opacity 0.15s ease;
}

.link:hover {
    opacity: 0.65;
}

.link-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link-icon svg {
    width: 32px;
    height: 32px;
}

.link-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.link-name {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
}

.link-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

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

@media (max-width: 600px) {
    .container {
        padding: 4rem 1.5rem 2rem;
    }
    .hero {
        margin-bottom: 3.5rem;
    }
    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    .hero p {
        font-size: 1.05rem;
    }
    .links {
        gap: 1.5rem;
        margin-bottom: 3.5rem;
    }
    .link-row {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}
