:root {
    --bg: #080c14;
    --surface: #0d1117;
    --border: #1e2d3d;
    --gold: #d4af37;
    --text: #e2e8f0;
    --muted: #94a3b8;
    --body: 'DM Sans', sans-serif;
    --heading: 'Bebas Neue', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--body);
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    line-height: 1.7;
}
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(212,175,55,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(212,175,55,0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
header {
    position: relative;
    z-index: 1;
    background: linear-gradient(160deg, #11151e 0%, #0a0d14 100%);
    border-bottom: 1px solid var(--border);
    padding: 20px 28px;
}
.header-inner {
    max-width: 940px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}
.logo {
    font-family: var(--heading);
    font-size: 28px;
    color: var(--gold);
    letter-spacing: 3px;
    text-decoration: none;
}
nav { display: flex; gap: 14px; flex-wrap: wrap; }
nav a, footer a { color: var(--muted); font-size: 13px; text-decoration: none; }
nav a:hover, footer a:hover { color: var(--text); }
main {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 28px 70px;
}
.eyebrow {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
h1 {
    font-family: var(--heading);
    font-size: 48px;
    letter-spacing: 3px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 12px;
}
.lead {
    color: #cbd5e1;
    max-width: 740px;
    margin-bottom: 30px;
    font-size: 16px;
}
section, .guide-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 18px;
}
h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text);
}
p, li {
    color: var(--muted);
    font-size: 14px;
}
a { color: var(--gold); }
.card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.guide-card {
    display: block;
    color: inherit;
    text-decoration: none;
    margin-bottom: 0;
    transition: border-color 0.15s, transform 0.15s;
}
.guide-card:hover {
    border-color: rgba(212,175,55,0.45);
    transform: translateY(-2px);
}
.guide-card span {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    margin-top: 14px;
}
footer {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 28px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
footer span { color: #334155; }
@media (max-width: 680px) {
    h1 { font-size: 38px; }
    .card-grid { grid-template-columns: 1fr; }
}
