:root {
  --bg: #050608;
  --bg-2: #090b10;
  --bg-3: #0e1016;
  --panel: rgba(14, 17, 24, 0.92);
  --panel-soft: rgba(255,255,255,0.03);
  --panel-strong: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.78);
  --soft: rgba(255,255,255,0.56);
  --red: #f10d1f;
  --red-2: #ff3242;
  --red-dark: rgba(241, 13, 31, 0.16);
  --white: #f4f4f6;
  --shadow: 0 18px 55px rgba(0,0,0,0.35);
  --shadow-red: 0 20px 60px rgba(241, 13, 31, 0.24);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1440px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(241,13,31,.13), transparent 24%),
    linear-gradient(180deg, #090b10 0%, #050608 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }
.container { width: min(var(--container), calc(100% - 36px)); margin: 0 auto; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 18px; border: 1px solid transparent;
  font-weight: 800; transition: .25s ease; cursor: pointer; white-space: nowrap;
}
.button-primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.button-primary:hover { background: var(--red-2); transform: translateY(-2px); }
.button-secondary { background: transparent; border-color: var(--border-strong); color: var(--white); }
.button-secondary:hover { background: rgba(255,255,255,0.05); transform: translateY(-2px); }
.section { padding: 26px 0; }
.panel-glass {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border: 1px solid var(--border);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.panel-red {
  background: radial-gradient(circle at top, rgba(241,13,31,.25), transparent 55%), linear-gradient(180deg, rgba(37,8,12,.95), rgba(14,10,12,.95));
  border: 1px solid rgba(241, 13, 31, 0.22);
  border-radius: 26px;
  box-shadow: var(--shadow);
}
.empty-state {
  padding: 48px; border-radius: 26px; border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)); box-shadow: var(--shadow);
}
.empty-state h2 { margin: 0 0 10px; font-size: 2rem; }
.empty-state p { margin: 0 0 18px; color: var(--muted); line-height: 1.7; }
.section-headline { display: flex; justify-content: space-between; align-items: center; gap: 18px; margin-bottom: 22px; }
.section-headline h2 { margin: 0; font-size: 2rem; letter-spacing: -.03em; }
.section-accent { width: 5px; height: 30px; border-radius: 999px; background: var(--red); display: inline-block; margin-right: 14px; vertical-align: middle; }
.category-filter-row { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.filter-pill {
  padding: 12px 20px; border-radius: 999px; background: rgba(255,255,255,.03);
  border: 1px solid var(--border); color: var(--muted); font-weight: 800;
}
.filter-pill.active, .filter-pill:hover { background: var(--red); border-color: transparent; color: #fff; }
