/* =========================
   ACE ESPORTS - GLOBAL CSS
   Dark esports + blue glow
   ========================= */

:root {
  --bg: #07090d;
  --panel: #0b1220;
  --panel2: #0a0f1a;
  --stroke: rgba(255, 255, 255, 0.08);
  --stroke2: rgba(60, 120, 255, 0.25);
  --text: #e9eefc;
  --muted: rgba(233, 238, 252, 0.65);
  --blue: #2f6bff;
  --blue2: #1e49c7;
  --good: #2ee59d;
  --warn: #ffc857;
  --bad: #ff4d4d;

  --radius: 16px;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  --glow: 0 0 0 1px rgba(47, 107, 255, 0.25), 0 0 30px rgba(47, 107, 255, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background:
    radial-gradient(
      1000px 500px at 50% 0%,
      rgba(47, 107, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      800px 400px at 15% 30%,
      rgba(47, 107, 255, 0.1),
      transparent 60%
    ),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Tournaments page: add breathing room under "UPCOMING / LIVE" */
#upcomingGrid {
  margin-top: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font: inherit;
}

/* subtle background pattern */
.bg-pattern {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  background-image: radial-gradient(
    circle at 10px 10px,
    rgba(255, 255, 255, 0.05) 2px,
    transparent 3px
  );
  background-size: 60px 60px;
  filter: blur(0.2px);
  z-index: -1;
}

/* Layout helpers */
.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(233, 238, 252, 0.9);
  font-weight: 800;
  font-size: 16px;
  margin: 0 0 28px;
  position: relative;
}

.section-title:before,
.section-title:after {
  content: "";
  height: 1px;
  width: min(220px, 28vw);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
}

.kicker {
  color: var(--muted);
  text-align: center;
  margin: -14px auto 28px;
  max-width: 60ch;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.55)
  );
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(47, 107, 255, 0.25),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: var(--glow);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand small {
  display: block;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.12em;
}

.menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu a {
  position: relative;
  padding: 8px 4px;
  color: rgba(233, 238, 252, 0.75);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

.menu a.active,
.menu a:hover {
  color: rgba(233, 238, 252, 0.95);
}

.menu a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

@media (max-width: 820px) {
  .menu {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .menu.mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 12px 0 18px;
    gap: 10px;
  }
  .nav {
    flex-wrap: wrap;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 64vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)),
    url("assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px 350px at 50% 40%,
    rgba(47, 107, 255, 0.18),
    transparent 60%
  );
}

.hero-inner {
  position: relative;
  text-align: center;
  padding: 78px 0;
}

.hero-logo {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06),
    rgba(47, 107, 255, 0.2)
  );
  box-shadow: var(--shadow), var(--glow);
  display: grid;
  place-items: center;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 68px);
  margin: 0 0 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  text-shadow: 0 14px 45px rgba(0, 0, 0, 0.7);
}

.hero p {
  margin: 0 auto 22px;
  color: rgba(233, 238, 252, 0.74);
  max-width: 60ch;
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  transition:
    transform 0.12s ease,
    filter 0.12s ease,
    background 0.12s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--blue), var(--blue2));
  color: white;
  box-shadow: var(--glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(233, 238, 252, 0.9);
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

/* Cards */
.grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.card:hover {
  border-color: rgba(47, 107, 255, 0.28);
}

.card-media {
  height: 150px;
  background: #0a0f1a;
  position: relative;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.04);
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(47, 107, 255, 0.92);
  color: white;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.card-body {
  padding: 16px;
}

.card-title {
  font-size: 18px;
  font-weight: 900;
  margin: 0 0 6px;
}

.card-sub {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 14px;
}

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(233, 238, 252, 0.88);
}

.pill.good {
  border-color: rgba(46, 229, 157, 0.35);
  color: rgba(46, 229, 157, 0.95);
}
.pill.warn {
  border-color: rgba(255, 200, 87, 0.35);
  color: rgba(255, 200, 87, 0.95);
}
.pill.bad {
  border-color: rgba(255, 77, 77, 0.35);
  color: rgba(255, 77, 77, 0.95);
}

/* Tournament detail layout */
.detail-hero {
  padding: 42px 0 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: radial-gradient(
    650px 350px at 50% 0%,
    rgba(47, 107, 255, 0.16),
    transparent 60%
  );
}

.detail-top {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.detail-top h1 {
  margin: 0 0 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.meta span {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.tab {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(233, 238, 252, 0.85);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.tab.active {
  background: linear-gradient(
    180deg,
    rgba(47, 107, 255, 0.25),
    rgba(255, 255, 255, 0.03)
  );
  border-color: rgba(47, 107, 255, 0.35);
  box-shadow: var(--glow);
}

.panel {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

/* Tables */
.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.table th,
.table td {
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  font-size: 13px;
}

.table th {
  color: rgba(233, 238, 252, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.03);
}

.table tr:last-child td {
  border-bottom: none;
}
.table td small {
  color: var(--muted);
  font-weight: 700;
}

/* Groups */
.group {
  margin-top: 14px;
}
.group h3 {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: rgba(233, 238, 252, 0.9);
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 22px;
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  width: min(820px, 100%);
  max-height: min(86vh, 980px);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(
    180deg,
    rgba(10, 15, 26, 0.98),
    rgba(7, 9, 13, 0.98)
  );
  box-shadow: var(--shadow), var(--glow);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-head strong {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.icon-btn {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}

.modal-body {
  padding: 16px;
}
.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 720px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field label {
  display: block;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(233, 238, 252, 0.85);
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
}
.field textarea {
  min-height: 84px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(47, 107, 255, 0.35);
  box-shadow: var(--glow);
}

.hr {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 14px 0;
}

.note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(233, 238, 252, 0.82);
  font-size: 13px;
}
.checkbox input {
  margin-top: 3px;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(233, 238, 252, 0.7);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: rgba(233, 238, 252, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(47, 107, 255, 0.4);
}

/* ===== Ace fixes: hero + image sizing ===== */

:root {
  --bg: #0b0f14;
  --panel: #121826;
  --blue: #2563eb;
  --blue2: #3b82f6;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --line: #1f2937;
}

body {
  background: var(--bg);
  color: var(--text);
}

/* Navbar logo size */
.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

/* HERO: controlled size + crop */
.hero {
  position: relative;
  min-height: 72vh; /* not insane tall, still “hero” */
  max-height: 780px; /* stops it from becoming a billboard */
  padding: 96px 0 70px; /* room under the fixed header */
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("../img/hero-bg.jpg") center/cover no-repeat;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}

/* Dark overlay so text reads */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      55% 65% at 50% 38%,
      rgba(59, 130, 246, 0.22),
      rgba(0, 0, 0, 0.7)
    ),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.78));
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

/* Full logo (wordmark) size FIX */
.hero-wordmark {
  width: min(520px, 86vw); /* caps max size */
  height: auto;
  display: block;
  margin: 0 auto 14px;
}

/* Hero paragraph */
.hero-sub {
  color: var(--muted);
  max-width: 70ch;
  margin: 0 auto 18px;
  line-height: 1.55;
}

/* CTA buttons spacing */
.cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Game pills: stop icons being massive */
.hero-meta {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(18, 24, 38, 0.55);
  border-radius: 999px;
  color: rgba(229, 231, 235, 0.9);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.meta-ico {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.2));
}

/* Make section spacing feel less “empty” */
.section {
  padding: 54px 0;
}

/* Featured grid: keep cards centered and not too wide */
#featuredGrid {
  margin-top: 18px;
}

/* Responsive: on smaller screens reduce hero height */
@media (max-width: 720px) {
  .hero {
    min-height: 62vh;
    padding: 84px 0 54px;
  }
  .hero-wordmark {
    width: min(420px, 90vw);
  }
}

/* ===== Featured tournament cards polish ===== */

.section-head {
  text-align: center;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker {
  margin: 10px 0 0;
  color: rgba(156, 163, 175, 0.9);
}

.card {
  background: rgba(18, 24, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  position: relative;
}

.card-media {
  height: 160px;
  background: #0b0f14;
  position: relative;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.75)
  );
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(37, 99, 235, 0.95);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.card-body {
  padding: 16px 16px 14px;
}

.card-title {
  margin: 0 0 6px;
  font-size: 18px;
  color: #e5e7eb;
}

.card-sub {
  margin: 0;
  color: rgba(156, 163, 175, 0.95);
  font-size: 13px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
}

.pill-open {
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.35);
}
.pill-closed {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.35);
}
.pill-live {
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.35);
}

.btn-sm {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== Featured tournament cards polish ===== */

.section-head {
  text-align: center;
  margin-bottom: 18px;
}

.section-title {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.kicker {
  margin: 10px 0 0;
  color: rgba(156, 163, 175, 0.9);
}

.card {
  background: rgba(18, 24, 38, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  position: relative;
}

.card-media {
  height: 160px;
  background: #0b0f14;
  position: relative;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.75)
  );
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(37, 99, 235, 0.95);
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.card-body {
  padding: 16px 16px 14px;
}

.card-title {
  margin: 0 0 6px;
  font-size: 18px;
  color: #e5e7eb;
}

.card-sub {
  margin: 0;
  color: rgba(156, 163, 175, 0.95);
  font-size: 13px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
}

.pill-open {
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.35);
}
.pill-closed {
  color: #ef4444;
  border-color: rgba(239, 68, 68, 0.35);
}
.pill-live {
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.35);
}

.btn-sm {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
