:root {
  --bg: #0c0a12;
  --surface: #1a1628;
  --border: #2e2650;
  --accent: #7B00FF;
  --accent2: #c084fc;
  --text: #f0eaff;
  --muted: #a89ec0;
  --green: #86efac;
  --cmd-bg: rgba(123,0,255,0.12);
  --cmd-border: rgba(123,0,255,0.3);
  --gold: #fbbf24;
  --gold-bg: rgba(251,191,36,0.10);
  --gold-border: rgba(251,191,36,0.30);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(123,0,255,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  position: relative;
  z-index: 1;
}

/* Nav */
nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

nav a {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 99px;
  border: 1px solid var(--border);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

nav a:hover {
  color: var(--accent2);
  border-color: rgba(123,0,255,0.5);
}

nav a.active {
  color: var(--text);
  background: rgba(123,0,255,0.15);
  border-color: rgba(123,0,255,0.4);
}

/* Header */
header {
  text-align: center;
  margin-bottom: 48px;
}

.flame {
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
  animation: flicker 3s ease-in-out infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.06); }
}

h1 {
  font-size: clamp(26px, 6vw, 36px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

h1 span { color: var(--accent2); }

.tagline {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
}

.divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  margin: 20px auto;
  border-radius: 2px;
}

.hint {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

/* Sections */
.section { margin-bottom: 32px; }

.section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-title.gold { color: var(--gold); }
.section-title.gold::after { background: rgba(251,191,36,0.25); }

/* Commands */
.commands { display: flex; flex-direction: column; gap: 2px; }

.command {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.15s;
}

.command:hover { background: var(--surface); }

.command.special {
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 10px;
}

.command.special:hover { background: rgba(251,191,36,0.15); }

.cmd {
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent2);
  background: var(--cmd-bg);
  border: 1px solid var(--cmd-border);
  border-radius: 6px;
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  user-select: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cmd:hover {
  background: rgba(123,0,255,0.22);
  border-color: rgba(123,0,255,0.5);
}

.cmd:active { transform: scale(0.97); }

.cmd .icon { font-size: 10px; opacity: 0.6; }

.cmd.copied {
  background: rgba(134,239,172,0.12);
  border-color: rgba(134,239,172,0.4);
  color: var(--green);
}

.cmd.gold-cmd {
  color: var(--gold);
  background: var(--gold-bg);
  border-color: var(--gold-border);
}

.cmd.gold-cmd:hover {
  background: rgba(251,191,36,0.18);
  border-color: rgba(251,191,36,0.5);
}

.inline-desc {
  color: var(--muted);
  font-size: 14px;
  flex: 1;
  min-width: 140px;
}

.inline-desc.gold { color: #e5c97a; }

.label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 99px;
  text-transform: uppercase;
  white-space: nowrap;
}

.badge-se { background: rgba(180,100,220,0.15); color: #d4a0f0; border: 1px solid rgba(180,100,220,0.25); }

/* Toast */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--green);
  color: #0c0a12;
  font-family: 'Nunito', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 99px;
  transition: transform 0.25s ease;
  pointer-events: none;
  z-index: 100;
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* Loading + empty states */
.state-msg {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 30px 0;
}

/* About card (home + charity) */
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 22px;
}
.about-card p { margin-bottom: 12px; }
.about-card p:last-child { margin-bottom: 0; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pill {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 99px;
  background: rgba(123,0,255,0.12);
  border: 1px solid rgba(123,0,255,0.3);
  color: var(--accent2);
}

/* Schedule */
.schedule { display: flex; flex-direction: column; gap: 8px; }
.day {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
}
.day .name { font-weight: 800; font-size: 15px; width: 110px; flex-shrink: 0; }
.day .time { color: var(--accent2); font-weight: 700; font-size: 14px; }
.day .game { color: var(--muted); font-size: 14px; margin-left: auto; }
.schedule-note { color: var(--muted); font-size: 13px; margin-top: 10px; text-align: center; }

/* Socials */
.socials { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
}
.social:hover { border-color: rgba(123,0,255,0.5); background: rgba(123,0,255,0.08); transform: translateY(-2px); }
.social .ico { font-size: 22px; flex-shrink: 0; }
.social .txt { display: flex; flex-direction: column; line-height: 1.3; }
.social .label { font-weight: 700; font-size: 14px; }
.social .sub { color: var(--muted); font-size: 12px; }
.social.wide { grid-column: 1 / -1; }
.social.primary { background: rgba(123,0,255,0.15); border-color: rgba(123,0,255,0.4); }

/* Charity featured cause */
.cause {
  background: linear-gradient(135deg, rgba(123,0,255,0.12), rgba(192,132,252,0.06));
  border: 1px solid rgba(123,0,255,0.35);
  border-radius: 16px;
  padding: 26px 24px;
  text-align: center;
}
.cause .cause-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(134,239,172,0.12);
  border: 1px solid rgba(134,239,172,0.35);
  padding: 4px 14px;
  border-radius: 99px;
  display: inline-block;
  margin-bottom: 14px;
}
.cause h2 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.cause p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.donate-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 99px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: 0 4px 20px rgba(123,0,255,0.4);
}
.donate-btn:hover { background: #8f1aff; transform: translateY(-2px); box-shadow: 0 6px 26px rgba(123,0,255,0.55); }

/* Charity steps */
.steps { display: flex; flex-direction: column; gap: 10px; }
.step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
}
.step .num { font-weight: 800; color: var(--accent2); font-size: 18px; flex-shrink: 0; width: 24px; }
.step .txt { font-size: 14px; }

/* Footer */
footer {
  text-align: center;
  margin-top: 48px;
  color: var(--muted);
  font-size: 14px;
}

footer a { color: var(--accent2); text-decoration: none; font-weight: 600; }
footer a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .container { padding: 28px 14px 60px; }
  .command { padding: 9px 10px; }
  .cmd { font-size: 13px; }
}
