:root {
    --bg: #0f172a;
    --card: #1e293b;
    --accent: #1e88e5;
    --text: #f1f5f9;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

html,
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
}

.wrap {
    max-width: 900px;
    margin: 4rem auto;
    padding: 2rem;
    background: var(--card);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    display: inline-block;
    background: linear-gradient(90deg, #9333ea, #1e88e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    display: inline-block;
    background: linear-gradient(90deg, #9333ea, #1e88e5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.meta {
    gap: 1rem;
    color: #94a3b8;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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