@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');

:root {
    --bg: #0f1117;
    --surface: #1a1d27;
    --surface-2: #23273a;
    --text: #e6e8ef;
    --text-muted: #9498a8;
    --accent: #6c8cff;
    --accent-2: #4ee1c1;
    --border: #2e3349;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: radial-gradient(circle at top right, #1c2030, var(--bg) 60%);
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    padding: 40px 20px;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    margin-bottom: 40px;
}

h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0 0 10px 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

header p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.05rem;
}

section.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 24px;
}

h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-2);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

li {
    background: var(--surface-2);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, transform 0.15s ease;
}

li:hover {
    border-color: var(--accent);
    transform: translateX(4px);
}

a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: var(--accent-2);
}

.lang-links a {
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 6px;
}

footer {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}
