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

:root {
    --bg: #0d0d0d;
    --surface: #161616;
    --border: #2a2a2a;
    --accent: #e8d5a3;
    --text: #f0ece0;
    --muted: #666;
}

body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: 'DM Mono', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 4rem 2rem;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(232, 213, 163, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232, 213, 163, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.hero {
    height: calc(100vh - 8rem);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero h2 {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    color: var(--muted);
}

.centered-box {
    background: var(--surface);
    padding: 2rem;
    border-radius: 6px;
    max-width: 640px;
    text-align: center;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.centered-box h1 {
    font-family: 'DM Serif Display', serif;
    color: var(--text);
    font-size: clamp(1.5rem, 5vw, 2.4rem);
}

.centered-box h2 {
    color: var(--accent);
    font-weight: 300;
}

#icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

#icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    border: 1px solid rgba(232, 213, 163, 0.2);
    background: var(--surface);
    color: var(--text);
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
    text-decoration: none;
    cursor: pointer;
}

#icons a:hover {
    transform: translateY(-2px);
    background: rgba(232, 213, 163, 0.14);
    border-color: rgba(232, 213, 163, 0.28);
}

#icons i {
    font-size: 26px;
    color: currentColor;
}
