/* bahisguncelgiris.com — premium dark tasarım sistemi */
:root {
  --bg: #06080f;
  --bg-2: #0b1020;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --gold: #f5b32d;
  --gold-2: #ffd873;
  --gold-3: #ffeda8;
  --gold-grad: linear-gradient(135deg, #ffe49a 0%, #f5b32d 55%, #d98f12 100%);
  --green: #34e39c;
  --blue: #4f8dff;
  --text: #f2f5fb;
  --muted: #b6c1d8;
  --muted-2: #8b96b0;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font: "Manrope", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* arka plan: sabit renkli orb'lar + ince grid */
.bg-decor { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: radial-gradient(1200px 700px at 85% -10%, #1a2140 0%, transparent 60%), radial-gradient(1000px 600px at -10% 30%, #101830 0%, transparent 55%), linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.bg-decor::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(900px 500px at 50% 0%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(900px 500px at 50% 0%, #000 0%, transparent 75%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.orb-gold { width: 480px; height: 480px; background: rgba(245, 179, 45, 0.14); top: -180px; right: -120px; }
.orb-blue { width: 420px; height: 420px; background: rgba(79, 141, 255, 0.12); bottom: -160px; left: -140px; }
.orb-green { width: 300px; height: 300px; background: rgba(52, 227, 156, 0.08); top: 30%; left: 55%; }

a { color: var(--gold-2); text-decoration: none; }
a:hover { text-decoration: none; }
.container { width: min(1220px, 100% - 36px); margin-inline: auto; }
::selection { background: rgba(245, 179, 45, 0.35); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(6, 8, 15, 0.72);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 13px 0; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.18rem; color: var(--text); letter-spacing: -0.2px; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center;
  background: var(--gold-grad); box-shadow: 0 6px 20px rgba(245, 179, 45, 0.35);
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-text span { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.main-nav { display: flex; gap: 6px; flex-wrap: wrap; }
.main-nav a {
  color: var(--muted); padding: 9px 16px; border-radius: 999px; font-weight: 600; font-size: 0.92rem;
  border: 1px solid transparent; transition: all 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--text); background: var(--surface-2); border-color: var(--border); }
.soon-chip {
  display: inline-block; margin-left: 6px; padding: 1px 8px; border-radius: 999px;
  background: var(--gold-grad); color: #1a1204; font-size: 0.6rem; font-weight: 800;
  letter-spacing: 0.5px; vertical-align: 2px;
}

/* ---------- hero ---------- */
.hero { padding: 66px 0 30px; text-align: center; position: relative; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); font-weight: 700; font-size: 0.78rem; letter-spacing: 1.6px; text-transform: uppercase;
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 0 rgba(52, 227, 156, 0.6); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 227, 156, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(52, 227, 156, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 227, 156, 0); }
}
.hero h1 {
  font-size: clamp(2.1rem, 5.6vw, 3.9rem); font-weight: 800; letter-spacing: -1.2px;
  line-height: 1.08; margin: 20px 0 14px;
}
.hero h1 .grad { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: var(--muted); max-width: 660px; margin: 0 auto; font-size: clamp(0.98rem, 2vw, 1.14rem); }
.search-wrap { max-width: 600px; margin: 28px auto 0; position: relative; }
.search-wrap .s-icon { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); color: var(--muted-2); width: 20px; height: 20px; }
#siteSearch {
  width: 100%; padding: 17px 22px 17px 52px; border-radius: 999px;
  border: 1px solid var(--border-strong); background: rgba(11, 16, 32, 0.85);
  color: var(--text); font-size: 1.02rem; font-family: var(--font); outline: none;
  box-shadow: var(--shadow); transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
#siteSearch::placeholder { color: var(--muted-2); }
#siteSearch:focus { border-color: rgba(245, 179, 45, 0.6); box-shadow: 0 18px 50px rgba(0,0,0,0.45), 0 0 0 4px rgba(245, 179, 45, 0.14); }
.hero-stats { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.stat-chip {
  display: inline-flex; align-items: baseline; gap: 8px; padding: 10px 20px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--border);
}
.stat-chip strong { font-size: 1.15rem; font-weight: 800; color: var(--gold-2); }
.stat-chip span { color: var(--muted); font-size: 0.84rem; font-weight: 600; }

/* ---------- harf navigasyonu ---------- */
.letter-nav { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; padding: 24px 0 8px; }
.letter-nav a {
  min-width: 38px; padding: 7px 9px; text-align: center; border-radius: 11px;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text); font-weight: 800; font-size: 0.82rem; transition: all 0.15s ease;
}
.letter-nav a:hover { background: var(--gold-grad); color: #1a1204; border-color: transparent; transform: translateY(-2px); }

/* ---------- site kartlari ---------- */
.main-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  gap: 15px; padding: 22px 0 16px;
}
.letter-head {
  grid-column: 1 / -1; display: flex; align-items: baseline; gap: 12px;
  margin: 12px 0 0; padding-top: 12px; border-top: 1px solid var(--border);
}
.letter-head .big-letter {
  font-size: 1.35rem; font-weight: 800; line-height: 1; background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.letter-head .count { color: var(--muted-2); font-size: 0.8rem; font-weight: 600; }
.site-card {
  position: relative; display: flex; align-items: center; gap: 14px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 16px 16px 16px 18px; color: var(--text);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.site-card:hover {
  transform: translateY(-4px); border-color: rgba(245, 179, 45, 0.5);
  background: var(--surface-2);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(245, 179, 45, 0.12), 0 12px 32px rgba(245, 179, 45, 0.07);
}
.logo {
  width: 48px; height: 48px; border-radius: 13px; object-fit: contain;
  background: rgba(255, 255, 255, 0.05); flex: 0 0 48px; padding: 4px;
}
.logo-fallback {
  display: none; place-items: center; color: #1a1204; font-weight: 800; font-size: 0.95rem;
  background: var(--gold-grad); letter-spacing: 0.5px;
}
.card-title { min-width: 0; flex: 1; }
.card-title h3 { font-size: 1.04rem; font-weight: 700; letter-spacing: -0.2px; line-height: 1.25; }
.card-title h3 a { color: var(--text); }
.domain {
  display: inline-block; margin-top: 4px; color: var(--muted); font-size: 0.78rem; font-weight: 600;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border);
  padding: 3px 12px; border-radius: 999px; max-width: 100%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.card-go {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--surface-2); border: 1px solid var(--border-strong);
  color: var(--gold-2); transition: all 0.18s ease;
}
.card-go svg { width: 17px; height: 17px; transition: transform 0.18s ease; }
.site-card:hover .card-go { background: var(--gold-grad); color: #1a1204; border-color: transparent; box-shadow: 0 8px 20px rgba(245, 179, 45, 0.35); }
.site-card:hover .card-go svg { transform: translateX(2px); }
.live-dot { display: flex; align-items: center; flex: 0 0 auto; }
.live-dot i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 9px var(--green); font-style: normal; }
.no-result { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 40px 0; font-size: 1.02rem; }

/* ---------- butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 14px; font-weight: 800; font-size: 0.95rem;
  font-family: var(--font); border: 1px solid transparent; cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, filter 0.16s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); }
.btn-gold {
  background: var(--gold-grad); color: #1a1204;
  box-shadow: 0 10px 28px rgba(245, 179, 45, 0.3);
}
.btn-gold:hover { box-shadow: 0 16px 38px rgba(245, 179, 45, 0.42); }
.btn-ghost { background: var(--surface-2); border-color: var(--border-strong); color: var(--text); }
.btn-big { padding: 17px 36px; font-size: 1.08rem; border-radius: 16px; }

/* ---------- site detay ---------- */
.breadcrumb { padding: 22px 0 0; color: var(--muted-2); font-size: 0.88rem; display: flex; gap: 9px; flex-wrap: wrap; align-items: center; }
.breadcrumb em { color: var(--gold-2); font-style: normal; font-weight: 600; }
.site-detail { padding-bottom: 46px; }
.detail-hero {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  padding: 30px 0 10px;
}
.logo-big { width: 84px; height: 84px; border-radius: 22px; font-size: 1.6rem; flex: 0 0 84px; box-shadow: 0 14px 34px rgba(0,0,0,0.4); }
.detail-hero h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800; letter-spacing: -0.8px; line-height: 1.12; }
.detail-sub { color: var(--muted); margin-top: 8px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.92rem; }
.status-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 999px;
  background: rgba(52, 227, 156, 0.1); border: 1px solid rgba(52, 227, 156, 0.35);
  color: var(--green); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.6px; text-transform: uppercase;
}
.status-pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); font-style: normal; }
.go-box {
  background: linear-gradient(135deg, rgba(245, 179, 45, 0.12), rgba(245, 179, 45, 0.03) 60%);
  border: 1px solid rgba(245, 179, 45, 0.35); border-radius: 22px;
  padding: 32px; text-align: center; margin: 20px 0 30px; position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.go-box::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px 130px at 50% -40px, rgba(245, 179, 45, 0.18), transparent 70%);
}
.go-domain { color: var(--muted); margin-bottom: 16px; font-size: 0.95rem; }
.go-domain strong { color: var(--gold-2); word-break: break-all; font-weight: 700; }
.go-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.go-note { color: var(--muted-2); font-size: 0.8rem; margin-top: 15px; }
.detail-cols { display: grid; grid-template-columns: 1.65fr 1fr; gap: 18px; align-items: start; }
.info-boxes { display: grid; gap: 13px; }
.info-box {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 19px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.info-box h3 { font-size: 0.98rem; margin-bottom: 7px; display: flex; align-items: center; gap: 9px; }
.info-box h3 .ib-icon {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: rgba(245, 179, 45, 0.13); border: 1px solid rgba(245, 179, 45, 0.3); font-size: 0.95rem;
}
.info-box p { color: var(--muted); font-size: 0.88rem; }
.detail-faq { margin: 30px 0; }
.detail-faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px 20px; margin-bottom: 9px; backdrop-filter: blur(10px);
}
.detail-faq summary, .faq summary {
  cursor: pointer; font-weight: 700; color: var(--text); list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 0.97rem;
}
.detail-faq summary::-webkit-details-marker, .faq summary::-webkit-details-marker { display: none; }
.summary-plus { flex: 0 0 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border-strong); color: var(--gold-2); font-weight: 800; transition: transform 0.2s ease; }
details[open] .summary-plus { transform: rotate(45deg); background: var(--gold-grad); color: #1a1204; }
.detail-faq p, .faq p { color: var(--muted); margin-top: 10px; font-size: 0.92rem; }
.related { margin-top: 10px; }
.related h2 { font-size: 1.28rem; letter-spacing: -0.4px; margin-bottom: 16px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(205px, 1fr)); gap: 11px; }
.related-card {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 16px; color: var(--text); transition: all 0.16s ease;
}
.related-card:hover { border-color: rgba(245, 179, 45, 0.5); background: var(--surface-2); transform: translateY(-2px); }
.related-card .rc-name { font-weight: 700; font-size: 0.95rem; }
.related-card .rc-dom { color: var(--muted-2); font-size: 0.75rem; display: block; margin-top: 2px; max-width: 130px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.related-card .rc-arrow { color: var(--gold-2); font-size: 1.1rem; }

/* ---------- SEO icerik ---------- */
.seo-content { padding: 30px 0 10px; }
.seo-block, .seo-steps, .faq {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 28px; margin-bottom: 15px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.seo-block h2, .seo-steps h2, .faq h2 { font-size: 1.22rem; letter-spacing: -0.4px; margin-bottom: 12px; display: flex; align-items: center; gap: 11px; }
.h2-dot { width: 10px; height: 10px; border-radius: 4px; background: var(--gold-grad); box-shadow: 0 0 12px rgba(245, 179, 45, 0.5); flex: 0 0 10px; }
.seo-block p, .seo-steps li { color: var(--muted); font-size: 0.95rem; }
.seo-block p + p { margin-top: 10px; }
.seo-steps ol { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 13px; margin-top: 14px; }
.step-card {
  background: rgba(255, 255, 255, 0.03); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px; position: relative;
}
.step-num {
  display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 10px;
  background: var(--gold-grad); color: #1a1204; font-weight: 800; font-size: 0.85rem; margin-bottom: 10px;
}
.step-card strong { display: block; margin-bottom: 4px; font-size: 0.95rem; }
.step-card span { color: var(--muted); font-size: 0.85rem; }
.faq details { border-bottom: 1px solid var(--border); padding: 15px 4px; background: none; }
.faq details:first-of-type { border-top: 1px solid var(--border); }
.faq details:last-of-type { border-bottom: 0; }
.faq > h2 { margin-bottom: 6px; }
.faq .summary-plus { margin-top: -2px; }

/* ---------- yakinda ---------- */
.cs-hero {
  padding: 74px 0 44px; text-align: center; position: relative;
  background: radial-gradient(620px 320px at 50% 0%, rgba(245, 179, 45, 0.12), transparent 70%);
}
.cs-wrap { max-width: 730px; }
.cs-icon {
  width: 116px; height: 116px; margin: 0 auto 20px; border-radius: 34px;
  display: grid; place-items: center; font-size: 3.4rem;
  background: linear-gradient(145deg, rgba(255, 228, 154, 0.22), rgba(245, 179, 45, 0.05));
  border: 1px solid rgba(245, 179, 45, 0.45);
  box-shadow: 0 0 44px rgba(245, 179, 45, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: cs-float 3.4s ease-in-out infinite;
}
@keyframes cs-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.cs-badge {
  display: inline-block; padding: 7px 18px; border-radius: 999px;
  background: var(--gold-grad); color: #1a1204;
  font-weight: 800; font-size: 0.78rem; letter-spacing: 2.6px; margin-bottom: 16px;
  box-shadow: 0 10px 26px rgba(245, 179, 45, 0.3);
}
.cs-hero h1 { font-size: clamp(1.9rem, 5vw, 3rem); font-weight: 800; letter-spacing: -1px; margin-bottom: 14px; }
.cs-sub { color: var(--muted); max-width: 620px; margin: 0 auto 26px; font-size: 1.02rem; }
.cs-actions { display: flex; justify-content: center; margin-bottom: 30px; }
.cs-features { list-style: none; display: flex; justify-content: center; gap: 11px; flex-wrap: wrap; }
.cs-features li {
  display: inline-flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.87rem; font-weight: 600;
  background: var(--surface); border: 1px solid var(--border);
  padding: 9px 16px; border-radius: 999px;
}
.cs-features li b { font-size: 1rem; }
.cs-teaser-head { font-size: 1.3rem; letter-spacing: -0.4px; margin: 10px 0 8px; display: flex; align-items: center; gap: 11px; }
.cs-teaser-sub { color: var(--muted); margin-bottom: 20px; font-size: 0.95rem; }
.cs-teaser { padding-bottom: 30px; }

/* ---------- telegram kanal CTA ---------- */
.tg-nav-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: linear-gradient(135deg, #3baee8, #1e8fc4); color: #fff !important;
  padding: 9px 18px !important; border-radius: 999px; font-weight: 700; font-size: 0.92rem;
  box-shadow: 0 4px 16px rgba(59, 174, 232, 0.35); transition: all 0.18s ease;
}
.tg-nav-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(59, 174, 232, 0.5); }
.tg-nav-btn svg { width: 16px; height: 16px; }

.tg-banner {
  padding: 6px 0 22px;
}
.tg-banner-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(59, 174, 232, 0.12), rgba(30, 143, 196, 0.04) 70%);
  border: 1px solid rgba(59, 174, 232, 0.35);
  border-radius: 22px; padding: 26px 32px; position: relative; overflow: hidden;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.tg-banner-inner::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px 130px at 20% -40px, rgba(59, 174, 232, 0.15), transparent 70%);
}
.tg-banner-text { display: flex; align-items: center; gap: 18px; flex: 1; min-width: 260px; }
.tg-icon {
  flex: 0 0 54px; width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, #3baee8, #1e8fc4); color: #fff;
  box-shadow: 0 8px 24px rgba(59, 174, 232, 0.4);
}
.tg-icon svg { width: 26px; height: 26px; }
.tg-banner-text h2 { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.3px; line-height: 1.3; }
.tg-banner-text p { color: var(--muted); font-size: 0.9rem; margin-top: 3px; }

.btn-tg {
  background: linear-gradient(135deg, #3baee8, #1e8fc4); color: #fff;
  box-shadow: 0 10px 28px rgba(59, 174, 232, 0.35);
}
.btn-tg:hover { box-shadow: 0 14px 36px rgba(59, 174, 232, 0.5); }
.btn-tg svg { width: 18px; height: 18px; }
.btn-tg-sm { padding: 10px 18px; font-size: 0.85rem; margin-top: 12px; }

.tg-box { border-color: rgba(59, 174, 232, 0.3); background: linear-gradient(135deg, rgba(59, 174, 232, 0.08), rgba(59, 174, 232, 0.02)); }
.tg-ib { background: rgba(59, 174, 232, 0.15) !important; border-color: rgba(59, 174, 232, 0.35) !important; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: rgba(6, 8, 15, 0.85); margin-top: 40px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 26px; padding: 36px 0 20px; }
.footer-brand { margin-bottom: 12px; }
.footer-desc { color: var(--muted-2); font-size: 0.87rem; max-width: 380px; }
.site-footer h3 { font-size: 0.92rem; margin-bottom: 10px; letter-spacing: 0.4px; }
.site-footer nav a { display: block; color: var(--muted); font-size: 0.87rem; padding: 4px 0; transition: color 0.15s ease; }
.site-footer nav a:hover { color: var(--gold-2); }
.footer-note { color: var(--muted-2); font-size: 0.78rem; padding: 16px 0 24px; border-top: 1px solid var(--border); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .detail-cols { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .container { width: min(1220px, 100% - 28px); }
  .header-inner { justify-content: center; }
  .hero { padding: 44px 0 20px; }
  .hero-stats { gap: 9px; }
  .stat-chip { padding: 8px 14px; }
  .main-grid { grid-template-columns: 1fr; gap: 12px; }
  .site-card { padding: 14px; }
  .card-go { width: 38px; height: 38px; }
  .live-dot { right: 62px; top: 13px; }
  .go-actions { flex-direction: column; }
  .go-box { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; }
  .letter-nav a { min-width: 33px; padding: 6px 7px; }
  .seo-block, .seo-steps, .faq { padding: 20px 18px; }
}
