:root {
    --bg-dark: #0f1115;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-glass: rgba(255, 255, 255, 0.08);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --accent-green: #6366f1;
    --accent-purple: #6366f1;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px 80px;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    color: #f9fafb;
    font-weight: 800;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 36px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 8px;
}

a {
    color: var(--accent-purple);
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: var(--accent-green);
    text-decoration: underline;
}

hr {
    border: 0;
    border-top: 1px solid var(--border-glass);
    margin: 60px 0;
}

ul,
ol {
    padding-left: 20px;
    color: var(--text-muted);
}

li {
    margin-bottom: 8px;
}

p {
    color: var(--text-muted);
}

.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 15% 50%, rgba(99, 102, 241, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(99, 102, 241, 0.15), transparent 25%);
    filter: blur(80px);
}

.home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.2s;
}

.home-link:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}