
:root {
  --bg: #f5ecd8;
  --card: rgba(255, 251, 242, 0.92);
  --line: rgba(123, 79, 30, 0.16);
  --text: #2c241c;
  --muted: #6c6258;
  --accent: #bf672c;
  --accent-deep: #8c471d;
  --green: #dff3e8;
  --green-text: #18764a;
  --amber: #ffe7bf;
  --amber-text: #9a5a00;
  --sky: #dff0ff;
  --sky-text: #1d5f97;
  --stone: #e8e2db;
  --stone-text: #655c55;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "PingFang SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255,255,255,.88), transparent 28%),
    linear-gradient(180deg, #fff2c9 0%, var(--bg) 36%, #efe6d4 100%);
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 10; backdrop-filter: blur(10px);
  background: rgba(245,236,216,.72); border-bottom: 1px solid rgba(123,79,30,.1);
}
.topbar-inner { display:flex; gap:16px; align-items:center; justify-content:space-between; padding:16px 0; }
.brand { font-size: 28px; font-weight: 900; letter-spacing: -.03em; }
.brand small { display:block; font-size: 13px; color: var(--muted); font-weight: 500; margin-top: 4px; }
.nav { display:flex; flex-wrap:wrap; gap:10px; }
.nav a {
  background:rgba(255,255,255,.78); border:1px solid rgba(123,79,30,.1); border-radius:999px;
  padding:10px 16px; font-size:14px; font-weight:700;
}
.hero, .split { display:grid; grid-template-columns: 1.6fr 1fr; gap:24px; }
.hero { padding:40px 0 24px; }
.card {
  background: var(--card); border:1px solid var(--line); border-radius: 28px; box-shadow: 0 18px 48px rgba(73,42,10,.08);
}
.hero-main, .section { padding: 30px; }
.pill { display:inline-flex; padding:10px 14px; border-radius:999px; background:rgba(255,255,255,.85); font-size:13px; font-weight:800; color: var(--accent-deep); }
h1 { margin:18px 0 0; font-size:52px; line-height:1.04; letter-spacing:-.05em; }
h2 { margin:0; font-size:30px; }
.hero-main p, .section p, .intro p { line-height:1.8; color:var(--muted); }
.actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; }
.btn {
  display:inline-flex; align-items:center; justify-content:center; border-radius:999px; padding:14px 20px;
  font-weight:800; border:1px solid transparent;
}
.btn-primary { background:var(--accent); color:#fff; }
.btn-secondary { background:#fff; color:var(--text); border-color:rgba(123,79,30,.15); }
.stack, .grid, .grid-2, .grid-3 { display:grid; gap:18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.item { background: rgba(255,255,255,.82); border-radius:22px; padding:18px; }
.item h3 { margin:0; font-size:20px; }
.item p { margin:10px 0 0; color:var(--muted); line-height:1.7; font-size:14px; }
.meta { display:flex; justify-content:space-between; gap:12px; align-items:flex-start; }
.badge { border-radius:999px; padding:8px 12px; font-size:12px; font-weight:800; white-space:nowrap; }
.official { background: var(--green); color: var(--green-text); }
.beta { background: var(--amber); color: var(--amber-text); }
.player { background: var(--sky); color: var(--sky-text); }
.reference { background: var(--stone); color: var(--stone-text); }
.search-box { margin-top: 18px; display:grid; gap:12px; }
.search-row { display:flex; gap:12px; flex-wrap:wrap; }
input, select {
  width:100%; padding:14px 16px; border-radius:16px; border:1px solid rgba(123,79,30,.15); background:#fff; color:var(--text);
  font-size:15px; outline:none;
}
.search-row > * { flex:1; min-width:160px; }
.result-list { display:grid; gap:12px; margin-top:12px; }
.result { padding:14px 16px; border-radius:18px; background: rgba(255,255,255,.85); border:1px solid rgba(123,79,30,.1); }
.result strong { font-size:16px; }
.result span { display:block; font-size:13px; color:var(--muted); margin-top:6px; }
.page-hero { padding:32px 0 18px; }
.page-hero .card { padding:28px; }
.kpis { display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:14px; margin-top:18px; }
.kpi { background: rgba(255,255,255,.82); border-radius:20px; padding:16px; }
.kpi strong { display:block; font-size:28px; }
.footer { padding: 8px 0 40px; color:var(--muted); font-size:14px; }
@media (max-width: 960px) {
  .hero, .split, .grid-2, .grid-3, .kpis { grid-template-columns: 1fr; }
  h1 { font-size: 38px; }
  .topbar-inner { align-items:flex-start; flex-direction:column; }
}
