/* ======================================================
   BUSTER DAY — FULLSCREEN ANALYTICS UI (STANDALONE)
   No global CSS dependencies
====================================================== */

/* =============================
   RESET / BASE
============================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: #020617;
  color: #e5e7eb;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

/* =============================
   PAGE ROOT
============================= */
.buster-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

/* =============================
   HEADER
============================= */
.buster-header h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  color: #ecfeff;
}

.buster-sub {
  margin-top: 6px;
  font-size: 14px;
  color: #94a3b8;
}

/* =============================
   GRID SYSTEM
============================= */
.buster-grid {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.buster-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.buster-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* =============================
   CARDS
============================= */
.buster-card {
  background: linear-gradient(
    180deg,
    rgba(15,23,42,0.95),
    rgba(2,6,23,0.95)
  );
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow:
    0 0 0 1px rgba(34,197,94,0.08),
    0 20px 40px rgba(0,0,0,0.6);
}

.buster-card.wide {
  margin-top: 22px;
}

.buster-card h3 {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 600;
  color: #a7f3d0;
}

/* =============================
   INPUTS
============================= */
.buster-input {
  width: 100%;
  background: #020617;
  border: 1px solid rgba(148,163,184,0.25);
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  color: #e5e7eb;
}

.buster-input::placeholder {
  color: #64748b;
}

.buster-input:focus {
  outline: none;
  border-color: #34f5c5;
  box-shadow: 0 0 0 1px rgba(52,245,197,0.4);
}

.buster-input.small {
  width: 160px;
}

/* =============================
   SEARCH RESULTS
============================= */
.buster-search-results {
  margin-top: 6px;
  background: #020617;
  border-radius: 12px;
  overflow: hidden;
  display: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7);
}

.buster-search-item {
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
}

.buster-search-item:hover {
  background: rgba(34,197,94,0.12);
}

/* =============================
   FSP DISPLAY
============================= */
.buster-fsp-box {
  background: linear-gradient(
    160deg,
    rgba(2,6,23,0.9),
    rgba(15,23,42,0.9)
  );
  border-radius: 14px;
  padding: 10px 14px;
  text-align: center;
  min-width: 120px;
}

.buster-fsp-box span {
  font-size: 12px;
  color: #94a3b8;
}

.buster-fsp-box strong {
  display: block;
  font-size: 20px;
  color: #34f5c5;
}

/* =============================
   CHECKBOX
============================= */
.buster-checkbox {
  display: flex;
  gap: 8px;
  font-size: 13px;
  align-items: center;
  color: #cbd5f5;
}

/* =============================
   NOTE
============================= */
.buster-note {
  margin-top: 8px;
  font-size: 12px;
  color: #facc15;
}

/* =============================
   IMPACT SUMMARY
============================= */
.buster-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.buster-summary-item {
  border-radius: 20px;
  padding: 22px 16px;
  text-align: center;
  background: linear-gradient(
    160deg,
    rgba(2,6,23,0.95),
    rgba(15,23,42,0.95)
  );
  box-shadow:
    inset 0 0 0 1px rgba(148,163,184,0.15),
    0 20px 40px rgba(0,0,0,0.6);
}

.buster-summary-item strong {
  font-size: 36px;
  display: block;
  margin-bottom: 6px;
}

.buster-summary-item span {
  font-size: 14px;
  letter-spacing: 0.4px;
}

.buster-summary-item.can strong { color: #22c55e; }
.buster-summary-item.maybe strong { color: #facc15; }
.buster-summary-item.cannot strong { color: #ef4444; }

/* =============================
   ADVANCED MATCHUPS
============================= */
.buster-collapse-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #9af5d0;
}

#advancedPanel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

/* =============================
   MATCHUP CARDS
============================= */
.buster-target {
  background: linear-gradient(
    160deg,
    rgba(15,23,42,0.95),
    rgba(2,6,23,0.95)
  );
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow:
    inset 0 0 0 1px rgba(34,197,94,0.12),
    0 16px 32px rgba(0,0,0,0.55);
}

.buster-target-name {
  font-size: 15px;
  font-weight: 600;
  color: #eafff5;
}

.buster-target-meta {
  margin-top: 4px;
  font-size: 12px;
  color: #94a3b8;
}

.buster-assumed {
  border-style: dashed;
  opacity: 0.85;
  font-style: italic;
}

/* =============================
   BADGES
============================= */
.buster-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

.badge-green {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.badge-yellow {
  background: rgba(250,204,21,0.15);
  color: #facc15;
}

.badge-red {
  background: rgba(239,68,68,0.15);
  color: #ef4444;
}

.badge-muted {
  background: rgba(148,163,184,0.12);
  color: #94a3b8;
}

/* =============================
   RESPONSIVE
============================= */
@media (max-width: 900px) {
  .buster-grid.two {
    grid-template-columns: 1fr;
  }

  .buster-summary {
    grid-template-columns: 1fr;
  }
}


/* =============================
   MODAL
============================= */
.buster-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
}

.buster-modal.hidden {
  display: none;
}

.buster-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,6,23,0.8);
  backdrop-filter: blur(6px);
}

.buster-modal-content {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  background: linear-gradient(
    180deg,
    rgba(15,23,42,0.98),
    rgba(2,6,23,0.98)
  );
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.buster-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buster-modal-header h3 {
  margin: 0;
  font-size: 18px;
  color: #a7f3d0;
}

#closeModal {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
}

#closeModal:hover {
  color: #e5e7eb;
}

/* =============================
   MODAL GRID — RESPONSIVE
============================= */

.buster-modal-body {
  margin-top: 18px;

  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop default */
  gap: 16px;

  max-height: 70vh;          /* modal scroll, not page */
  overflow-y: auto;
  padding-right: 6px;        /* space for scrollbar */
}

@media (max-width: 768px) {
  .buster-modal-body {
    grid-template-columns: repeat(2, 1fr);
    max-height: 65vh;
  }
}

@media (min-width: 1400px) {
  .buster-modal-body {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* =============================
   THREATS OVERVIEW
============================= */

.buster-threats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop */
  gap: 18px;
}

/* --- Individual threat card --- */
.buster-threat-card {
  display: flex;
  gap: 14px;
  align-items: center;

  background: linear-gradient(
    160deg,
    rgba(15,23,42,0.95),
    rgba(2,6,23,0.95)
  );

  border-radius: 18px;
  padding: 16px 18px;

  box-shadow:
    inset 0 0 0 1px rgba(239,68,68,0.15),
    0 18px 36px rgba(0,0,0,0.6);
}

/* --- Primary danger (Warzone Top) --- */
.buster-threat-card.primary {
  box-shadow:
    inset 0 0 0 1px rgba(239,68,68,0.35),
    0 0 18px rgba(239,68,68,0.45),
    0 22px 44px rgba(0,0,0,0.7);
}

/* --- Icon --- */
.threat-icon {
  font-size: 26px;
  line-height: 1;
}

/* --- Text --- */
.threat-title {
  font-size: 13px;
  font-weight: 600;
  color: #fecaca;
}

.threat-value {
  font-size: 20px;
  font-weight: 700;
  color: #ef4444;
  margin-top: 2px;
}

.threat-sub {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .buster-threats {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* =============================
   HEADER — CENTERED NEON THEME
============================= */

.buster-header {
  text-align: center;
  padding: 28px 16px 34px;
  margin-bottom: 18px;

  background: radial-gradient(
    circle at top center,
    rgba(52,245,197,0.15),
    rgba(2,6,23,0.95) 60%
  );

  border-radius: 22px;

  box-shadow:
    inset 0 0 0 1px rgba(52,245,197,0.18),
    0 0 40px rgba(52,245,197,0.18);
}

.buster-header h1 {
  margin: 0;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.6px;

  color: #eafff5;

  text-shadow:
    0 0 12px rgba(52,245,197,0.55),
    0 0 28px rgba(52,245,197,0.35);
}

.buster-header .buster-sub {
  margin-top: 10px;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #9af5d0;

  text-shadow:
    0 0 8px rgba(52,245,197,0.35);
}
/* =============================
   IMPACT SUMMARY — COLORED CARDS
============================= */

/* BASE */
.buster-summary-item {
  position: relative;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.buster-summary-item:hover {
  transform: translateY(-2px);
}

/* -----------------------------
   CAN BEAT — GREEN
------------------------------ */
.buster-summary-item.can {
  background: linear-gradient(
    160deg,
    rgba(16,185,129,0.18),
    rgba(2,6,23,0.95)
  );

  box-shadow:
    inset 0 0 0 1px rgba(16,185,129,0.35),
    0 0 26px rgba(16,185,129,0.25),
    0 18px 36px rgba(0,0,0,0.6);
}

.buster-summary-item.can strong {
  color: #34f5c5;
}

/* -----------------------------
   MAY / MAY NOT — YELLOW
------------------------------ */
.buster-summary-item.maybe {
  background: linear-gradient(
    160deg,
    rgba(250,204,21,0.18),
    rgba(2,6,23,0.95)
  );

  box-shadow:
    inset 0 0 0 1px rgba(250,204,21,0.35),
    0 0 26px rgba(250,204,21,0.25),
    0 18px 36px rgba(0,0,0,0.6);
}

.buster-summary-item.maybe strong {
  color: #facc15;
}

/* -----------------------------
   CANNOT BEAT — RED
------------------------------ */
.buster-summary-item.cannot {
  background: linear-gradient(
    160deg,
    rgba(239,68,68,0.22),
    rgba(2,6,23,0.95)
  );

  box-shadow:
    inset 0 0 0 1px rgba(239,68,68,0.4),
    0 0 30px rgba(239,68,68,0.3),
    0 18px 36px rgba(0,0,0,0.6);
}

.buster-summary-item.cannot strong {
  color: #ef4444;
}
/* =============================
   IMPACT SUMMARY — CENTERED TEXT
============================= */

.buster-summary-item {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertical center */
  align-items: center;       /* horizontal center */
  text-align: center;
}

/* tighten spacing for clean look */
.buster-summary-item strong {
  margin-bottom: 6px;
}

.buster-summary-item span {
  font-size: 14px;
  letter-spacing: 0.4px;
}
.site-footer {
  background: rgba(10, 16, 24, 0.95);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 10px;
  margin-top: 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #9fb0b5;
}

.footer-inner nav {
  display: flex;
  gap: 16px;
}

.footer-inner a {
  color: #00ffae;
  text-decoration: none;
  font-weight: 500;
}

.footer-inner a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 8px;
  }
}

/* =============================
   BUSTER LOADER (CSS ONLY)
============================= */

.buster-loader {
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 15, 0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Hidden by default */
.buster-loader.hidden {
  display: none;
}

.loader-core {
  text-align: center;
}

/* Neon spinning ring */
.neon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid rgba(0, 255, 255, 0.2);
  border-top-color: #00ffff;
  animation: busterSpin 1s linear infinite;
  margin: 0 auto 14px;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.6);
}

.loader-text {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ffcff;
  opacity: 0.85;
}

/* Spin animation */
@keyframes busterSpin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================
   BUSTER — HEADER / NAV (SCOPED)
========================= */

.page .site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(5, 10, 18, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page .site-header .logo a {
  color: #00ffc8;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  text-decoration: none;
}

/* =========================
   NAV LINKS
========================= */

.page .nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap; /* mobile safety */
}

.page .nav a {
  position: relative;
  color: #d8fdf3;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.page .nav a:hover {
  opacity: 1;
  color: #00ffc8;
}

/* =========================
   BADGE LINK (Experimental)
========================= */

.page .badge-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.75;
}

.page .badge-link:hover {
  opacity: 1;
}

.page .badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* =========================
   MOBILE SAFETY
========================= */

@media (max-width: 640px) {
  .page .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .page .nav {
    width: 100%;
    gap: 14px;
  }

  .page .nav a {
    font-size: 13px;
  }
}
/* =============================
   GLOBAL VISIBILITY CONTROL
============================= */
.hidden {
  display: none !important;
}
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page > footer {
  margin-top: auto;
}
/* =============================
   BUSTER COUNTDOWN
============================= */
.buster-countdown {
  text-align: center;
  margin: 20px 0 28px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.countdown-title {
  font-size: 13px;
  letter-spacing: 0.12em;
  opacity: 0.75;
  text-transform: uppercase;
}

.countdown-timer {
  font-size: 28px;
  font-weight: 700;
  margin: 8px 0;
  color: #00ffc8;
}

.countdown-sub {
  font-size: 12px;
  opacity: 0.6;
}

/* Buster Day highlight */
.buster-live .countdown-timer {
  color: #ff5252;
  text-shadow: 0 0 12px rgba(255,82,82,0.6);
}
/* CTA highlight during Buster Day */
.buster-live.buster-btn {
  box-shadow: 0 0 16px rgba(255,82,82,0.6);
  border-color: #ff5252;
}
/* =============================
   STICKY BUSTER CLOCK
============================= */
#busterCountdown {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
}
/* HERO CLOCK (INTRO MODE) */
#busterCountdown {
  margin: 18px auto 28px;
  max-width: 720px;
}

#busterCountdown .countdown-timer {
  font-size: 34px;
}

#busterCountdown .countdown-title {
  font-size: 14px;
}

#busterCountdown .countdown-sub {
  font-size: 12px;
}
/* COMPACT CLOCK MODE */
#busterCountdown.compact {
  max-width: 100%;
  margin: 0;
  padding: 10px 16px;
  border-radius: 0;
  border-left: none;
  border-right: none;
}

#busterCountdown.compact .countdown-timer {
  font-size: 18px;
}

#busterCountdown.compact .countdown-title {
  font-size: 11px;
}

#busterCountdown.compact .countdown-sub {
  display: none;
}
/* =============================
   BUSTER HEADER – MOBILE HEIGHT TUNING
============================= */
@media (max-width: 640px) {

  .buster-header {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .buster-header h1 {
    margin-bottom: 4px;
  }

  .buster-header .buster-sub {
    margin-top: 0;
  }
}

/* =============================
   CTA — BASE STYLE POLISH
============================= */
.page .buster-btn.primary {
  position: relative;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease,
    border-color 0.15s ease;
  will-change: transform;
}
/* Desktop hover */
@media (hover: hover) and (pointer: fine) {
  .page .buster-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 255, 200, 0.35);
  }
}
/* Press / tap feedback */
.page .buster-btn.primary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}
/* Clean mobile tap feel */
.buster-btn {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
/* CTA boost during Buster Day */
.page .buster-btn.primary.buster-live {
  box-shadow:
    0 0 0 rgba(0,0,0,0),
    0 0 16px rgba(255, 82, 82, 0.5);
}

@media (hover: hover) and (pointer: fine) {
  .page .buster-btn.primary.buster-live:hover {
    box-shadow:
      0 0 20px rgba(255, 82, 82, 0.75),
      0 8px 22px rgba(255, 82, 82, 0.45);
  }
}
/* =============================
   BUSTER CTA — COMMAND TRIGGER
============================= */

.page .buster-btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 18px 34px;
  border-radius: 999px; /* pill / trigger feel */

  background:
    radial-gradient(
      circle at top,
      rgba(0,255,200,0.25),
      rgba(0,255,200,0.08)
    );

  border: 1px solid rgba(0,255,200,0.35);

  color: #eafff9;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.2);

  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .page .buster-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow:
      0 14px 40px rgba(0,255,200,0.35),
      inset 0 1px 0 rgba(255,255,255,0.25);
    filter: brightness(1.05);
  }
}
.page .buster-btn.primary:active {
  transform: translateY(0) scale(0.96);
  box-shadow:
    0 6px 18px rgba(0,0,0,0.55),
    inset 0 2px 6px rgba(0,0,0,0.4);
}
.page .buster-btn.primary.buster-live {
  background:
    radial-gradient(
      circle at top,
      rgba(255,82,82,0.35),
      rgba(255,82,82,0.12)
    );

  border-color: rgba(255,82,82,0.55);

  box-shadow:
    0 0 24px rgba(255,82,82,0.6),
    0 14px 40px rgba(255,82,82,0.35);
}
.page .buster-btn.primary.buster-live {
  background:
    radial-gradient(
      circle at top,
      rgba(255,82,82,0.35),
      rgba(255,82,82,0.12)
    );

  border-color: rgba(255,82,82,0.55);

  box-shadow:
    0 0 24px rgba(255,82,82,0.6),
    0 14px 40px rgba(255,82,82,0.35);
}
@media (max-width: 640px) {
  .page .buster-btn.primary {
    padding: 16px 26px;
    font-size: 15px;
  }
}
/* =============================
   BUSTER CTA — RED COMMAND TRIGGER
============================= */

.page .buster-btn.primary {
  width: 180px;
  height: 180px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    radial-gradient(
      circle at top,
      rgba(255,90,90,0.9),
      rgba(180,30,30,0.95)
    );

  border: 2px solid rgba(255,120,120,0.9);

  color: #fff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  box-shadow:
    0 20px 60px rgba(255,40,40,0.6),
    inset 0 2px 6px rgba(255,255,255,0.25),
    inset 0 -6px 12px rgba(0,0,0,0.45);

  cursor: pointer;
  user-select: none;

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}
@media (hover: hover) and (pointer: fine) {
  .page .buster-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow:
      0 28px 80px rgba(255,40,40,0.8),
      inset 0 2px 8px rgba(255,255,255,0.35),
      inset 0 -6px 14px rgba(0,0,0,0.5);
    filter: brightness(1.08);
  }
}
.page .buster-btn.primary:active {
  transform: scale(0.94);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.6),
    inset 0 6px 14px rgba(0,0,0,0.6);
}
.page .buster-btn.primary.buster-live {
  box-shadow:
    0 0 30px rgba(255,60,60,0.9),
    0 0 80px rgba(255,60,60,0.6),
    inset 0 2px 6px rgba(255,255,255,0.3);
}
@media (max-width: 640px) {
  .page .buster-btn.primary {
    width: 140px;
    height: 140px;
    font-size: 13px;
  }
}
/* Center only the CTA */
.buster-intro-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* =============================
   MOBILE NAV — FORCE 2 ROWS
============================= */
@media (max-width: 640px) {

  .site-header .nav {
    display: grid;
    grid-template-columns: repeat(1, auto);
    gap: 10px 16px;
    width: 100%;
  }

  .site-header .nav a {
    white-space: nowrap;
  }
}
/* =============================
   MOBILE NAV — SINGLE ROW SCROLL
============================= */
@media (max-width: 640px) {

  .site-header .nav {
    display: flex;
    flex-wrap: nowrap;          /* 🔑 force single row */
    overflow-x: auto;           /* 🔑 allow horizontal scroll */
    gap: 16px;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;      /* Firefox */
  }

  /* Hide scrollbar (Chrome, Safari) */
  .site-header .nav::-webkit-scrollbar {
    display: none;
  }

  .site-header .nav a {
    white-space: nowrap;        /* prevent breaking text */
    flex-shrink: 0;             /* prevent shrinking */
  }
}
.buster-intro-steps {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.buster-intro-steps li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.step-number {
  font-weight: 800;
  opacity: 0.4;
  min-width: 32px;
}

.buster-divider {
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}
/* =============================
   INTRO FEATURE CARDS
============================= */

.buster-intro-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.buster-intro-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 16px;

  text-align: center;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 8px 20px rgba(0,0,0,0.25);
}

.intro-card-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.intro-card-text strong {
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.intro-card-text p {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.85;
  margin: 0;
}
/* =============================
   INTRO CARDS — TALL + STACKED
============================= */

.buster-intro-cards.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  margin: 28px 0;
}

/* Tall primary card */
.buster-intro-card.tall {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
}

/* Right-side stack */
.buster-intro-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

/* Base card (shared) */
.buster-intro-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 16px;
  text-align: center;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 10px 24px rgba(0,0,0,0.28);
}

/* Icon */
.intro-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

/* Text */
.intro-card-text strong {
  display: block;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.intro-card-text p {
  font-size: 13px;
  line-height: 1.45;
  opacity: 0.85;
  margin: 6px 0 0;
}
/* =============================
   INTRO CARDS — COMPACT FIT
============================= */

/* Remove forced vertical centering */
.buster-intro-card.tall {
  justify-content: flex-start; /* was center */
  padding: 20px 18px;          /* reduced */
}

/* Reduce padding for all intro cards */
.buster-intro-card {
  padding: 16px 14px;
}

/* Tighten text spacing */
.intro-card-text p {
  margin-top: 6px;
  margin-bottom: 0;
}

/* Reduce icon spacing */
.intro-card-icon {
  margin-bottom: 6px;
}
/* =============================
   INTRO CARD — VERDICT ONE LINE
============================= */
.buster-verdict-line {
  display: inline-block;
  white-space: nowrap;
}
/* =============================
   INTRO CARDS — 2x2 COMPACT GRID
============================= */

.buster-intro-cards.split {
  display: grid;
  grid-template-columns: 1fr 1fr;     /* two equal halves */
  grid-template-rows: auto auto;      /* two rows */
  gap: 16px;
}

/* Tall card spans two rows on left */
.buster-intro-card.tall {
  grid-column: 1;
  grid-row: 1 / span 2;
}

/* Right side stack occupies right column */
.buster-intro-side {
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
  grid-column: 2;
  grid-row: 1 / span 2;
}
/* =============================
   SINGLE INTRO CARD
============================= */

.buster-intro-card.single {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px 20px;
  margin: 24px 0;

  text-align: center;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 10px 24px rgba(0,0,0,0.28);
}

.buster-intro-card.single .intro-card-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.buster-intro-card.single strong {
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.buster-intro-card.single p {
  font-size: 14px;
  line-height: 1.45;
  opacity: 0.9;
  margin: 8px 0;
}

/* Steps */
.buster-intro-steps {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}

.buster-intro-steps li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 6px;
}

.buster-intro-steps li span {
  font-weight: 700;
  opacity: 0.5;
}

/* Verdict line */
.buster-verdict {
  margin-top: 10px;
  font-size: 14px;
}

.buster-verdict strong {
  letter-spacing: 0.12em;
}
/* =============================
   BUSTER INTRO — COMPACT BRIEFING
============================= */

.buster-intro-card.single.compact {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 22px 20px;
  margin: 22px auto;
  max-width: 820px;
  text-align: center;

  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 10px 24px rgba(0,0,0,0.28);
}

/* Heading */
.buster-intro-heading {
  text-align: center;
  margin-bottom: 10px;
}

.buster-heading-icon {
  display: block;
  margin-bottom: 4px;
  opacity: 0.85;
}

.buster-heading-text {
  font-size: 22px;
  font-weight: 700;
}

/* Lead text */
.buster-intro-lead {
  margin: 8px 0;
  font-size: 14px;
}

.buster-intro-desc {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 16px;
}

/* Flow steps — compact grid */
.buster-intro-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  margin: 14px 0;
}

.flow-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
}

.step-number {
  font-weight: 700;
  opacity: 0.5;
}

/* Verdict */
.buster-intro-verdict {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 0.12em;
}

.buster-intro-verdict .sep {
  opacity: 0.5;
  margin: 0 6px;
}

/* Mobile tuning */
@media (max-width: 640px) {
  .buster-intro-flow {
    grid-template-columns: 1fr;
  }
}
/* =============================
   BUSTER INTRO — NARRATIVE MODE
============================= */

.buster-intro-card.narrative {
  max-width: 860px;
  margin: 28px auto;
  padding: 26px 24px;
}

/* Header */
.buster-briefing-header {
  text-align: center;
  margin-bottom: 18px;
}

.briefing-icon {
  font-size: 28px;
  margin-bottom: 6px;
}

.briefing-title {
  font-size: 22px;
  font-weight: 700;
}

.briefing-sub {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
}

/* Story */
.buster-briefing-story p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 10px 0;
}

/* Flow */
.buster-flow-diagram {
  margin: 22px 0;
}

.flow-node {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.flow-index {
  font-weight: 800;
  opacity: 0.4;
  min-width: 32px;
}

.flow-content strong {
  display: block;
  margin-bottom: 2px;
}

.flow-content span {
  font-size: 13px;
  opacity: 0.85;
}

.flow-arrow {
  text-align: center;
  opacity: 0.4;
  margin: 6px 0;
}

/* Verdict */
.buster-briefing-verdict {
  text-align: center;
  margin-top: 18px;
  font-size: 15px;
  letter-spacing: 0.12em;
}


/* Footer line */
.buster-briefing-footer {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.85;
}
/* =============================
   BUSTER CTA — CENTERED
============================= */
.buster-cta-wrap {
  display: flex;
  justify-content: center;
  margin: 32px 0 48px;
}
/* =============================
   BUSTER LOADER — HARD LOCK
============================= */
.buster-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(5, 10, 18, 0.92);
  backdrop-filter: blur(6px);
}

/* Hidden means truly gone */
.buster-loader.hidden {
  display: none !important;
}
/* =============================
   CTA vs LOADER — COLLISION FIX
============================= */

/* If loader is visible, CTA must be gone */
body.buster-loading .buster-cta-wrap {
  display: none !important;
}

/* Safety: hidden means hidden */
.buster-cta-wrap.hidden,
.buster-btn.hidden {
  display: none !important;
}
/* =============================
   CTA HIDING FIXES
============================= */

/* Fix 1: Ensure hidden class works on any element */
.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Fix 2: Direct button hiding */
.buster-btn.hidden,
.page .buster-btn.primary.hidden {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Fix 3: Parent wrapper hiding */
.buster-cta-wrap.hidden {
  display: none !important;
}

/* Fix 4: If using JavaScript to add/remove hidden class */
[hidden] {
  display: none !important;
}
/* =============================
   MANUAL MODE STYLES
============================= */

.manual-mode-default {
  border-left: 4px solid var(--accent);
  background: rgba(0, 255, 200, 0.02);
}

.manual-mode-header {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.manual-mode-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 0.5rem;
  opacity: 0.8;
}

.manual-input-section {
  margin-bottom: 2rem;
}

.manual-input-group {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-with-slider {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.input-with-slider .buster-input.large {
  flex: 1;
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  height: auto;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

.input-with-slider .buster-input.large:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 255, 200, 0.1);
}

.input-suffix {
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  padding: 0 0.5rem;
  font-size: 1.1rem;
}

/* Slider Container */
.slider-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.slider-label {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.slider-value {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
  background: rgba(0, 255, 200, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 200, 0.2);
}

/* FSP Slider */
.fsp-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, 
    #ff6b6b 0%, 
    #ffd166 33%, 
    #06d6a0 66%, 
    #118ab2 100%);
  border-radius: 4px;
  outline: none;
  margin: 1.5rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fsp-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
}

.fsp-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
}

.fsp-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease;
}

.fsp-slider::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.5);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 0.5rem;
  padding: 0 0.5rem;
}

.slider-ticks span {
  position: relative;
  padding-top: 0.5rem;
}

.slider-ticks span::before {
  content: '';
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
}

/* Manual Mode Status */
.manual-mode-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: rgba(6, 214, 160, 0.15);
  border-radius: 8px;
  border: 1px solid rgba(6, 214, 160, 0.3);
  border-left: 4px solid var(--accent);
  margin-top: 1rem;
}

.mode-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}

.mode-indicator i {
  font-size: 1.1rem;
}

.mode-hint {
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Fallback Section */
.fallback-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fallback-divider {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.fallback-divider::before,
.fallback-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.divider-text {
  padding: 0 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fallback-content {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.fallback-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.fallback-header i {
  color: var(--accent);
}

.fallback-select {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}

.fallback-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(0, 255, 200, 0.1);
}

.player-fsp-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.fsp-label {
  color: var(--text-light);
  font-size: 0.9rem;
}

.player-fsp-display strong {
  color: var(--accent);
  font-size: 1.2rem;
}

/* Manual Mode Notes */
.manual-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(17, 138, 178, 0.1);
  border-radius: 8px;
  border-left: 3px solid #118ab2;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.manual-note i {
  color: #118ab2;
  margin-top: 0.15rem;
  font-size: 1.1rem;
}

/* Guide Modal Styles */
.buster-modal-content.small {
  max-width: 500px;
}

.manual-guide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.guide-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease;
}

.guide-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

.guide-icon {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
  color: var(--accent);
}

.guide-content strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 1.05rem;
}

.guide-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer .buster-btn {
  min-width: 120px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .input-with-slider {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .input-suffix {
    align-self: flex-end;
    margin-top: -3.25rem;
    margin-right: 1rem;
    position: relative;
    z-index: 2;
  }
  
  .manual-mode-status {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 1rem;
  }
  
  .slider-container {
    padding: 1.25rem;
  }
  
  .slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .fallback-divider::before,
  .fallback-divider::after {
    display: none;
  }
  
  .divider-text {
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
  }
}

@media (max-width: 480px) {
  .manual-mode-header h3 {
    font-size: 1.3rem;
  }
  
  .manual-mode-subtitle {
    font-size: 0.9rem;
  }
  
  .input-with-slider .buster-input.large {
    font-size: 1rem;
    padding: 0.65rem 0.9rem;
  }
  
  .slider-container {
    padding: 1rem;
  }
  
  .fsp-slider {
    height: 6px;
  }
  
  .fsp-slider::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
  }
  
  .guide-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .guide-icon {
    align-self: center;
  }
}

/* Animation for manual mode activation */
@keyframes manualModeActivate {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 200, 0);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(0, 255, 200, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 200, 0);
  }
}

.manual-mode-default.active {
  animation: manualModeActivate 2s ease;
}

/* Hover effects for interactive elements */
.input-with-slider .buster-input.large:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.25);
}

.fallback-select:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

/* Focus states for accessibility */
.fsp-slider:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.manualFspPrimaryInput:focus,
.myPlayerSelect:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
/* Manual Submit Button */
.manual-submit-section {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#manualSubmitBtn {
  padding: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

#manualSubmitBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: rgba(0, 255, 200, 0.3);
}

#manualSubmitBtn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 255, 200, 0.2);
}

/* =============================
   DROPDOWN & SELECT STYLES
============================= */

/* Base dropdown/select styling */
.buster-input.fallback-select {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(0, 15, 30, 0.9);
  border: 1px solid rgba(0, 255, 200, 0.3);
  border-radius: 8px;
  color: #e0f7fa;
  font-size: 16px;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300ffc8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  transition: all 0.2s ease;
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.1);
}

/* Hover state */
.buster-input.fallback-select:hover {
  border-color: rgba(0, 255, 200, 0.6);
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.2);
}

/* Focus state */
.buster-input.fallback-select:focus {
  outline: none;
  border-color: #00ffc8;
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.3);
}

/* Disabled state */
.buster-input.fallback-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: rgba(0, 15, 30, 0.5);
}

/* Dropdown options styling */
.buster-input.fallback-select option {
  background-color: #001a33;
  color: #e0f7fa;
  padding: 10px;
  font-size: 15px;
}

/* Selected option */
.buster-input.fallback-select option:checked {
  background-color: rgba(0, 255, 200, 0.2);
  color: #00ffc8;
}

/* Custom dropdown container for player selection */
.fallback-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fallback-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00ffc8;
  font-size: 16px;
  font-weight: 600;
}

.fallback-header i {
  font-size: 18px;
}

.player-fsp-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(0, 255, 200, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 200, 0.2);
}

.fsp-label {
  color: #a0e7ff;
  font-size: 14px;
}

#computedFspValue {
  color: #00ffc8;
  font-size: 16px;
  font-weight: 600;
}

/* Divider between manual and fallback sections */
.fallback-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
  color: #5d8aa8;
}

.divider-text {
  padding: 0 15px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 255, 200, 0.1) 20%, 
    rgba(0, 255, 200, 0.2) 50%, 
    rgba(0, 255, 200, 0.1) 80%, 
    transparent 100%
  );
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Fallback section visibility toggle */
.fallback-section.hidden {
  display: none;
}

.fallback-section {
  margin-top: 25px;
  padding: 20px;
  background: rgba(0, 30, 60, 0.4);
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 200, 0.15);
  animation: fadeIn 0.3s ease-out;
}

/* =============================
   BUTTON STYLES (Manual Submit)
============================= */

.manual-submit-section {
  margin-top: 25px;
  margin-bottom: 15px;
}

.manual-submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, #00ffc8 0%, #00cca6 100%);
  border: none;
  border-radius: 10px;
  color: #001a33;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(0, 255, 200, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.manual-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 200, 0.6);
  background: linear-gradient(135deg, #00ffc8 0%, #00e6ba 100%);
}

.manual-submit-btn:active {
  transform: translateY(1px);
  box-shadow: 0 3px 15px rgba(0, 255, 200, 0.4);
}

.manual-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 3px 10px rgba(0, 255, 200, 0.2);
}

.manual-submit-btn i {
  font-size: 20px;
}

/* =============================
   MANUAL MODE SPECIFIC STYLES
============================= */

.manual-mode-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(0, 255, 200, 0.2);
}

.manual-mode-header h3 {
  color: #00ffc8;
  font-size: 22px;
  margin-bottom: 8px;
}

.manual-mode-subtitle {
  color: #a0e7ff;
  font-size: 15px;
  opacity: 0.9;
}

.manual-input-section {
  background: rgba(0, 20, 40, 0.3);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 200, 0.1);
}

.manual-input-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-with-slider {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-slider .buster-input.large {
  flex: 1;
  padding-right: 60px;
  font-size: 18px;
  font-weight: 600;
  height: 56px;
  background: rgba(0, 30, 60, 0.7);
}

.input-suffix {
  position: absolute;
  right: 16px;
  color: #00ffc8;
  font-weight: 600;
  font-size: 16px;
  pointer-events: none;
}

/* Slider styles */
.slider-container {
  background: rgba(0, 30, 60, 0.5);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(0, 255, 200, 0.1);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.slider-label {
  color: #a0e7ff;
  font-weight: 600;
  font-size: 14px;
}

.slider-value {
  color: #00ffc8;
  font-weight: 700;
  font-size: 16px;
  background: rgba(0, 255, 200, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

.fsp-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(90deg, 
    #ff6b6b 0%, 
    #ffd166 25%, 
    #00ffc8 50%, 
    #06d6a0 75%, 
    #118ab2 100%
  );
  border-radius: 3px;
  outline: none;
  margin: 10px 0;
}

.fsp-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #00ffc8;
  cursor: pointer;
  border: 3px solid #001a33;
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.8);
}

.fsp-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #00ffc8;
  cursor: pointer;
  border: 3px solid #001a33;
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.8);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #5d8aa8;
  font-size: 12px;
  font-weight: 500;
}

/* Manual mode status indicator */
.manual-mode-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: rgba(0, 255, 200, 0.08);
  border-radius: 6px;
  border: 1px solid rgba(0, 255, 200, 0.2);
}

.mode-indicator.manual-active {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00ffc8;
  font-weight: 600;
  font-size: 14px;
}

.mode-indicator i {
  font-size: 16px;
  animation: pulse 2s infinite;
}

.mode-hint {
  color: #a0e7ff;
  font-size: 12px;
  opacity: 0.8;
}

/* Manual mode note */
.manual-note {
  margin-top: 15px;
  padding: 12px 16px;
  background: rgba(0, 255, 200, 0.05);
  border-left: 3px solid #00ffc8;
  font-size: 14px;
}

/* Animation for manual mode activation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* =============================
   RESPONSIVE DESIGN
============================= */

@media (max-width: 768px) {
  .buster-input.fallback-select {
    padding: 10px 14px;
    font-size: 15px;
    background-position: right 12px center;
  }
  
  .manual-submit-btn {
    padding: 12px 20px;
    font-size: 16px;
  }
  
  .input-with-slider .buster-input.large {
    height: 48px;
    font-size: 16px;
  }
  
  .manual-mode-header h3 {
    font-size: 20px;
  }
  
  .slider-container {
    padding: 12px;
  }
  
  .fallback-section {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .manual-mode-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .fallback-header {
    font-size: 15px;
  }
}
/* Add to existing CSS */
.input-suffix {
  position: absolute;
  right: 16px;
  color: #00ffc8;
  font-weight: 600;
  font-size: 16px;
  pointer-events: none;
}

/* Adjust input to accommodate suffix */
.input-with-slider .buster-input.large {
  padding-right: 60px !important;
}

.slider-ticks span {
  font-size: 12px;
  opacity: 0.8;
}
/* =============================
   MATCHUP MODAL COLORED CARDS
============================= */

/* Base card styles */
.buster-target {
  padding: 12px 16px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: rgba(0, 30, 60, 0.6);
  border-left: 4px solid #5d8aa8;
  transition: all 0.2s ease;
}

/* Green (Can Beat) cards */
.buster-target.can-card {
  background: rgba(0, 255, 200, 0.08);
  border-left: 4px solid #00ffc8;
  border: 1px solid rgba(0, 255, 200, 0.2);
}

.buster-target.can-card:hover {
  background: rgba(0, 255, 200, 0.12);
  transform: translateX(4px);
}

/* Yellow (May/May Not) cards */
.buster-target.maybe-card {
  background: rgba(255, 209, 102, 0.08);
  border-left: 4px solid #ffd166;
  border: 1px solid rgba(255, 209, 102, 0.2);
}

.buster-target.maybe-card:hover {
  background: rgba(255, 209, 102, 0.12);
  transform: translateX(4px);
}

/* Red (Cannot Beat) cards */
.buster-target.cannot-card {
  background: rgba(255, 107, 107, 0.08);
  border-left: 4px solid #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.buster-target.cannot-card:hover {
  background: rgba(255, 107, 107, 0.12);
  transform: translateX(4px);
}

/* Assumed commanders card */
.buster-target.buster-assumed {
  background: rgba(128, 128, 128, 0.08);
  border-left: 4px solid #8a8a8a;
  border: 1px solid rgba(128, 128, 128, 0.2);
  opacity: 0.8;
}

/* Card content */
.buster-target-name {
  color: #e0f7fa;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.buster-target-meta {
  color: #a0e7ff;
  font-size: 14px;
  opacity: 0.9;
}

/* Color-specific text for Can Beat */
.buster-target.can-card .buster-target-name {
  color: #00ffc8;
}

.buster-target.can-card .buster-target-meta {
  color: #80e3d0;
}

/* Color-specific text for May/May Not */
.buster-target.maybe-card .buster-target-name {
  color: #ffd166;
}

.buster-target.maybe-card .buster-target-meta {
  color: #ffdc91;
}

/* Color-specific text for Cannot Beat */
.buster-target.cannot-card .buster-target-name {
  color: #ff6b6b;
}

.buster-target.cannot-card .buster-target-meta {
  color: #ffa8a8;
}

/* Modal header with category colors */
.buster-modal-content.can-category .buster-modal-header {
  background: linear-gradient(135deg, #026d56 0%, #00cca6 100%);
  color: #001a33;
}

.buster-modal-content.maybe-category .buster-modal-header {
  background: linear-gradient(135deg, #ffd166 0%, #ffb347 100%);
  color: #001a33;
}

.buster-modal-content.cannot-category .buster-modal-header {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #001a33;
}

/* Summary section colors (existing but ensure consistency) */
.buster-summary-item.can {
  background: linear-gradient(135deg, #00ffc8 0%, #00cca6 100%);
  color: #001a33;
}

.buster-summary-item.maybe {
  background: linear-gradient(135deg, #ffd166 0%, #ffb347 100%);
  color: #001a33;
}

.buster-summary-item.cannot {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: #001a33;
}

/* Threat cards color updates */
.buster-threat-card.primary {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
}

.buster-threat-card.primary .threat-icon {
  color: white;
}

.buster-threat-card.primary .threat-value,
.buster-threat-card.primary .threat-title,
.buster-threat-card.primary .threat-sub {
  color: white;
}
/* =============================
   MODAL CLOSE BUTTON STYLES
============================= */
.modal-close-btn {
  background: none;
  border: none;
  color: inherit;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.buster-modal-header .modal-close-btn {
  color: #001a33;
}

/* For colored modal headers */
.buster-modal-content.can-category .modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.buster-modal-content.maybe-category .modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.buster-modal-content.cannot-category .modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}
/* =============================
   NEON CYAN THEME - GLOBAL STYLES
============================= */

:root {
  --neon-cyan: #00ffc8;
  --neon-cyan-light: #aaffec;
  --neon-cyan-dark: #00cca6;
  --neon-glow: 0 0 20px rgba(0, 255, 200, 0.7);
  --neon-glow-intense: 0 0 30px rgba(0, 255, 200, 0.9);
  --neon-glow-subtle: 0 0 10px rgba(0, 255, 200, 0.4);
  --neon-border: 1px solid rgba(0, 255, 200, 0.5);
  --neon-border-glow: 1px solid rgba(0, 255, 200, 0.8);
  --dark-bg: rgba(0, 20, 40, 0.95);
  --darker-bg: rgba(0, 15, 30, 0.98);
  --modal-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* =============================
   CALCULATE MATCHUPS BUTTON - NEON VERSION
============================= */

.manual-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, 
    var(--neon-cyan) 0%, 
    var(--neon-cyan-dark) 100%);
  border: none;
  border-radius: 12px;
  color: #001a33;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  
  /* Neon glow effects */
  box-shadow: 
    var(--neon-glow),
    0 8px 25px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  
  /* Text shadow for readability */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.manual-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.manual-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    var(--neon-glow-intense),
    0 12px 35px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, 
    #0affd0 0%, 
    #00e6ba 100%);
}

.manual-submit-btn:hover::before {
  left: 100%;
}

.manual-submit-btn:active {
  transform: translateY(1px);
  box-shadow: 
    var(--neon-glow-subtle),
    0 4px 15px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.manual-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, 
    rgba(0, 255, 200, 0.6) 0%, 
    rgba(0, 204, 166, 0.6) 100%);
}

.manual-submit-btn i {
  font-size: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* =============================
   MODAL CONTAINERS - NEON CYAN THEME
============================= */

.buster-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.buster-modal.hidden {
  display: none;
}

.buster-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 10, 20, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease-out;
}

.buster-modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  background: var(--dark-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--modal-shadow);
  animation: modalSlideIn 0.4s ease-out;
  border: var(--neon-border);
  
  /* Neon border glow */
  box-shadow: 
    0 0 0 1px rgba(0, 255, 200, 0.2),
    var(--neon-glow),
    0 20px 60px rgba(0, 0, 0, 0.6);
}

.buster-modal-content.small {
  max-width: 500px;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* =============================
   MODAL HEADER - NEON CYAN
============================= */

.buster-modal-header {
  padding: 20px 24px;
  background: linear-gradient(135deg, 
    rgba(0, 255, 200, 0.2) 0%, 
    rgba(0, 204, 166, 0.15) 100%);
  border-bottom: var(--neon-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.buster-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 255, 200, 0.1), 
    transparent);
  animation: shimmer 3s infinite;
}

.buster-modal-header h3 {
  margin: 0;
  color: var(--neon-cyan);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px rgba(0, 255, 200, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

.buster-modal-header h3::before {
  content: '⚡';
  font-size: 20px;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* =============================
   MODAL CLOSE BUTTON - NEON STYLE
============================= */

.buster-modal-header button {
  background: rgba(0, 255, 200, 0.1);
  border: var(--neon-border);
  color: var(--neon-cyan);
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.buster-modal-header button:hover {
  background: rgba(0, 255, 200, 0.2);
  border-color: var(--neon-cyan);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: var(--neon-glow);
}

.buster-modal-header button:active {
  transform: scale(0.95);
}

/* =============================
   MODAL BODY - NEON CONTENT STYLES
============================= */

.buster-modal-body {
  padding: 24px;
  max-height: 60vh;
  overflow-y: auto;
  background: var(--darker-bg);
}

/* Scrollbar styling */
.buster-modal-body::-webkit-scrollbar {
  width: 8px;
}

.buster-modal-body::-webkit-scrollbar-track {
  background: rgba(0, 30, 60, 0.3);
  border-radius: 4px;
}

.buster-modal-body::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, 
    var(--neon-cyan), 
    var(--neon-cyan-dark));
  border-radius: 4px;
}

.buster-modal-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, 
    var(--neon-cyan-light), 
    var(--neon-cyan));
  box-shadow: var(--neon-glow-subtle);
}

/* =============================
   PLAYER CARDS IN MODAL - NEON STYLES
============================= */

.buster-target {
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(0, 30, 60, 0.4);
  border: var(--neon-border);
  border-left: 4px solid #5d8aa8;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.buster-target::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, 
    transparent, 
    rgba(0, 255, 200, 0.3), 
    transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.buster-target:hover {
  transform: translateX(5px);
  box-shadow: var(--neon-glow-subtle);
  background: rgba(0, 40, 80, 0.5);
}

.buster-target:hover::before {
  opacity: 1;
}

/* Can Beat Cards - NEON GREEN */
.buster-target.can-card {
  background: rgba(0, 255, 200, 0.1);
  border-left: 4px solid var(--neon-cyan);
  border: var(--neon-border);
}

.buster-target.can-card:hover {
  background: rgba(0, 255, 200, 0.15);
  box-shadow: var(--neon-glow);
}

/* May/May Not Cards - NEON YELLOW */
.buster-target.maybe-card {
  background: rgba(255, 209, 102, 0.1);
  border-left: 4px solid #ffd166;
  border: 1px solid rgba(255, 209, 102, 0.4);
}

.buster-target.maybe-card:hover {
  background: rgba(255, 209, 102, 0.15);
  box-shadow: 0 0 20px rgba(255, 209, 102, 0.5);
}

/* Cannot Beat Cards - NEON RED */
.buster-target.cannot-card {
  background: rgba(255, 107, 107, 0.1);
  border-left: 4px solid #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.4);
}

.buster-target.cannot-card:hover {
  background: rgba(255, 107, 107, 0.15);
  box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
}

/* Card Content */
.buster-target-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.buster-target-meta {
  color: var(--neon-cyan-light);
  font-size: 14px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Color-specific text */
.buster-target.can-card .buster-target-name {
  color: var(--neon-cyan);
  text-shadow: 0 2px 8px rgba(0, 255, 200, 0.3);
}

.buster-target.can-card .buster-target-meta {
  color: var(--neon-cyan-light);
}

.buster-target.maybe-card .buster-target-name {
  color: #ffd166;
  text-shadow: 0 2px 8px rgba(255, 209, 102, 0.3);
}

.buster-target.maybe-card .buster-target-meta {
  color: #ffe5a3;
}

.buster-target.cannot-card .buster-target-name {
  color: #ff6b6b;
  text-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

.buster-target.cannot-card .buster-target-meta {
  color: #ffa8a8;
}

/* Assumed Commanders Card */
.buster-target.buster-assumed {
  background: rgba(128, 128, 128, 0.1);
  border-left: 4px solid #8a8a8a;
  border: 1px solid rgba(128, 128, 128, 0.3);
  opacity: 0.8;
}

.buster-target.buster-assumed:hover {
  background: rgba(128, 128, 128, 0.15);
  opacity: 1;
}

/* =============================
   CATEGORY-SPECIFIC MODAL HEADERS
============================= */

.buster-modal-content.can-category .buster-modal-header {
  background: linear-gradient(135deg, 
    rgba(0, 255, 200, 0.3) 0%, 
    rgba(0, 204, 166, 0.25) 100%);
  border-bottom: var(--neon-border-glow);
}

.buster-modal-content.maybe-category .buster-modal-header {
  background: linear-gradient(135deg, 
    rgba(255, 209, 102, 0.3) 0%, 
    rgba(255, 179, 71, 0.25) 100%);
  border-bottom: 1px solid rgba(255, 209, 102, 0.8);
}

.buster-modal-content.maybe-category .buster-modal-header h3 {
  color: #ffd166;
  text-shadow: 0 2px 10px rgba(255, 209, 102, 0.5);
}

.buster-modal-content.maybe-category .buster-modal-header button {
  background: rgba(255, 209, 102, 0.1);
  border: 1px solid rgba(255, 209, 102, 0.5);
  color: #ffd166;
}

.buster-modal-content.cannot-category .buster-modal-header {
  background: linear-gradient(135deg, 
    rgba(255, 107, 107, 0.3) 0%, 
    rgba(238, 90, 82, 0.25) 100%);
  border-bottom: 1px solid rgba(255, 107, 107, 0.8);
}

.buster-modal-content.cannot-category .buster-modal-header h3 {
  color: #ff6b6b;
  text-shadow: 0 2px 10px rgba(255, 107, 107, 0.5);
}

.buster-modal-content.cannot-category .buster-modal-header button {
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.5);
  color: #ff6b6b;
}

/* =============================
   MANUAL MODE GUIDE MODAL
============================= */

.manual-guide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(0, 30, 60, 0.4);
  border-radius: 12px;
  border: var(--neon-border);
  transition: all 0.3s ease;
}

.guide-item:hover {
  background: rgba(0, 30, 60, 0.6);
  transform: translateX(5px);
  box-shadow: var(--neon-glow-subtle);
}

.guide-icon {
  font-size: 24px;
  color: var(--neon-cyan);
  background: rgba(0, 255, 200, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-content {
  flex: 1;
}

.guide-content strong {
  display: block;
  color: var(--neon-cyan);
  font-size: 17px;
  margin-bottom: 6px;
  font-weight: 600;
}

.guide-content p {
  color: #a0e7ff;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.modal-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: var(--neon-border);
  display: flex;
  justify-content: flex-end;
}

/* =============================
   RESPONSIVE DESIGN
============================= */

@media (max-width: 768px) {
  .buster-modal-content {
    width: 95%;
    max-height: 85vh;
  }
  
  .buster-modal-header {
    padding: 16px 20px;
  }
  
  .buster-modal-header h3 {
    font-size: 19px;
  }
  
  .buster-modal-body {
    padding: 20px;
    max-height: 65vh;
  }
  
  .buster-target {
    padding: 14px;
  }
  
  .buster-target-name {
    font-size: 16px;
  }
  
  .manual-submit-btn {
    padding: 14px 20px;
    font-size: 16px;
  }
  
  .guide-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .guide-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .buster-modal-content {
    border-radius: 12px;
  }
  
  .buster-modal-header {
    padding: 14px 16px;
  }
  
  .buster-modal-header h3 {
    font-size: 17px;
  }
  
  .buster-modal-body {
    padding: 16px;
  }
  
  .manual-submit-btn {
    padding: 12px 16px;
    font-size: 15px;
  }
}

/* =============================
   ADDITIONAL NEON EFFECTS
============================= */

/* Neon text effect for important headings */
.neon-text {
  color: var(--neon-cyan);
  text-shadow: 
    0 0 10px var(--neon-cyan),
    0 0 20px var(--neon-cyan),
    0 0 30px var(--neon-cyan);
  animation: neon-flicker 3s infinite alternate;
}

@keyframes neon-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 
      0 0 10px var(--neon-cyan),
      0 0 20px var(--neon-cyan),
      0 0 30px var(--neon-cyan);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

/* Neon border animation for active elements */
.neon-border-animate {
  position: relative;
  border: var(--neon-border);
  animation: border-pulse 2s infinite;
}

@keyframes border-pulse {
  0%, 100% {
    box-shadow: var(--neon-glow-subtle);
  }
  50% {
    box-shadow: var(--neon-glow);
  }
}

/* Neon glow for selected items */
.neon-glow-selected {
  background: rgba(0, 255, 200, 0.15);
  box-shadow: 
    inset 0 0 20px rgba(0, 255, 200, 0.2),
    var(--neon-glow);
  border: var(--neon-border-glow);
}
/* =============================
   DARK NEON THEME - COLOR VARIABLES
============================= */

:root {
  --neon-cyan: #00ffc8;
  --neon-cyan-dark: #00cca6;
  --neon-yellow: #ffd166;
  --neon-yellow-dark: #ffb347;
  --neon-red: #ff6b6b;
  --neon-red-dark: #ee5a52;
  --dark-bg: #0a0f1a;
  --darker-bg: #070b14;
  --card-bg: rgba(10, 20, 35, 0.9);
  --card-border: rgba(255, 255, 255, 0.1);
  --neon-glow-cyan: 0 0 15px rgba(0, 255, 200, 0.7);
  --neon-glow-yellow: 0 0 15px rgba(255, 209, 102, 0.7);
  --neon-glow-red: 0 0 15px rgba(255, 107, 107, 0.7);
  --neon-glow-intense: 0 0 25px currentColor;
  --neon-text-glow: 0 0 10px currentColor;
}

/* =============================
   DARK NEON CARD BASE STYLES
============================= */

.buster-target {
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Neon border effect */
.buster-target::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1), 
    transparent, 
    rgba(255, 255, 255, 0.1));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Inner glow effect */
.buster-target::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 12px;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.buster-target:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.buster-target:hover::before,
.buster-target:hover::after {
  opacity: 1;
}

/* =============================
   CAN BEAT CARDS - DARK NEON GREEN/CYAN
============================= */

.buster-target.can-card {
  background: linear-gradient(
    135deg,
    rgba(0, 40, 35, 0.9) 0%,
    rgba(0, 25, 20, 0.95) 100%
  );
  border: 1px solid rgba(0, 255, 200, 0.3);
  box-shadow: 
    0 0 0 1px rgba(0, 255, 200, 0.1),
    var(--neon-glow-cyan);
}

.buster-target.can-card::before {
  background: linear-gradient(135deg, 
    transparent, 
    rgba(0, 255, 200, 0.4), 
    transparent);
}

.buster-target.can-card:hover {
  border: 1px solid rgba(0, 255, 200, 0.6);
  box-shadow: 
    0 0 0 1px rgba(0, 255, 200, 0.2),
    0 0 30px rgba(0, 255, 200, 0.4),
    var(--neon-glow-cyan);
}

/* Can Beat inner content */
.buster-target.can-card .buster-target-name {
  color: var(--neon-cyan);
  text-shadow: var(--neon-text-glow);
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
}

.buster-target.can-card .buster-target-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--neon-cyan), 
    transparent);
  border-radius: 1px;
}

.buster-target.can-card .buster-target-meta {
  color: rgba(0, 255, 200, 0.8);
  font-weight: 500;
}

/* =============================
   MAY/MAY NOT CARDS - DARK NEON AMBER
============================= */

.buster-target.maybe-card {
  background: linear-gradient(
    135deg,
    rgba(40, 35, 10, 0.9) 0%,
    rgba(25, 20, 5, 0.95) 100%
  );
  border: 1px solid rgba(255, 209, 102, 0.3);
  box-shadow: 
    0 0 0 1px rgba(255, 209, 102, 0.1),
    var(--neon-glow-yellow);
}

.buster-target.maybe-card::before {
  background: linear-gradient(135deg, 
    transparent, 
    rgba(255, 209, 102, 0.4), 
    transparent);
}

.buster-target.maybe-card:hover {
  border: 1px solid rgba(255, 209, 102, 0.6);
  box-shadow: 
    0 0 0 1px rgba(255, 209, 102, 0.2),
    0 0 30px rgba(255, 209, 102, 0.4),
    var(--neon-glow-yellow);
}

/* May/May Not inner content */
.buster-target.maybe-card .buster-target-name {
  color: var(--neon-yellow);
  text-shadow: var(--neon-text-glow);
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
}

.buster-target.maybe-card .buster-target-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--neon-yellow), 
    transparent);
  border-radius: 1px;
}

.buster-target.maybe-card .buster-target-meta {
  color: rgba(255, 209, 102, 0.8);
  font-weight: 500;
}

/* =============================
   CANNOT BEAT CARDS - DARK NEON RED
============================= */

.buster-target.cannot-card {
  background: linear-gradient(
    135deg,
    rgba(40, 10, 10, 0.9) 0%,
    rgba(25, 5, 5, 0.95) 100%
  );
  border: 1px solid rgba(255, 107, 107, 0.3);
  box-shadow: 
    0 0 0 1px rgba(255, 107, 107, 0.1),
    var(--neon-glow-red);
}

.buster-target.cannot-card::before {
  background: linear-gradient(135deg, 
    transparent, 
    rgba(255, 107, 107, 0.4), 
    transparent);
}

.buster-target.cannot-card:hover {
  border: 1px solid rgba(255, 107, 107, 0.6);
  box-shadow: 
    0 0 0 1px rgba(255, 107, 107, 0.2),
    0 0 30px rgba(255, 107, 107, 0.4),
    var(--neon-glow-red);
}

/* Cannot Beat inner content */
.buster-target.cannot-card .buster-target-name {
  color: var(--neon-red);
  text-shadow: var(--neon-text-glow);
  font-weight: 700;
  letter-spacing: 0.5px;
  position: relative;
}

.buster-target.cannot-card .buster-target-name::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--neon-red), 
    transparent);
  border-radius: 1px;
}

.buster-target.cannot-card .buster-target-meta {
  color: rgba(255, 107, 107, 0.8);
  font-weight: 500;
}

/* =============================
   CARD CONTENT STYLES
============================= */

.buster-target-name {
  color: #ffffff;
  font-size: 17px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.buster-target-meta {
  color: #a0e7ff;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

/* Icon styling */
.buster-target-icon {
  font-size: 16px;
  opacity: 0.8;
}

/* Assumed Commanders Card */
.buster-target.buster-assumed {
  background: linear-gradient(
    135deg,
    rgba(30, 30, 40, 0.9) 0%,
    rgba(20, 20, 30, 0.95) 100%
  );
  border: 1px solid rgba(150, 150, 200, 0.3);
  box-shadow: 
    0 0 0 1px rgba(150, 150, 200, 0.1),
    0 0 15px rgba(150, 150, 200, 0.3);
  opacity: 0.9;
}

.buster-target.buster-assumed:hover {
  border: 1px solid rgba(150, 150, 200, 0.6);
  box-shadow: 
    0 0 0 1px rgba(150, 150, 200, 0.2),
    0 0 25px rgba(150, 150, 200, 0.4);
  opacity: 1;
}

.buster-target.buster-assumed .buster-target-name {
  color: #a0a0ff;
  text-shadow: 0 0 10px rgba(160, 160, 255, 0.5);
}

.buster-target.buster-assumed .buster-target-meta {
  color: rgba(160, 160, 255, 0.8);
}

/* =============================
   MODAL HEADER DARK NEON STYLES
============================= */

.buster-modal-content.can-category .buster-modal-header {
  background: linear-gradient(135deg, 
    rgba(0, 40, 35, 0.9) 0%, 
    rgba(0, 25, 20, 0.95) 100%);
  border-bottom: 1px solid rgba(0, 255, 200, 0.4);
  position: relative;
}

.buster-modal-content.can-category .buster-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(0, 255, 200, 0.1), 
    transparent);
  animation: shimmer 3s infinite;
}

.buster-modal-content.maybe-category .buster-modal-header {
  background: linear-gradient(135deg, 
    rgba(40, 35, 10, 0.9) 0%, 
    rgba(25, 20, 5, 0.95) 100%);
  border-bottom: 1px solid rgba(255, 209, 102, 0.4);
}

.buster-modal-content.maybe-category .buster-modal-header::before {
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 209, 102, 0.1), 
    transparent);
}

.buster-modal-content.cannot-category .buster-modal-header {
  background: linear-gradient(135deg, 
    rgba(40, 10, 10, 0.9) 0%, 
    rgba(25, 5, 5, 0.95) 100%);
  border-bottom: 1px solid rgba(255, 107, 107, 0.4);
}

.buster-modal-content.cannot-category .buster-modal-header::before {
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 107, 107, 0.1), 
    transparent);
}

/* =============================
   SUMMARY SECTION DARK NEON
============================= */

.buster-summary-item {
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.buster-summary-item.can {
  background: linear-gradient(135deg, 
    rgba(0, 40, 35, 0.9) 0%, 
    rgba(0, 25, 20, 0.95) 100%);
  border: 1px solid rgba(0, 255, 200, 0.4);
  box-shadow: var(--neon-glow-cyan);
}

.buster-summary-item.can:hover {
  transform: translateY(-3px);
  box-shadow: 
    var(--neon-glow-cyan),
    0 10px 30px rgba(0, 255, 200, 0.3);
}

.buster-summary-item.maybe {
  background: linear-gradient(135deg, 
    rgba(40, 35, 10, 0.9) 0%, 
    rgba(25, 20, 5, 0.95) 100%);
  border: 1px solid rgba(255, 209, 102, 0.4);
  box-shadow: var(--neon-glow-yellow);
}

.buster-summary-item.maybe:hover {
  transform: translateY(-3px);
  box-shadow: 
    var(--neon-glow-yellow),
    0 10px 30px rgba(255, 209, 102, 0.3);
}

.buster-summary-item.cannot {
  background: linear-gradient(135deg, 
    rgba(40, 10, 10, 0.9) 0%, 
    rgba(25, 5, 5, 0.95) 100%);
  border: 1px solid rgba(255, 107, 107, 0.4);
  box-shadow: var(--neon-glow-red);
}

.buster-summary-item.cannot:hover {
  transform: translateY(-3px);
  box-shadow: 
    var(--neon-glow-red),
    0 10px 30px rgba(255, 107, 107, 0.3);
}

.buster-summary-item strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
  color: white;
  text-shadow: 0 0 10px currentColor;
}

.buster-summary-item span {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.buster-summary-item.can strong { color: var(--neon-cyan); }
.buster-summary-item.maybe strong { color: var(--neon-yellow); }
.buster-summary-item.cannot strong { color: var(--neon-red); }

.buster-summary-item.can span { color: rgba(0, 255, 200, 0.9); }
.buster-summary-item.maybe span { color: rgba(255, 209, 102, 0.9); }
.buster-summary-item.cannot span { color: rgba(255, 107, 107, 0.9); }

/* =============================
   THREAT CARDS DARK NEON
============================= */

.buster-threat-card {
  border-radius: 12px;
  padding: 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.buster-threat-card.primary {
  background: linear-gradient(135deg, 
    rgba(40, 10, 10, 0.9) 0%, 
    rgba(25, 5, 5, 0.95) 100%);
  border: 1px solid rgba(255, 107, 107, 0.4);
  box-shadow: var(--neon-glow-red);
}

.buster-threat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.buster-threat-card.primary:hover {
  box-shadow: 
    var(--neon-glow-red),
    0 10px 30px rgba(255, 107, 107, 0.3);
}

/* =============================
   CALCULATE BUTTON DARK NEON
============================= */

.manual-submit-btn {
  width: 100%;
  padding: 18px 24px;
  background: linear-gradient(135deg, 
    rgba(0, 40, 35, 0.9) 0%, 
    rgba(0, 25, 20, 0.95) 100%);
  border: 1px solid rgba(0, 255, 200, 0.4);
  border-radius: 12px;
  color: var(--neon-cyan);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--neon-glow-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

.manual-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    var(--neon-glow-cyan),
    0 15px 40px rgba(0, 255, 200, 0.3);
  background: linear-gradient(135deg, 
    rgba(0, 50, 45, 0.9) 0%, 
    rgba(0, 30, 25, 0.95) 100%);
  border: 1px solid rgba(0, 255, 200, 0.6);
}

.manual-submit-btn:active {
  transform: translateY(1px);
  box-shadow: 
    var(--neon-glow-cyan),
    0 5px 20px rgba(0, 255, 200, 0.2);
}

.manual-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 0 0 1px rgba(0, 255, 200, 0.2);
}

.manual-submit-btn i {
  font-size: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* =============================
   MODAL BACKGROUND DARK THEME
============================= */

.buster-modal-backdrop {
  background: rgba(5, 10, 20, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.buster-modal-content {
  background: var(--dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 25px 50px rgba(0, 0, 0, 0.5);
}

/* =============================
   RESPONSIVE DESIGN
============================= */

@media (max-width: 768px) {
  .buster-target {
    padding: 14px;
  }
  
  .buster-target-name {
    font-size: 16px;
  }
  
  .buster-summary-item {
    padding: 14px;
  }
  
  .buster-summary-item strong {
    font-size: 24px;
  }
  
  .manual-submit-btn {
    padding: 16px 20px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .buster-target {
    padding: 12px;
    border-radius: 10px;
  }
  
  .buster-summary-item {
    padding: 12px;
    border-radius: 10px;
  }
  
  .buster-summary-item strong {
    font-size: 22px;
  }
  
  .manual-submit-btn {
    padding: 14px 16px;
    font-size: 15px;
  }
}
/* =============================
   BUSTER SUMMARY (MINIMAL)
============================= */

.buster-intro.minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px;
}

.buster-summary-card {
  width: 100%;
  max-width: 520px;
  background: linear-gradient(180deg, #0f1418, #0b0f13);
  border: 1px solid rgba(64, 220, 165, 0.15);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* ---------- Header ---------- */

.buster-summary-head {
  text-align: center;
  margin-bottom: 14px;
}

.buster-icon {
  display: inline-block;
  font-size: 28px;
  margin-bottom: 6px;
}

.buster-title {
  font-size: 20px;
  font-weight: 700;
  color: #e6fff5;
  margin: 0;
}

.buster-sub {
  font-size: 13px;
  color: #9bb5aa;
  margin-top: 4px;
}

/* ---------- Body ---------- */

.buster-summary-body {
  margin: 14px 0;
}

.buster-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.buster-points li {
  font-size: 13px;
  color: #cfd9d5;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.buster-points li:last-child {
  border-bottom: none;
}

/* ---------- Flow ---------- */

.buster-summary-flow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0;
  font-size: 12px;
  color: #8fdcc5;
}

.buster-summary-flow span {
  background: rgba(64, 220, 165, 0.08);
  padding: 4px 8px;
  border-radius: 6px;
}

/* ---------- Footer ---------- */

.buster-summary-footer {
  text-align: center;
  font-size: 13px;
  color: #b8c9c3;
  margin-top: 12px;
}

.buster-summary-footer strong {
  color: #40dca5;
}

/* ---------- CTA ---------- */

.buster-cta-wrap {
  margin-top: 18px;
  width: 100%;
  max-width: 520px;
}

.buster-btn.primary {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(135deg, #40dca5, #2bbd8c);
  border: none;
  border-radius: 10px;
  color: #07140f;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.buster-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(64, 220, 165, 0.35);
}

/* ---------- Mobile Fine-Tuning ---------- */

@media (max-width: 480px) {
  .buster-summary-card {
    padding: 18px 16px;
  }

  .buster-title {
    font-size: 18px;
  }

  .buster-sub {
    font-size: 12px;
  }

  .buster-points li {
    font-size: 12px;
  }
}
