/* ═══════════════════════════════════════════════════════════════
   SağlamLink — Kalkan (Shield) Tema
   Koyu çam yeşili zemin + altın kalkan vurgusu + turkuaz onay rengi
   ═══════════════════════════════════════════════════════════════ */

:root {
    --gold: #e3a53d;
    --gold-light: #f0bd63;
    --gold-dark: #b9822a;
    --gold-glow: rgba(227, 165, 61, .28);
    --teal: #2ec4b6;
    --teal-light: #5ddbcf;
    --teal-glow: rgba(46, 196, 182, .25);
    --coral: #e2603f;
    --coral-light: #ef8468;
    --coral-glow: rgba(226, 96, 63, .25);

    --bg-primary: #0f1e19;
    --bg-secondary: #13251f;
    --bg-card: #16302a;
    --bg-card-hover: #1d3c33;
    --bg-glass: rgba(19, 37, 31, .88);

    --text-primary: #f4efe4;
    --text-secondary: #b9cbc3;
    --text-muted: #7d938a;

    --border: rgba(227, 165, 61, .14);
    --border-teal: rgba(46, 196, 182, .25);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,.25);
    --shadow-md: 0 4px 16px rgba(0,0,0,.32);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.42);
    --shadow-gold: 0 4px 20px rgba(227,165,61,.18);

    --font-main: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Sora', 'Figtree', sans-serif;

    --header-height: 72px;
    --container: 1280px;
    --rail-w: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-left: var(--rail-w);
}
@media (max-width: 640px) { :root { --rail-w: 54px; } }
a { color: var(--gold-light); text-decoration: none; transition: all .2s ease; }
a:hover { color: var(--teal-light); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--gold); color: #101; padding: 10px 16px; z-index: 3000; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

body::before {
    content: '';
    position: fixed; inset: 0;
    background:
        radial-gradient(ellipse 620px 420px at 15% 8%, rgba(46,196,182,.06) 0%, transparent 70%),
        radial-gradient(ellipse 520px 360px at 85% 15%, rgba(227,165,61,.05) 0%, transparent 70%),
        radial-gradient(ellipse 420px 320px at 50% 90%, rgba(226,96,63,.03) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; position: relative; z-index: 1; }

/* ── Reklam şeritleri (banner) — standart 728×90 (IAB leaderboard) boyut, orantılı mobil küçülme ── */
.ad-banner-box { display: block; width: 100%; max-width: 728px; aspect-ratio: 728 / 90; margin: 0 auto; overflow: hidden; border-radius: 6px; background: #0a1512; }
.ad-banner-box img, .ad-banner-box video { width: 100%; height: 100%; object-fit: cover; display: block; }
.ad-strip { position: relative; z-index: 1001; background: linear-gradient(90deg,#0a1512,#152a24); padding: 10px 44px 10px 14px; }
.ad-strip-inner { max-width: 728px; margin: 0 auto; text-align: center; }
.ad-strip-top { border-bottom: 2px solid var(--teal); }
.ad-strip-bottom { position: fixed; left: var(--rail-w); right: 0; bottom: 0; z-index: 995; border-top: 2px solid var(--gold); box-shadow: 0 -6px 24px rgba(0,0,0,.4); }

/* ── Banner istifi (ana sayfa) — betlink tarzı dikey banner sütunu ── */
.banner-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.banner-stack-item { display: block; border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); background: #0a1512; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.banner-stack-item:hover { transform: translateY(-2px); border-color: var(--border-teal); box-shadow: 0 8px 24px rgba(0,0,0,.35); }
.banner-stack-item .ad-banner-box { max-width: none; width: 100%; aspect-ratio: 728 / 90; border-radius: 0; }
.banner-stack-head { display: flex; align-items: center; justify-content: space-between; max-width: var(--container); margin: 28px auto 12px; padding: 0 20px; }
.banner-stack-head span { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); }
@media (max-width: 900px) { .banner-stack { grid-template-columns: 1fr; } }

/* ── Sol menü şeridi (side rail) — tüm sayfalarda sabit, ikon tabanlı hızlı gezinme ── */
.side-rail { position: fixed; top: 0; left: 0; bottom: 0; width: var(--rail-w); z-index: 1200; background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary) 65%); border-right: 1px solid var(--border); display: flex; flex-direction: column; align-items: stretch; padding: 14px 0; overflow-y: auto; scrollbar-width: none; }
.side-rail::-webkit-scrollbar { display: none; }
.rail-logo { color: var(--gold); display: flex; justify-content: center; margin-bottom: 6px; flex-shrink: 0; }
.rail-nav { display: flex; flex-direction: column; align-items: center; flex: 1; width: 100%; justify-content: space-evenly; gap: 4px; }
.rail-link { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; width: 52px; padding: 8px 2px; border-radius: 12px; color: var(--text-secondary); text-align: center; flex-shrink: 0; }
.rail-link svg { width: 19px; height: 19px; flex-shrink: 0; }
.rail-link .rail-label { font-size: .56rem; font-weight: 700; line-height: 1.05; letter-spacing: -.01em; }
.rail-link:hover { background: rgba(227,165,61,.12); color: var(--gold-light); }
.rail-link.active { background: rgba(46,196,182,.14); color: var(--teal-light); box-shadow: inset 0 0 0 1px var(--border-teal); }
.rail-tg { color: var(--teal-light); }
@media (max-width: 640px) {
    .side-rail { width: 54px; }
    .rail-link { width: 42px; padding: 7px 1px; }
    .rail-link .rail-label { display: none; }
    .rail-link svg { width: 21px; height: 21px; }
}
.ad-note { display: block; color: var(--text-muted); font-size: .72rem; margin-top: 4px; }
.ad-close { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.08); border: none; color: var(--text-secondary); width: 26px; height: 26px; border-radius: 50%; cursor: pointer; z-index: 2; }
.ad-strip-inline { margin: 24px auto; border-radius: var(--radius-md); padding: 14px 14px 12px; max-width: 760px; text-align: center; }
html.ad-top-off .ad-strip-top { display: none; }
html.ad-bottom-off .ad-strip-bottom { display: none; }
html:not(.ad-bottom-off) body { padding-bottom: 134px; }
html.ad-bottom-off body { padding-bottom: 0; }
@media (max-width: 640px) { .ad-strip { padding: 8px 40px 8px 10px; } html:not(.ad-bottom-off) body { padding-bottom: 96px; } }

/* ── Header ── */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(15,30,25,.92); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); height: var(--header-height); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 16px; }
.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 800; color: var(--text-primary); flex-shrink: 0; }
.logo-icon { color: var(--gold); display: flex; }
.logo span { color: var(--gold); }
.nav { display: flex; gap: 4px; flex: 1; justify-content: center; flex-wrap: wrap; }
.nav a { padding: 8px 14px; border-radius: var(--radius-full); font-weight: 600; font-size: .92rem; color: var(--text-secondary); }
.nav a:hover, .nav a.active { background: rgba(227,165,61,.12); color: var(--gold-light); }
.header-cta { flex-shrink: 0; background: linear-gradient(135deg, var(--teal), #1f9e92); color: #06221e; font-weight: 700; padding: 9px 16px; border-radius: var(--radius-full); font-size: .88rem; white-space: nowrap; }
.header-cta:hover { color: #06221e; filter: brightness(1.08); }
.menu-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; }
@media (max-width: 980px) {
    .nav { position: fixed; top: var(--header-height); left: var(--rail-w); right: 0; bottom: 0; background: var(--bg-secondary); flex-direction: column; padding: 20px; display: none; overflow-y: auto; justify-content: flex-start; z-index: 999; }
    .nav.open { display: flex; }
    .nav a { padding: 14px 16px; text-align: center; font-size: 1.05rem; }
    .header-cta { display: none; }
    .menu-toggle { display: flex; }
}

main { position: relative; z-index: 1; min-height: 60vh; }

/* ── Butonlar ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: var(--radius-full); font-weight: 700; font-size: .95rem; cursor: pointer; border: none; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #16110a; box-shadow: var(--shadow-gold); }
.btn-primary:hover { color: #16110a; filter: brightness(1.06); }
.btn-outline { background: transparent; border: 1px solid var(--border-teal); color: var(--teal-light); }

/* ── Breadcrumb ── */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; padding: 18px 0 4px; font-size: .85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-secondary); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--text-muted); }
.article-wrap { padding-bottom: 20px; }

/* ── Hero (genel sayfa) ── */
.page-hero { padding: 28px 0 20px; }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(1.6rem,4vw,2.5rem); line-height: 1.15; margin: 10px 0 14px; font-weight: 800; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(46,196,182,.12); border: 1px solid var(--border-teal); color: var(--teal-light); padding: 6px 14px; border-radius: var(--radius-full); font-size: .82rem; font-weight: 700; }
.pulse-dot { width: 7px; height: 7px; background: var(--teal); border-radius: 50%; }
.page-lead { color: var(--text-secondary); font-size: 1.05rem; max-width: 760px; }
.page-lead p { margin-bottom: 10px; }
.page-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; font-size: .85rem; color: var(--text-muted); }

.facts-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.fact { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 10px 14px; min-width: 130px; }
.fact .k { display: block; font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 3px; }
.fact .v { font-weight: 700; color: var(--gold-light); }

/* ── Site detay hero ── */
.detail-hero { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; margin: 18px 0 28px; }
.detail-header { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.detail-logo { width: 72px; height: 72px; border-radius: var(--radius-md); object-fit: contain; background: #0c1a16; padding: 8px; }
.detail-info { flex: 1; min-width: 200px; }
.detail-info h1 { font-family: var(--font-heading); font-size: clamp(1.35rem,3.4vw,1.9rem); margin-bottom: 8px; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: var(--text-secondary); }
.detail-cta { min-width: 200px; }

/* ── İçerik bölümleri ── */
.toc { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px 20px; margin: 20px 0; }
.toc strong { display: block; margin-bottom: 8px; font-family: var(--font-heading); }
.toc ol { padding-left: 18px; list-style: decimal; display: grid; gap: 4px; }
.toc a { color: var(--text-secondary); font-size: .92rem; }
.article { max-width: 780px; }
.content-section { margin: 30px 0; }
.content-section h2 { font-family: var(--font-heading); font-size: 1.35rem; margin-bottom: 12px; color: var(--text-primary); scroll-margin-top: 90px; }
.content-section p { margin-bottom: 14px; color: var(--text-secondary); }
.content-section strong { color: var(--text-primary); }
.steps { list-style: decimal; padding-left: 20px; display: grid; gap: 8px; margin: 12px 0; color: var(--text-secondary); }
.steps li::marker { color: var(--gold); font-weight: 700; }
.tag-list { display: grid; gap: 12px; margin: 12px 0; }
.tag-list dt { font-weight: 700; color: var(--teal-light); font-family: var(--font-heading); font-size: .98rem; }
.tag-list dd { color: var(--text-secondary); margin: 2px 0 6px; }
.callout { border-radius: var(--radius-md); padding: 16px 18px; margin: 16px 0; border: 1px solid var(--border); }
.callout.warn { background: rgba(226,96,63,.08); border-color: var(--coral-glow); }
.callout strong { display: block; margin-bottom: 6px; color: var(--coral-light); font-family: var(--font-heading); }
.num-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .92rem; }
.num-table th, .num-table td { padding: 9px 11px; border: 1px solid var(--border); text-align: left; }
.num-table th { background: rgba(227,165,61,.08); color: var(--gold-light); }
.num-table td.r, .num-table th.r { text-align: right; font-variant-numeric: tabular-nums; }
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.sim-list { list-style: none; margin: 14px 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill,minmax(230px,1fr)); gap: 8px; }
.sim-list li { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; font-size: .9rem; }
.sim-list li a { font-weight: 700; }
.ad-note { color: var(--text-muted); font-size: .78rem; }

/* ── FAQ ── */
.section { padding: 30px 0; }
.section-header { margin-bottom: 18px; }
.section-title { font-family: var(--font-heading); font-size: 1.4rem; display: flex; align-items: center; gap: 8px; }
.faq-list { display: grid; gap: 10px; max-width: 800px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px 18px; }
.faq-question { font-weight: 700; margin-bottom: 6px; color: var(--gold-light); }
.faq-answer p { color: var(--text-secondary); font-size: .93rem; }

/* ── Site kartları / ızgara ── */
.site-grid-head { color: var(--text-muted); font-size: .88rem; margin: 6px 0 14px; }
.site-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(160px,1fr)); gap: 12px; margin: 12px 0 28px; }
.site-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; transition: transform .15s ease, border-color .15s ease; }
.site-card:hover { transform: translateY(-3px); border-color: var(--border-teal); }
.site-card img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; background: #0c1a16; padding: 4px; }
.site-card-name { font-weight: 700; font-size: .88rem; color: var(--text-primary); }
.badge-sponsor { display: inline-block; background: var(--coral-glow); color: var(--coral-light); font-size: .62rem; font-weight: 800; padding: 1px 6px; border-radius: var(--radius-full); vertical-align: middle; margin-left: 4px; }
.site-card-tags { font-size: .72rem; color: var(--text-muted); line-height: 1.3; }

/* ── Hesaplayıcılar ── */
.calc { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; margin: 20px 0; }
.calc-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; margin-bottom: 16px; }
.calc-grid label { display: block; font-size: .8rem; color: var(--text-muted); margin-bottom: 5px; }
.calc-grid input, .calc-grid select { width: 100%; padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg-secondary); color: var(--text-primary); font-size: .95rem; }
.calc-out { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 10px; background: var(--bg-secondary); border-radius: var(--radius-md); padding: 14px; }
.calc-out div { display: flex; flex-direction: column; gap: 4px; }
.calc-out span { font-size: .76rem; color: var(--text-muted); }
.calc-out b { font-size: 1.1rem; color: var(--gold-light); }
@media (max-width: 640px) { .calc-grid { grid-template-columns: 1fr; } }

/* ── Related / hub ── */
.related, .hub-group { margin: 30px 0; }
.related h2, .hub-group h2 { font-family: var(--font-heading); font-size: 1.25rem; margin-bottom: 14px; }
.rel-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(230px,1fr)); gap: 12px; }
.rel-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.rel-card .t { font-weight: 700; color: var(--teal-light); }
.rel-card .d { font-size: .83rem; color: var(--text-muted); }

.warning-box { background: rgba(226,96,63,.06); border: 1px solid var(--coral-glow); border-radius: var(--radius-md); padding: 16px 18px; margin: 30px 0; }
.warning-box h4 { color: var(--coral-light); margin-bottom: 6px; font-family: var(--font-heading); }
.warning-box p { font-size: .85rem; color: var(--text-secondary); }
.age-badge { font-size: .82rem; color: var(--text-muted); }

.sitemap-list { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 6px 16px; }
.sitemap-list a { color: var(--text-secondary); font-size: .9rem; }
.sitemap-list a:hover { color: var(--teal-light); }

/* ── A-Z dizin ── */
.dir-search { width: 100%; max-width: 420px; padding: 12px 18px; border-radius: var(--radius-full); border: 1px solid var(--border); background: var(--bg-card); color: var(--text-primary); margin-top: 16px; font-size: .95rem; }
.az-nav { position: sticky; top: var(--header-height); z-index: 50; display: flex; flex-wrap: wrap; gap: 4px; background: var(--bg-primary); padding: 12px 0; margin-bottom: 10px; border-bottom: 1px solid var(--border); }
.az-nav a { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-card); font-size: .78rem; font-weight: 700; color: var(--text-secondary); }
.az-nav a:hover { background: var(--gold); color: #16110a; }
.az-block { margin: 26px 0; scroll-margin-top: 130px; }
.az-block h2 { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 10px; color: var(--gold-light); }
.az-list { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 6px; }
.az-list li { display: flex; justify-content: space-between; gap: 8px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; font-size: .87rem; }
.az-list li a { font-weight: 600; color: var(--text-primary); }
.az-list li small { color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 110px; }

/* ── Anasayfa ── */
.hero-home { padding: 56px 0 40px; text-align: center; }
.hero-home h1 { font-family: var(--font-heading); font-size: clamp(2rem,5vw,3.1rem); font-weight: 800; margin: 16px 0; line-height: 1.15; }
.hero-home .lead { color: var(--text-secondary); max-width: 680px; margin: 0 auto 26px; font-size: 1.08rem; }
.stat-row { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-top: 30px; }
.stat { text-align: center; }
.stat b { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--gold-light); }
.stat span { font-size: .8rem; color: var(--text-muted); }
.tab-row { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin: 30px 0 10px; }
.tab-btn { padding: 8px 16px; border-radius: var(--radius-full); border: 1px solid var(--border); background: var(--bg-card); color: var(--text-secondary); font-size: .85rem; font-weight: 600; cursor: pointer; }
.tab-btn.active, .tab-btn:hover { background: rgba(227,165,61,.14); color: var(--gold-light); border-color: var(--border); }

/* ── Footer ── */
.footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: 48px 0 24px; margin-top: 50px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-brand p { color: var(--text-muted); font-size: .85rem; margin-top: 12px; }
.footer-social { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding: 9px 18px; border-radius: var(--radius-full); border: 1px solid var(--border-teal); color: var(--teal-light); font-size: .85rem; font-weight: 600; }
.footer-social:hover { background: rgba(46,196,182,.12); }
.footer h4 { font-family: var(--font-heading); font-size: .95rem; margin-bottom: 12px; color: var(--text-primary); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--text-muted); font-size: .87rem; }
.footer-links a:hover { color: var(--teal-light); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--border); font-size: .8rem; color: var(--text-muted); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.scroll-top { position: fixed; right: 18px; bottom: 18px; width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: #16110a; border: none; font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow-gold); z-index: 900; display: none; }
.scroll-top.show { display: block; }

.cookie-bar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1200; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; box-shadow: var(--shadow-lg); max-width: 560px; margin: 0 auto; }
.cookie-bar p { font-size: .85rem; color: var(--text-secondary); }
.cookie-bar a { color: var(--gold-light); }

/* ── 404 ── */
.error-page { text-align: center; padding: 80px 20px; }
.error-page h1 { font-family: var(--font-heading); font-size: 5rem; color: var(--gold); }
.error-page p { color: var(--text-secondary); margin: 14px 0 24px; }
.error-search { display: flex; max-width: 420px; margin: 0 auto 24px; gap: 8px; }
.error-search input { flex: 1; padding: 10px 14px; border-radius: var(--radius-full); border: 1px solid var(--border); background: var(--bg-card); color: var(--text-primary); }

@media (max-width: 640px) {
    .num-table { font-size: .82rem; }
    .num-table th, .num-table td { padding: 7px; }
    .site-grid { grid-template-columns: repeat(2,1fr); }
    .detail-cta { width: 100%; }
}
