:root {
  --bg0: #000000;
  --bg1: #050505;
  --card: rgba(12,12,12,0.90);
  --surface: #0A0A0A;
  --primary: #C0C0C0;
  --secondary: #808080;
  --accent: #F5F5F5;
  --accent2: #E0E0E0;
  --text: #F5F5F5;
  --muted: #999999;
  --line: rgba(255,255,255,0.10);
  --shadow: 0 18px 55px rgba(0,0,0,0.92);
  --hover-bg: rgba(255,255,255,0.06);
  --hover-border: rgba(255,255,255,0.18);
  --focus-ring: rgba(255,255,255,0.20);
  --nav-bg: rgba(0,0,0,0.98);
  --overlay: rgba(0,0,0,0.75);
  --backdrop: rgba(0,0,0,0.92);
  --topbar-bg: rgba(0,0,0,0.85);
  --card-shadow: 0 15px 50px rgba(0,0,0,0.55);
  --radius: 6px;
  --radius2: 10px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --anim: 0.16s;

  --glass-bg: rgba(12,12,12,0.88);
  --glass-border: rgba(255,255,255,0.10);
  --glass-blur: 4px;
  --glow-color: none;
  --glow-size: 60px;
  --glow-opacity: 0.4;
  --bg-gradient: linear-gradient(180deg, #000000, #000000);
  --bg-pattern: none;
  --bg-watermark: url("assets/images/avenged-sevenfold-logo.jpeg");
  --anim-fast: 0.3s;
  --anim-normal: 0.45s;
  --anim-slow: 0.6s;
  --hover-lift: -6px;

  --success: #4ade80;
  --error: #f87171;
  --admin: #22c55e;
  --white-005: rgba(255,255,255,0.05);
  --white-006: rgba(255,255,255,0.06);
  --white-003: rgba(255,255,255,0.03);
  --white-004: rgba(255,255,255,0.04);
  --white-002: rgba(255,255,255,0.02);
  --white-015: rgba(255,255,255,0.015);
  --white-008: rgba(255,255,255,0.08);
  --white-012: rgba(255,255,255,0.12);
  --black-018: rgba(0,0,0,0.18);
  --admin-bg: rgba(34, 197, 94, 0.12);
  --admin-border: rgba(34, 197, 94, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: var(--bg0);
  color: var(--text);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}
