:root{
  --bg:#070a0f;
  --panel:#0e131b;
  --line:#1a2230;
  --text:#f5f7fb;
  --muted:#b7c0cf;

  --gold:#d7b46a;
  --gold2:#b8893b;

  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --r:16px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(215,180,106,.10), transparent 55%),
    var(--bg);
  color:var(--text);
}

.wrap{max-width:1100px;margin:0 auto;padding:26px}

.top{
  display:flex;justify-content:space-between;gap:16px;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:var(--r);
  background: rgba(14,19,27,.9);
  box-shadow:var(--shadow);
}

.title{font-weight:700;font-size:18px}
.sub{font-size:12px;color:var(--muted)}

.grid{
  margin-top:18px;
  display:grid;
  gap:16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card{
  border:1px solid var(--line);
  border-radius:var(--r);
  background: rgba(14,19,27,.85);
  box-shadow:var(--shadow);
  padding:16px;
}

.btn{
  display:block;
  margin:8px 0;
  text-decoration:none;
  border:1px solid rgba(215,180,106,.25);
  background: rgba(215,180,106,.08);
  padding:10px 12px;
  border-radius:12px;
  font-size:14px;
  color:var(--text);
}

.btn:hover{
  background: rgba(215,180,106,.14);
  border-color: rgba(215,180,106,.45);
}

.footer{
  margin-top:18px;
  font-size:12px;
  color:rgba(255,255,255,.5);
}
.tiles{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap:12px;
  margin-top:10px;
}

.tile{
  display:block;
  text-decoration:none;
  border:1px solid rgba(215,180,106,.20);
  background: rgba(215,180,106,.06);
  padding:12px;
  border-radius:14px;
  transition: transform .06s ease, background .12s ease, border-color .12s ease;
  color: var(--text);
}
.tile:hover{
  transform: translateY(-1px);
  background: rgba(215,180,106,.10);
  border-color: rgba(215,180,106,.45);
}
.tile-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.tile-title{
  font-weight:700;
  font-size:14px;
  letter-spacing:.2px;
}
.tile-tag{
  font-size:11px;
  color: var(--gold);
  border:1px solid rgba(215,180,106,.35);
  background: rgba(215,180,106,.08);
  padding:3px 8px;
  border-radius:999px;
  white-space:nowrap;
}
.tile-desc{
  margin-top:6px;
  font-size:12px;
  color: var(--muted);
  line-height:1.35;
}
