/* ============================================
   STORM ZONE — FORTNITE RELOAD SHOWDOWN
   Shared styles across all three pages
   ============================================ */

:root {
  --bg: #0a0f1a;
  --bg-panel: #101828;
  --bg-panel-raised: #141f34;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(0, 207, 255, 0.25);

  --electric: #00cfff;
  --electric-dim: #0a4f66;
  --orange: #ff6b00;
  --orange-dim: #7a3300;

  --text: #eef2f8;
  --text-muted: #8b96ab;
  --text-faint: #5a6478;

  --font-display: "Chakra Petch", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --notch: 14px;
  --radius-sm: 4px;
  --container: 1100px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 900px 500px at 85% -5%, rgba(0, 207, 255, 0.09), transparent 60%),
    radial-gradient(ellipse 700px 500px at -5% 40%, rgba(255, 107, 0, 0.06), transparent 60%);
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
  color: #ffffff;
}

p { margin: 0; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .wrap { padding: 0 40px; }
}

/* ---------- Focus visibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 3px;
}

/* ---------- Notch / angular panel shape (brand motif, echoes shield+bolt) ---------- */
.notched {
  clip-path: polygon(
    var(--notch) 0, 100% 0, 100% calc(100% - var(--notch)),
    calc(100% - var(--notch)) 100%, 0 100%, 0 var(--notch)
  );
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-brand img {
  height: 34px;
  width: auto;
}

.nav-brand span {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text);
  display: none;
}

@media (min-width: 560px) {
  .nav-brand span { display: block; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 22px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--electric);
  color: #041018;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-primary:hover {
  box-shadow: 0 0 0 3px rgba(0, 207, 255, 0.18);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--orange);
  color: #1a0900;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-accent:hover {
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--line-strong);
  color: var(--electric);
}

.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

.btn-small {
  padding: 9px 16px;
  font-size: 13px;
}

/* ============ HERO ============ */
.hero {
  padding: 56px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero .wrap {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
  }
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(255, 107, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.eyebrow-row span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 52px);
  line-height: 1.06;
  color: #fff;
}

.hero h1 em {
  font-style: normal;
  color: inherit;
}

.hero-sub {
  margin-top: 18px;
  font-size: 17px;
  color: var(--text-muted);
  max-width: 46ch;
}

.hero-facts {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.hero-fact {
  background: var(--bg-panel);
  padding: 14px 12px;
}

.hero-fact .num {
  font-family: var(--font-display);
  font-size: clamp(18px, 4vw, 24px);
  color: var(--orange);
  display: block;
}

.hero-fact .label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

.hero-cta {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-faint);
}

/* ---------- Countdown ---------- */
.countdown {
  margin-top: 26px;
  display: flex;
  gap: 10px;
}

.countdown-cell {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 10px 8px;
  min-width: 58px;
  text-align: center;
}

.countdown-cell .val {
  font-family: var(--font-display);
  font-size: 22px;
  color: #fff;
  display: block;
}

.countdown-cell .unit {
  font-size: 10px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============ RADAR / GPS PING ANIMATION ============ */
.radar-wrap {
  display: flex;
  justify-content: center;
}

.radar {
  position: relative;
  width: min(340px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0, 207, 255, 0.05) 0%, rgba(0, 207, 255, 0.01) 70%, transparent 72%),
    var(--bg-panel);
  border: 1px solid var(--line-strong);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(0, 207, 255, 0.06);
}

.radar-ring {
  position: absolute;
  border: 1px solid rgba(0, 207, 255, 0.14);
  border-radius: 50%;
}

.radar-ring.r1 { inset: 12%; }
.radar-ring.r2 { inset: 30%; }
.radar-ring.r3 { inset: 48%; }

.radar-cross {
  position: absolute;
  background: rgba(0, 207, 255, 0.1);
}

.radar-cross.h { left: 0; right: 0; top: 50%; height: 1px; }
.radar-cross.v { top: 0; bottom: 0; left: 50%; width: 1px; }

.radar-sweep {
  position: absolute;
  inset: 0;
  background: conic-gradient(
    from 0deg,
    rgba(0, 207, 255, 0.28) 0deg,
    rgba(0, 207, 255, 0.06) 40deg,
    transparent 90deg,
    transparent 360deg
  );
  animation: sweep 4.5s linear infinite;
}

@keyframes sweep {
  to { transform: rotate(360deg); }
}

.ping {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--electric);
  box-shadow: 0 0 8px 1px rgba(0, 207, 255, 0.7);
  transform: translate(-50%, -50%);
}

.ping::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--electric);
  animation: ping-fade 2.4s ease-out infinite;
}

.ping.orange { background: var(--orange); box-shadow: 0 0 8px 1px rgba(255, 107, 0, 0.7); }
.ping.orange::after { border-color: var(--orange); }

@keyframes ping-fade {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0; }
}

.ping.p1 { animation: wander1 11s ease-in-out infinite alternate; animation-delay: -1s; }
.ping.p2 { animation: wander2 13s ease-in-out infinite alternate; animation-delay: -4s; }
.ping.p3 { animation: wander3 9s ease-in-out infinite alternate; animation-delay: -2s; }
.ping.p4 { animation: wander4 15s ease-in-out infinite alternate; animation-delay: -6s; }
.ping.p5 { animation: wander5 10s ease-in-out infinite alternate; animation-delay: -3s; }

@keyframes wander1 {
  0% { left: 30%; top: 65%; }
  25% { left: 55%; top: 30%; }
  55% { left: 70%; top: 55%; }
  80% { left: 40%; top: 75%; }
  100% { left: 60%; top: 40%; }
}
@keyframes wander2 {
  0% { left: 68%; top: 25%; }
  30% { left: 40%; top: 45%; }
  60% { left: 25%; top: 60%; }
  100% { left: 55%; top: 70%; }
}
@keyframes wander3 {
  0% { left: 50%; top: 50%; }
  20% { left: 30%; top: 35%; }
  50% { left: 65%; top: 65%; }
  75% { left: 45%; top: 20%; }
  100% { left: 35%; top: 55%; }
}
@keyframes wander4 {
  0% { left: 20%; top: 40%; }
  35% { left: 45%; top: 65%; }
  65% { left: 68%; top: 40%; }
  100% { left: 30%; top: 25%; }
}
@keyframes wander5 {
  0% { left: 60%; top: 60%; }
  40% { left: 35%; top: 45%; }
  70% { left: 55%; top: 20%; }
  100% { left: 70%; top: 50%; }
}

.radar-caption {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-faint);
}

.radar-caption strong { color: var(--electric); font-weight: 600; }

/* ============ SECTIONS ============ */
.section {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 60ch;
  margin-bottom: 32px;
}

.section-head h2 {
  font-size: clamp(24px, 4vw, 32px);
  color: #fff;
}

.section-head p {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 15.5px;
}

/* ---- How it works (real sequence, numbers earned) ---- */
.steps {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

.step {
  background: var(--bg-panel);
  padding: 22px 20px;
  position: relative;
}

.step .step-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--electric-dim);
  -webkit-text-stroke: 1px var(--electric);
  color: transparent;
}

.step h3 {
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
}

.step p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

/* ---- Format panel ---- */
.format-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 700px) {
  .format-grid { grid-template-columns: repeat(3, 1fr); }
}

.format-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--electric);
  padding: 20px;
}

.format-card .k {
  font-size: 12px;
  color: var(--text-faint);
}

.format-card .v {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  margin-top: 4px;
}

/* ---- Prize pool ---- */
.prize-panel {
  background: var(--bg-panel-raised);
  border: 1px solid var(--line-strong);
  padding: 28px 24px;
}

.prize-top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  justify-content: space-between;
}

.prize-amount {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 52px);
  color: var(--orange);
  line-height: 1;
}

.prize-amount .up-to {
  font-size: 15px;
  color: var(--text-muted);
  font-family: var(--font-body);
  display: block;
  margin-bottom: 4px;
}

.prize-split {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.prize-place {
  background: var(--bg-panel);
  padding: 16px 12px;
  text-align: center;
}

.prize-place .place { font-size: 13px; color: var(--text-muted); }
.prize-place .pct { font-family: var(--font-display); font-size: 22px; color: #fff; margin-top: 4px; }
.prize-place .amt { font-size: 13px; color: var(--electric); margin-top: 2px; }

.prize-note {
  margin-top: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.spots-bar-track {
  margin-top: 18px;
  height: 8px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  overflow: hidden;
}

.spots-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--electric), var(--orange));
}

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

.spots-label strong { color: #fff; }

/* ---- Rules summary ---- */
.rules-list {
  display: grid;
  gap: 12px;
}

.rules-list li {
  list-style: none;
  padding: 14px 16px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  font-size: 14.5px;
  color: var(--text-muted);
}

.rules-list li strong { color: var(--text); }

.rules-cta {
  margin-top: 20px;
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: 15.5px;
  color: #fff;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--electric);
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body {
  padding: 0 4px 18px;
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 65ch;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}

.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img { height: 26px; }

.footer-brand span {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-faint);
}

.footer-links {
  display: flex;
  gap: 20px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.footer-links a:hover { color: var(--electric); }

/* ============ FORM (register page) ============ */
.form-shell {
  max-width: 560px;
  margin: 0 auto;
}

.form-panel {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 28px 22px;
}

@media (min-width: 640px) {
  .form-panel { padding: 36px 34px; }
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.field .hint {
  font-size: 12.5px;
  color: var(--text-faint);
  font-weight: 400;
  margin-left: 6px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
}

.field input:focus,
.field select:focus {
  border-color: var(--electric);
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.checkbox-row input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  accent-color: var(--electric);
}

.checkbox-row label {
  font-size: 14px;
  color: var(--text-muted);
}

.checkbox-row a { color: var(--electric); text-decoration: underline; }

.guardian-fields {
  border-left: 2px solid var(--orange);
  padding-left: 16px;
  margin: -4px 0 18px;
  display: none;
}

.guardian-fields.show { display: block; }

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.progress-row {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.progress-seg {
  height: 3px;
  flex: 1;
  background: var(--line);
}

.progress-seg.done { background: var(--electric); }

.pay-summary {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 18px;
  margin-bottom: 22px;
}

.pay-summary .row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
}

.pay-summary .row.total {
  border-top: 1px solid var(--line);
  margin-top: 6px;
  padding-top: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}

.pay-summary .row.total span:last-child { color: var(--orange); }

.form-error {
  font-size: 13px;
  color: var(--orange);
  margin-top: -10px;
  margin-bottom: 16px;
  display: none;
}

.form-error.show { display: block; }

/* ============ SCHEDULE (hub page) ============ */
.schedule-list {
  display: grid;
  gap: 16px;
}

.event-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-left: 3px solid var(--electric);
  padding: 24px 22px;
  display: grid;
  gap: 16px;
}

@media (min-width: 760px) {
  .event-card {
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 24px;
  }
}

.event-date {
  font-family: var(--font-display);
}

.event-date .day {
  font-size: 30px;
  color: #fff;
  display: block;
  line-height: 1;
}

.event-date .month {
  font-size: 13px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.event-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  color: var(--electric);
  border: 1px solid var(--electric-dim);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.event-badge.orange {
  color: var(--orange);
  border-color: var(--orange-dim);
}

.event-body h3 {
  font-size: 19px;
  color: #fff;
}

.event-meta {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.event-meta span strong { color: var(--text); }

/* ============ PARTNER / GUARDIAN SUB-FIELDS (register pages) ============ */
.sub-fields {
  border-left: 2px solid var(--orange);
  padding-left: 16px;
  margin: -4px 0 18px;
  display: none;
}

.sub-fields.show { display: block; }

.sub-fields-title {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-faint);
  margin-bottom: 10px;
}


.confirm-shell {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0 20px;
}

.confirm-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-shell h1 {
  font-size: clamp(26px, 5vw, 34px);
}

.confirm-shell .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.discord-panel {
  margin-top: 32px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 26px 22px;
  text-align: left;
}

.discord-panel h3 {
  font-size: 17px;
  color: #fff;
}

.discord-panel p {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--text-muted);
}

.discord-panel .btn { margin-top: 16px; }

.next-list {
  margin-top: 30px;
  text-align: left;
  display: grid;
  gap: 10px;
}

.next-list li {
  list-style: none;
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.next-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--electric);
}

/* ============ RULEBOOK PAGE ============ */
.toc {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 20px 22px;
  display: grid;
  gap: 8px;
}

.toc-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
  margin-bottom: 6px;
}

.toc a {
  font-size: 14.5px;
  color: var(--electric);
  padding: 4px 0;
}

.toc a:hover { text-decoration: underline; }

.rulebook-section {
  padding: 44px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 80px;
}

.rulebook-section h2 {
  font-size: clamp(20px, 3.4vw, 26px);
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.rulebook-section h2 .num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--electric);
  border: 1px solid var(--electric-dim);
  padding: 3px 9px;
  flex-shrink: 0;
}

.rulebook-section h3 {
  font-size: 16px;
  color: #fff;
  margin-top: 26px;
  margin-bottom: 10px;
}

.rulebook-section > p,
.rule-block p {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 12px;
  max-width: 68ch;
}

.rule-block {
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--bg-panel);
  border-left: 3px solid var(--electric);
}

.rule-block.orange { border-left-color: var(--orange); }

.rule-block strong { color: #fff; }

.plain-list {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.plain-list li {
  list-style: none;
  padding-left: 18px;
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 68ch;
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--electric);
}

.event-rule-tabs {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

@media (min-width: 760px) {
  .event-rule-tabs { grid-template-columns: repeat(3, 1fr); }
}

.event-rule-card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  padding: 20px;
}

.event-rule-card h4 {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--electric);
  margin: 0 0 10px;
}

.event-rule-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.event-rule-card li {
  list-style: none;
  font-size: 13.5px;
  color: var(--text-muted);
  padding-left: 14px;
  position: relative;
}

.event-rule-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--orange);
}

.rulebook-updated {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 6px;
}
