/* ===========================
   GENERAL PAGE STYLES
   =========================== */
body.home-page
 {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  background: #000;
  color: #fff;
}

/* ===========================
   HEADER AND NAVIGATION
   =========================== */
header, .main-header {
  background: #000000;
  border-bottom: 2px solid #003278;
}
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: 56px; */
  width: auto;
  padding: 0;
  height: 60px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: 'Montserrat', sans-serif;
  margin:0;
  padding: 0 1em;
}

.tldr-logo {
  height: 55px;
  width: auto;
  margin: 0;         /* ← no margin */
  padding: 0;        /* ← no padding */
  display: block;
}

.brand-text {
  font-size: 2em;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-left, .nav-center, .nav-right {
  display: flex;
  align-items: center;
  margin-left:2em;
  color: #fff;
}
.nav-left { flex: 0; justify-content: flex-end; gap: 2em; }
.nav-center { flex: 2; justify-content: center; }
.nav-right { flex: 1; justify-content: flex-end; gap: 2em; } 

.logo {
  margin-left: 1em;
  font-weight: bold;
  font-size: 1.2em;
  letter-spacing: 1px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  font-size: 1.12em;
  transition: opacity 0.2s;
  padding-top: 11px;   /* <-- increase to move text lower */
  font-weight: 500;
}
.nav-link:hover {
  opacity: 1;
  /* text-decoration: ; */
}
.nav-item {
  cursor: pointer;
  padding: 0.5em 1em;
  border-radius: 6px;
  font-weight: bold;
  color: #fff;
  font-size: 1em;
}

/* ===========================
   NEWSLETTER SECTION
   =========================== */
.newsletter-signup {
  margin-top: 1.3em;
  background: linear-gradient(90deg, #0c0b0b 25%, #070742 100%);
  color: #fff;
  padding: 1em 1em 1em 2em;
  border-radius: 0 0 20px 20px;
  margin-bottom: 2em;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 24px #0008;
}
.newsletter-signup h1 {
  font-size: 2em;
  margin: 0 0 0.4em 0;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: .2em;
}
.newsletter-signup .highlight {
  color: #c0111f;
}
.newsletter-signup .signup-desc {
  font-size: 1.15em;
  margin-bottom: 1.1em;
  color: #f5f5fa;
}
.signup-form {
  display: flex;
  gap: 1em;
  margin-bottom: 0.4em;
  max-width: 600px;
  width: 100%;
}
.signup-form input[type="email"] {
  flex: 1;
  font-size: 1.1em;
  padding: 0.75em 1em;
  border: 2px solid #0002;
  border-radius: 6px;
  background: #222233;
  color: #fff;
  box-shadow: 0 2px 8px #0002;
  outline: none;
  height: 48px;
  box-sizing: border-box;
  transition: border 0.18s, background 0.18s;
}
.signup-form input[type="email"]:focus {
  border: 2px solid #003278;
  background: #0002;

}
.signup-form input[type="email"]::placeholder {
  color: #bbb;
}
.signup-form button {
  background: #9b0e17;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0 1.4em;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 12px #0002;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.signup-form button:hover {
  background: linear-gradient(90deg, #e42939 20%, #C0111F 90%);
}
.signup-note {
  margin: 0;
  font-size: 1em;
  color: #bbb;
}
.highlight-link {
  color: #9b0e17;
  text-decoration: underline;
  cursor: pointer;
}

/* ===========================
   MAIN CONTENT & GAME CARDS
   =========================== */
main {
  /* max-width: 1250px; */
  margin: 2em auto;
  background: #101013;
  border-radius: 12px;
  padding: 1em;
  box-shadow: 0 0 32px #0008;
}
footer {
  text-align: center;
  margin: 2em 0;
  color: #bbb;
}

/* ===========================
   SCROLLING GAME CARDS + ARROWS
   =========================== */
.scrolling-cards-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0.5em 0;
}
.scroll-arrow {
  background: #020811;
  color: #288aff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5em;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 8px #0008;
  margin: 0 8px;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  opacity: 0;
  pointer-events: none;
  z-index: 2;
}
.scrolling-cards-wrapper:hover .scroll-arrow {
  opacity: 1;
  pointer-events: auto;
}
.scroll-arrow:hover {
  background: #288aff;
  color: #fff;
}
/* Always show arrows on mobile/touch */
@media (hover: none) and (pointer: coarse) {
  .scroll-arrow {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}
.scrolling-cards {
  overflow-x: auto;
  white-space: nowrap;
  flex: 1;
  display: flex;
  gap: .05em;
  padding-bottom: 1em;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.scrolling-cards::-webkit-scrollbar {
  display: none;
}

/* ===========================
   GAME CARD LAYOUT
   =========================== */
.game-card {
  background: linear-gradient(90deg, #0c0b0b 25%, #070742 100%);
  border-radius: 14px;
  box-shadow: 0 2px 12px #c0111f;
  padding: 2em 2em 1.5em 2em;
  min-width: 300px;
  max-height: 180px;
  margin-right: 18px;
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.game-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.game-card-link .game-card:hover {
  box-shadow: 0 6px 32px #000b;
  transform: scale(1.03);
}

/* ----- GAME CARD HEADER: BADGES ROW ----- */
.game-card-header-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0.6em;
}

/* --- Badges: Game Time, Live, Inning, Status --- */
.game-time{
  margin-right: 0.8em;
  font-weight: bold;
  font-size: 1.06em;
  color: #fff;
  background: none;
  border-radius: 0;
  padding: 0;
  min-width: 0;
  box-shadow: none;
  letter-spacing: 1px;
  text-align: left;
}
.game-status-badge{
  margin-right: 0.8em;
  font-weight: bold;
  font-size: 1.06em;
  color: #fff;
  background: none;
  border-radius: 0;
  padding: 0;
  min-width: 0;
  box-shadow: none;
  letter-spacing: 1px;
  text-align: left;
}
.game-inning-status {
  margin-right: 0.2em;
  font-weight: bold;
  font-size: 1.06em;
  color: #fa8c8c;
  background: none;
  border-radius: 0;
  padding: 0;
  min-width: 0;
  box-shadow: none;
  letter-spacing: 1px;
  text-align: right;
}
.live-status {
  margin-left: 0.8em;
  font-weight: bold;
  font-size: 1.16em;
  background: none;
  border-radius: 0;
  padding: 0;
  min-width: 0;
  box-shadow: none;
  letter-spacing: 1px;
  text-align: left;
  color: #ff1100;
}
/* --- Teams Row (logos, scores, etc) --- */
.game-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6em;
  margin-top: 1em;
}
.index-team-logo {
  height: 58px;
  width: 58px;
  background: #000000;
  border-radius: 50px;
  box-shadow: 0 2px 10px #0003;
  padding: 2px;
  margin-top: -12px;
}
.team-score {
  font-size: 2.2em;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}
.vs {
  font-size:45px;
  color: #aaa;
  font-weight: bold;
  margin: 0 10px;
}
.game-teams-abbr, .game-teams-record {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6em;
  margin-top: 2px;
}
.game-teams-abbr span,
.game-teams-record span {
  width: 44px;
  text-align: center;
}
/* .team-name */
.game-teams-abbr  {
  font-weight: bold;
  letter-spacing: 1px;
}
.game-teams-record .team-standing {
  color: #aabbee;
  font-size: 0.97em;
}
.game-teams-abbr .spacer,
.game-teams-record .spacer {
  width: 86px;
}

.game-summary {
  background: #18181b;
  color: #b7bbc7;
  border-radius: 7px;
  margin-top: 0.6em;
  padding: 0.65em 0.9em;
  font-size: 0.92em;
  line-height: 1.35;
  border-left: 3px solid #50fa7b;
}

/* ----- Other Styles (tables, etc) ----- */
.boxscore-table {
  width: 100%;
  margin: 1.6em 0;
  border-collapse: collapse;
  font-size: 1.08em;
  background: #18181b;
  color: #fff;
  box-shadow: 0 2px 14px #0006;
  border-radius: 12px;
  overflow: hidden;
}
.boxscore-table th, .boxscore-table td {
  padding: 0.6em 0.9em;
  border-bottom: 1px solid #242435;
  text-align: center;
}
.boxscore-table th {
  background: #22223a;
  font-weight: bold;
  letter-spacing: 1px;
}
.boxscore-table tr:last-child td {
  border-bottom: none;
}

.calendar-input {
  width: 130px;
  padding: 8px 10px;
  font-size: 1em;
  border-radius: 4px;
  border: 1px solid #ccc;
  cursor: pointer;
  background: #222;
  color: #fff;
}
.flatpickr-calendar {
  font-family: inherit;
  box-shadow: 0 4px 24px #0004;
}
.date-navigator .date-arrow {
  background: none;
  border: none;
  font-size: 1.5em;
  cursor: pointer;
  color: #1751a6;
  transition: color 0.1s;
}
.date-navigator .date-arrow:hover {
  color: #288aff;
}
.date-navigator .date-current {
  font-weight: bold;
  font-size: 1.25em;
  color: #fff;
}

#news-section {
  margin: 2em 0 0 0;
  background: #18181b;
  border-radius: 12px;
  padding: 1.5em 2em;
}
.news-list {
  list-style: none;
  padding: 0;
}
.news-headline {
  margin-bottom: 1.2em;
  font-size: 1.09em;
}
.news-headline a {
  color: #a366ff;
  font-weight: 600;
  text-decoration: none;
}
.news-headline a:hover {
  text-decoration: underline;
}
.news-source, .news-date {
  color: #aaa;
  font-size: 0.92em;
  margin-left: 0.7em;
}
.mlb-logo-header {
  height: 40px;
  vertical-align: middle;
  margin-right: 10px;
}
.team-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
  justify-content: flex-start;

}

.team-abbr {
  font-size: 0.99em;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  margin-top: 2px;
  margin-bottom: 1px;
  text-align: center;
}

.team-standing {
  font-size: 0.80em;
  color: #aabbee;
  font-weight: 600;
  text-align: center;
}
.game-card-footer {
  margin-top: 0;
  background: #18181b;
  border-radius: 7px;
  padding: 0.2em 1em;
  color: #b7bbc7;
  font-size: 0.93em;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 3px solid #288aff;
}

.final-pitchers span,
.live-pitcher-batter span,
.scheduled-starters span {
  display: block;
  margin: 0.1em 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.final-pitchers { color: #fa8c8c; }
.live-pitcher-batter { color: #a4d6ff; }
.scheduled-starters { color: #b7d0ff; }

/* ===========================
   NEWS, BOXSCORE, CALENDAR, ETC
   =========================== */
.news-cards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2em;
  margin-top: 1.4em;
}
.news-card {
  /* background: #232340; */
  border-radius: 12px;
  box-shadow: 0 4px 18px #0008;
  padding: 1em 1.3em;
  width: 340px;
  max-width: 100%;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 0.5em;
}
.news-title {
  font-size: 1.13em;
  font-weight: 700;
  color: #a366ff;
  text-decoration: none;
  margin-bottom: 0.3em;
  transition: color 0.18s;
}
/* .news-title:hover {
  color: #fff;
  text-decoration: underline;
} */
.news-meta {
  font-size: 0.96em;
  color: #aaa;
  margin-bottom: 0.18em;
  display: flex;
  gap: 1em;
}
.news-summary {
  font-size: 0.98em;
  color: #ddd;
  margin-top: 0.5em;
  line-height: 1.33;
  max-height: 58px;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 800px) {
  .news-cards-list {
    flex-direction: column;
    gap: 0.7em;
  }
  .news-card {
    width: 100%;
    min-width: 0;
    padding: 1em 0.7em;
  }
}
.tldr-boxscore {
  display: flex;
  flex-direction: column;
  background: #18181b;
  color: #fff;
  border-radius: 16px;
  padding: 1.5em 2em;
  max-width: 1200px;
  margin: 2em auto;
}
.tldr-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #292B3A; /* your TLDR primary color */
  padding: 1em 2em;
  border-radius: 12px;
  color: #fff;
  margin-bottom: 1.2em;
}
.tldr-header .score { font-size: 2.8em; font-weight: 800; }
.tldr-header .record { font-size: 0.92em; color: #fff; }
.tldr-content {
  display: grid;
  grid-template-columns: 1.3fr 2fr 1.2fr;
  gap: 2em;
}
.player-blocks, .game-meta {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}
.batter-info, .pitcher-info {
  background: #222;
  border-radius: 10px;
  padding: 0.7em 1em;
}
/* .play-by-play {
  background: #232340;
  border-radius: 12px;
  padding: 1em 1.2em;
  max-height: 260px;
  overflow-y: auto;
} */
.boxscore-main {
  max-width: 1150px;
  margin: 2.5em auto 2em auto;
  background: #19191c;
  border-radius: 18px;
  padding: 2em 2em 1.5em 2em;
  box-shadow: 0 4px 24px #0009;
}
.boxscore-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 0.5em;
  padding-top: 6px;
  font-size: 1.55em;
}
.team-logo-lg {
  height: 58px;
  width: 58px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px #0005;
  margin: 0 5px;
  object-fit: contain;
}
.team-abbr-lg {
  font-size: 1.18em;
  color: #e7e8fd;
  font-weight: 800;
  min-width: 65px;
  text-align: center;
  letter-spacing: 2px;
}
.score-lg {
  font-size: 2.4em;
  color: #ffffff;
  font-weight: 900;
  min-width: 44px;
  text-align: center;
}
.vs-lg {
  font-size: 1.2em;
  color: #8b8b99;
  font-weight: bold;
  margin: 0 10px;
}
.boxscore-meta, .boxscore-umpires, .boxscore-broadcasts {
  text-align: center;
  color: #b7bbc7;
  font-size: 1.05em;
  margin-bottom: 0.5em;
  margin-top: 0.1em;
}
.boxscore-meta span,
.boxscore-umpires span,
.boxscore-broadcasts span {
  margin: 0 6px;
  display: inline-block;
}
.boxscore-pitchers {
  margin: 1.2em 0 1em 0;
  text-align: center;
  color: #e4eaff;
  font-size: 1.08em;
  font-weight: 600;
  letter-spacing: 1px;
}
.boxscore-pitchers span {
  margin: 0 10px;
}
.boxscore-table {
  width: 100%;
  margin: 1.4em 0;
  border-collapse: collapse;
  font-size: 1.14em;
  background: #232336;
  color: #fff;
  box-shadow: 0 2px 16px #0007;
  border-radius: 12px;
  overflow: hidden;
}
.boxscore-table th,
.boxscore-table td {
  padding: 0.7em 1em;
  border-bottom: 1px solid #242435;
  text-align: center;
}
.boxscore-table th {
  background: #2e2e4a;
  font-weight: bold;
  letter-spacing: 1px;
  color: #f7f8fe;
}
.boxscore-table tr:last-child td {
  border-bottom: none;
}
/* Play-by-play styling */
.play-by-play {
  margin-top: 1.5em;
  background: #18181b;
  border-radius: 10px;
  padding: 1em 1.2em;
  box-shadow: 0 2px 10px #0003;
  /* DO NOT set overflow or max-height here */
}
.play-by-play h3 {
  color: #a366ff;
  font-size: 1.1em;
  font-weight: 800;
  margin-bottom: 0.3em;
}
.play-by-play ul {
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
}
.play-by-play li {
  border-bottom: 1px solid #222;
  padding: 0.42em 0;
  font-size: 1.03em;
  color: #dde0f5;
}
.play-by-play li:last-child {
  border-bottom: none;
}
/* Optional: Custom scrollbar for Webkit browsers (Chrome, Edge, Safari) */
.play-by-play ul::-webkit-scrollbar {
  width: 8px;
  background: #232340;
  border-radius: 4px;
}
.play-by-play ul::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}
/* Optional: Custom scrollbar for Firefox */
.play-by-play ul {
  scrollbar-color: #444 #232340;
  scrollbar-width: thin;
}
/* AI summary box */
.ai-summary {
  margin: 1.5em auto 1em auto;
  background: #282840;
  color: #fff;
  padding: 1.1em 1.5em;
  border-radius: 12px;
  font-size: 1.08em;
  box-shadow: 0 2px 10px #0002;
  line-height: 1.5;
  max-width: 850px;
}
.back-link {
  color: #a366ff;
  text-decoration: none;
  font-weight: 600;
  margin-top: 2.2em;
  display: inline-block;
  font-size: 1.04em;
}
.back-link:hover {
  text-decoration: underline;
  color: #f1fa8c;
}

/* ===========================
   RESPONSIVE: BOXSCORE, ANALYTICS, CALENDAR, ETC
   =========================== */
@media (max-width: 800px) {
  .boxscore-main {
    padding: 1.2em 0.5em;
  }
  .boxscore-header {
    font-size: 1.08em;
    gap: 8px;
  }
  .team-logo-lg {
    height: 38px;
    width: 38px;
  }
}
.boxscore-bottom-row {
  display: flex;
  gap: 2em;
  margin-top: 2em;
  align-items: flex-start;
}
.pitch-details {
  flex: 1 1 270px;
  background: #19191c;
  border-radius: 10px;
  padding: 1.2em;
  box-shadow: 0 2px 10px #0004;
  min-width: 260px;
  max-width: 350px;
}
.play-by-play {
  flex: 2 1 380px;
  background: #18181b;
  border-radius: 10px;
  padding: 1em 1.2em;
  box-shadow: 0 2px 10px #0003;
  max-height: 260px;
  overflow-y: auto;
}
@media (max-width: 1000px) {
  .boxscore-bottom-row {
    flex-direction: column;
    gap: 1.2em;
  }
  .pitch-details, .play-by-play {
    max-width: 100%;
    min-width: 0;
  }
}
.calendar-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 16px 0 8px 0;
  background: transparent;
  gap: 16px;
}
.calendar-input {
  width: 140px;
  padding: 7px 12px;
  font-size: 1em;
  border-radius: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
  background: #212121;
  color: #fff;
  margin-right: 10px;
}
.date-btn {
  background: #1751a6;
  color: #fff;
  border: none;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 1em;
  cursor: pointer;
}
.flatpickr-calendar {
  font-family: inherit;
  background: #222;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 32px #0007;
}
.flatpickr-day.selected, .flatpickr-day.today {
  background: #1751a6;
  color: #fff;
}
.flatpickr-months .flatpickr-prev-month, .flatpickr-months .flatpickr-next-month {
  color: #1751a6 !important;
}
@media (max-width: 600px) {
  .calendar-bar { flex-direction: column; gap: 10px; }
  .calendar-input { width: 100%; }
}
.scores-cards-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.1em 1.4em;
  margin-top: 1.3em;
  margin-bottom: 2.5em;
  width: 100%;
}
@media (max-width: 800px) {
  .scores-cards-list {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}

/* ===========================
   ANALYTICS & LINEUP TABLES
   =========================== */
.analytics-main { max-width: 1150px; margin: 2em auto; background: #18181b; border-radius: 16px; padding: 2em 2.5em; box-shadow: 0 6px 32px #000b;}
.analytics-header { font-size: 2em; color: #a366ff; font-weight: 900; margin-bottom: 0.6em;}
.analytics-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5em; margin-bottom: 2em;}
.analytics-card { background: #232323; border-radius: 12px; box-shadow: 0 2px 8px #0008; padding: 1em 1.5em; cursor: pointer; width: 220px; transition: box-shadow 0.16s; }
.analytics-card:hover { box-shadow: 0 8px 30px #000a; }
.analytics-card .logos { display: flex; align-items: center; gap: 1em; }
.analytics-card .team-logo-mini { width: 36px; height: 36px; background: #fff; border-radius: 9px; }
.analytics-card .matchup { font-size: 1.05em; font-weight: 700; margin: 0.5em 0 0.2em 0; color: #e7e8fd;}
.analytics-card .game-time { color: #aabbee; font-size: 0.97em; margin-bottom: 0.7em;}
.game-details-panel { background: #222236; border-radius: 12px; box-shadow: 0 2px 16px #000a; padding: 2em; margin-bottom: 2em;}
.umpires-list { margin-bottom: 1.3em; color: #f3ffb6; font-size: 1.1em;}
.players-section { display: flex; gap: 2em;}
.players-list { flex: 1; }
.players-list h4 { color: #a366ff; margin-bottom: 0.5em;}
.player-btn { background: #18181b; border: 1.5px solid #a366ff; color: #a366ff; border-radius: 7px; font-weight: 600; padding: 0.5em 1em; margin: 0.27em 0; width: 100%; text-align: left; cursor: pointer; transition: background 0.13s, color 0.13s;}
.player-btn:hover { background: #a366ff; color: #fff; }
#player-chart-section { margin-top: 2.3em; background: #232340; border-radius: 12px; box-shadow: 0 2px 18px #0007; padding: 2em 2em;}
#player-chart-title { color: #50fa7b; font-size: 1.1em; margin-bottom: 1.2em;}
@media (max-width: 1100px) {
  .analytics-cards {grid-template-columns: repeat(2,1fr);}
  .analytics-main { padding: 1em; }
  .game-details-panel { padding: 1em; }
  .players-section { flex-direction: column; gap: 1em;}
}
@media (max-width: 700px) {
  .analytics-cards { grid-template-columns: 1fr;}
}

/* Lineup Table Styles (with dark background for modal/panel) */
.lineup-table {
  width: 100%;
  background: #19192a;
  border-collapse: collapse;
  font-size: 1em;
  color: #fff;
  margin: 1.3em 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px #0002;
}
.lineup-table th,
.lineup-table td {
  padding: 0.45em 0.75em;
  border-bottom: 1px solid #eee;
  text-align: left;
  font-size: 1em;
}
.lineup-table th {
  color: #8ad5f7;
  background: #212133;
  font-weight: bold;
  letter-spacing: 0.5px;
}
.lineup-table td {
  color: #fff;
}
.lineup-table tr:last-child td {
  border-bottom: none;
}
.player-link {
  color: #1760d1;
  text-decoration: none;
  font-weight: 600;
}
.player-link:hover {
  text-decoration: underline;
  color: #d11124;
}
.lineup-table .player-link {
  color: #a366ff;
}
.lineup-table .player-link:hover {
  text-decoration: underline;
  color: #50fa7b;
}
.pos {
  font-size: 0.92em;
  color: #bbb;
  margin-left: 4px;
  font-weight: 400;
}
.lineup-table {
  overflow-x: auto;
  display: block;
  width: 100%;
}
@media (max-width: 850px) {
  .lineup-table {
    font-size: 0.97em;
    padding: 0.15em 0.2em;
  }
}

/* ===========================
   BUZZING SECTION (NEWS, SOCIAL)
   =========================== */
.buzzing-section {
  margin: 2rem 0 1.5rem 0;
  background: #19191c;
  border-radius: 1.5rem;
  box-shadow: 0 2px 14px #0007;
  padding: 1.5rem 1rem 1rem 1rem;
  position: relative;
}
.buzzing-title {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-transform: uppercase;
}
.buzzing-carousel {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  scroll-behavior: smooth;
  padding-bottom: 0.5rem;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.buzz-card {
  padding: 14px 18px 10px 18px;
  border-radius: 18px;
  background: #202225;
  box-shadow: 0 2px 8px #0002;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  max-width: 200px;
  /* min-height: 340px; */
  justify-content: flex-start;
  position: relative;
}
.buzz-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  width: 100%;
}
.buzz-brand, .buzz-time {
  font-size: 0.93rem;
  color: #bcbcbc;
  margin-right: 8px;
  margin-top: 6px;
}
.buzz-content {
  font-weight: bold;
  font-size: 1.18rem;
  color: #ffffff;
  margin: 0 0 8px 0;
  line-height: 1.18;
  text-decoration: none;
  white-space: normal; /* allow wrap */
  overflow-wrap: break-word;
}

.buzz-link {
  margin-left: auto;
  font-size: 1rem;
  font-weight: 500;
  color: #a366ff;
  text-decoration: none;
  white-space: nowrap;
}
.buzz-link a {
  color: #a366ff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.16s;
}
.buzz-link:hover {
  text-decoration: none;
}
.buzz-arrow {
  position: absolute;
  top: 54px;
  width: 40px;
  height: 40px;
  background: #19191c;
  border: none;
  color: #fff;
  font-size: 2em;
  border-radius: 50%;
  box-shadow: 0 2px 12px #0006;
  cursor: pointer;
  z-index: 10;
  transition: background 0.12s;
}
.buzz-arrow-left { left: 5px; }
.buzz-arrow-right { right: 5px; }
.buzz-arrow:hover { background: #2b2b34; }
.buzzing-section {
    margin: 40px 0 0 0;
}
.buzzing-twitter-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.buzzing-news-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
}
.buzz-card-img {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.5rem;
}
.buzz-card-title {
  font-weight: bold;
  font-size: 1.1rem;
  color: #5844c9;
  text-decoration: none;
}
.buzz-card-title:hover {
  text-decoration: underline;
}
.buzz-card-meta {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.4rem;
  display: flex;
  gap: 0.8rem;
}
.buzz-card-summary {
  font-size: 1rem;
  color: #ccc;
  margin: 0;
}
.tldr-logo-LG{
  width: 350px;
  height: 200px;
  object-fit: contain;
} 
.buzz-logo {
  width: 52px;
  height: 52px;
  margin-right: 10px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  border: 2.5px solid #5844c9;
  background: #fff;
  /* margin-right: 2.5em; */
}

.buzz-content p {
  margin: 8px 0 0 0;
  font-size: 1.1rem;
  line-height: 1.25;
  white-space: normal;
  color: #ffffff;
;
}

/* ===========================
   TEAMS PAGE STYLES
   =========================== */

/* Body Background */
body.teams-page {
  background: repeating-linear-gradient(
    135deg,
    #18181b,
    #18181b 40px,
    #1c1c22 40px,
    #1c1c22 80px
  );
}

/* Container */
.teams-container {
  padding: 2em;
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  max-width: 1300px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .teams-container {
    padding: 1em 0.3em;
  }
}

/* Hero Section */
.teams-hero {
  color: #ffffff;
  text-align: center;
  margin-bottom: 1em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1em;
  margin-bottom: 3.5em;
}

.teams-hero img {
  width: 66px;
  opacity: 0.88;
  margin-bottom: .2em;
}

.teams-hero h1 {
  font-size: 4.5em;
  font-weight: 800;
  color:#2158ef;
  margin-bottom: .2em;
  margin-top: 0;   /* reduce this as needed */
  padding-top: 0;
}

@media (max-width: 700px) {
  .teams-hero h1 {
    font-size: 2em;
  }
}

/* Tabs */
.teams-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75em;
  margin-bottom: 0; /* <-- increase this value for more space */
}


.teams-tab-btn {
  background: transparent;
  border: 2px solid #003278;
  color: #fff;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  margin-bottom: 2.5em;
}

.teams-tab-btn:hover,
.teams-tab-btn.active {
  background-color: #003278; 
  border-color: #000;
  color: #fff;
  box-shadow: 0 0 10px rgba(192, 17, 31, 0.6);
}

@media (max-width: 700px) {
  .teams-tabs {
    gap: 0.6em;
  }
}

/* Grid Layout */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5em;
}

@media (max-width: 700px) {
  .teams-grid {
    grid-template-columns: 1fr;
    gap: 1.2em;
  }
}

/* Team Card */
.team-card {
  background: #232323;
  border-radius: 16px;
  box-shadow: 0 2px 22px #0007;
  padding: 2.1em 1.3em 1.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s, box-shadow 0.16s;
  position: relative;
  overflow: hidden;
  min-height: 200px;
}

.team-card:hover {
  transform: scale(1.045) translateY(-5px);
  box-shadow: 0 8px 40px #003278, 0 3px 24px #000b;
  z-index: 10;
}

/* Logo */
.team-logo-teamsPage  {
  width: 75px;
  height: 75px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 12px #0005;
  margin-bottom: 1em;
  border: 2px solid #000;
}
/* .team-name  */
/* Team Name */
.team-card {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.22em;
  color: #fff;
  letter-spacing: 1.1px;
  margin-bottom: 0.25em;
  text-align: center;
}

/* Division */
.team-division {
  font-size: 1.2em;
  font-weight: 600;
  color: #C0111F;
  margin-bottom: 0.6em;
}

/* Team Link */
.team-card a {
  display: inline-block;
  padding: 0.4em 0.8em;
  background-color: #003278;
  color: #fff;
  text-decoration: none;
  font-size: 0.95em;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.team-card a:hover {
  background-color: #C0111F;
}


/* ===========================
   END OF FILE
   =========================== */
/* ===== NEWS PAGE (Newspaper Layout) ===== */
body.news-page
{
    background: #f2f2f2;
    font-family:Georgia, 'Times New Roman', Times, serif;
    color: #232323;
    margin: 0;
    padding: 0;
}

.news-header {
    display: flex;
    align-items: center;
    border-bottom: 4px solid #275ba1;
    background: #fff;
    padding: 1.2em 2em 1em 2em;
}

.news-header-left {
    flex: 0 0 auto;
}
.news-header-right {
    flex: 0 0 auto;
}
.news-nav-link {
    color: #275ba1;
    text-decoration: none;
    font-size: 1.14em;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    font-weight: 700;
    letter-spacing: .5px;
    opacity: 0.82;
    padding: 0.2em 0.3em;
    border-radius: 5px;
    transition: background 0.17s, color 0.17s, opacity 0.17s;
    margin-left: 3em;
}
.news-logo {
    width: 260px;
    height: 140px;
    /* border-radius: 50%;  */
    /* border: 2px solid #275ba1; */
    /* background: #fff; */
    /* margin-right: 2.5em; */
}

.news-header-main {
    flex: 1 1 auto;
    text-align: left;
}

.news-title {
    font-family: 'Montserrat', 'Impact', sans-serif;
    font-size: 7.4em;
    color: #21529b;;
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-left: 10px;
}
.news-date {
    color: #555;
    font-size: 0.8em;
    margin-top: 0.2em;
    font-style: italic;
    margin-left: 20px;
}

/* ----- LAYOUT ----- */
.news-main-layout {
    display: flex;
    max-width: 1280px;
    margin: 1.5em auto 0 auto;
    gap: 2.5em;
    min-height: 900px;
    background: repeating-linear-gradient(
        135deg,
        #18181b,
        #18181b 40px,
        #1c1c22 40px,
        #1c1c22 80px);
}

/* LEFT COLUMN: Feature + News */
.news-main-column {
    flex: 2.1;
    display: flex;
    flex-direction: column;
    gap: 2.5em;
}

/* Main AI Stories */
.main-story {
    background: #fafaff;
    border: 1.5px solid #dadada;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
    padding: 2em 2em 1.5em 2em;
    border-radius: 7px;
    margin-bottom: 0.5em;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
}

.secondary-story {
    margin-top: -1.3em;
    background: #fafaff;
    font-family: 'Georgia', 'Times New Roman', Times, serif;
}

.main-story-title {
    font-family: 'Montserrat', 'Impact', sans-serif;
    font-size: 2.0em;
    margin: 0 0 0.5em 0;
    color: #21529b;
    font-weight: 500;
}
.main-story-title a {
    text-decoration: none;
    color: inherit;  /* so it stays same color as .main-story-title */
}

.main-story-meta {
    color: #888;
    font-size: 1em;
    margin-bottom: 0.8em;
    border-bottom: 1.5px solid #ddd;
    padding-bottom: 0.4em;
}
.landscape-image,
.opinion-image-portrait {
    border: 2px solid #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border-radius: 6px; /* Remove if you want sharp corners */
    background: #fff;   /* Optional: for cleaner look if images have transparency */
}

.main-story-image {
    width: 98%;
    max-height: 230px;
    object-fit: cover;
    margin: 0.9em 0 1em 0;
    border-radius: 5px;
    border: 1.5px solid #eee;
}
.main-story-body {
    font-size: 1.16em;
    line-height: 1.58;
    margin: 0.3em 0 0 0;
    
}
.main-story-body:first-letter {
    float: left;
    font-size: 5.25em;         /* 2.25em looks natural with 1.16em base */
    line-height: 0.95;
    font-weight: bold;
    margin-right: 0.17em;
    margin-top: 1px;
    color: #000000;            /* matches your style, or tweak as needed */
    font-family: 'Georgia', 'Times New Roman', Times, serif;
    letter-spacing: 0.01em;
}

/* RSS News Below */
.news-rss-column {
    margin-top: 0.4em;
}
.rss-section-title {
    color: #4068b5;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.22em;
    margin-bottom: 0.3em;
    border-bottom: 2px solid #4068b5;
    width: fit-content;
}
.rss-news-card {
    background: #fff;
    border: 1px solid #e3e3e3;
    margin-bottom: 1.1em;
    border-radius: 5px;
    padding: 1em 1.5em;
    display: flex;
    align-items: flex-start;
    gap: 1.25em;
}
.rss-news-title {
    font-size: 1.06em;
    font-weight: bold;
    margin: 0 0 0.16em 0;
    color: #182c49;
}
.rss-news-title a {
    text-decoration: none;
}
.rss-news-image {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1em;
    border: 1px solid #e3e3e3;
}
.rss-news-summary {
    margin: 0.08em 0 0.2em 0;
    font-size: 1em;
    color: #333;
}
.rss-news-meta {
    color: #aaa;
    font-size: 0.97em;
    margin-bottom: 0.1em;
}

/* RIGHT SIDEBAR */
.news-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.opinion-column,
.opinion-article {
    margin-bottom: 0 !important;   /* or 0, or as low as you want */
    padding-bottom: 0 !important;
}
.classifieds-container, 
.top-news-section {
    margin-top: 0 !important;   /* Or less */
    padding-top: 0 !important;
}

/* OPINION */
.opinion-column {
    background: #fffefa;
    border: 1.5px solid #f4e4cc;
    border-radius: 7px;
    padding: 1.25em 1.5em 1.1em 1.5em;
    box-shadow: 0 2px 9px rgba(180,130,80,0.06);
}
.opinion-image-portrait {
    width: 100px;      /* or whatever fits your layout */
    height: 160px;     /* taller than wide */
    object-fit: cover; /* crops the image to fit the box */
    float: left;
    margin-right: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 4px #aaa;
}
.landscape-image {
    width: 400px;           /* Half the typical width of a full card, adjust as needed */
    height: 200px;           /* About half the height, keeping it landscape (2:1 ratio) */
    object-fit: cover;      /* Crops/fits nicely */
    float: left;
    margin-right: 16px;
    border-radius: 8px;
    box-shadow: 0 1px 4px #aaa;
}

.opinion-label {
    font-size: 1.5em;
    font-family: 'Montserrat', sans-serif;
    color: #be7422;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.2em;
    letter-spacing: 0.04em;
}
.opinion-title {
    font-size: 1.18em;
    font-weight: 700;
    margin: 0 0 0.3em 0;
    color: #21529b;
}
.opinion-title a {
    text-decoration: none;
    color: inherit;  /* so it stays same color as .main-story-title */
}

.opinion-byline {
    color: #ab7e44;
    font-size: 0.96em;
    margin-bottom: 0.4em;
}
.opinion-image {
    width: 100%;
    max-height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 0.7em;
    border: 1px solid #ffe0b3;
}
.opinion-body {
    font-size: 1.03em;
    color: #563c15;
    line-height: 1.6;
    margin: 0;
}
.opinion-body:first-letter {
    float: left;
    font-size: 3.25em;         /* 2.25em looks natural with 1.16em base */
    line-height: 0.95;
    font-weight: bold;
    margin-right: 0.17em;
    margin-top: 1px;
    color: #be7422;            /* matches your style, or tweak as needed */
    font-family: Georgia, serif;
    letter-spacing: 0.01em;
}


/* TOP NEWS CARDS */
.top-news-section {
    margin-top: 1em;
}
.top-news-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: bold;
    color: #18336d;
    border-bottom: 2px solid #4068b5;
    width: fit-content;
    margin-bottom: 0.7em;
}
/* .top-news-card {
    background: #f4f7ff;
    border: 1.3px solid #bdd3fa;
    border-radius: 5px;
    margin-bottom: 1.1em;
    padding: 0.75em 1em;
    box-shadow: 0 1px 4px rgba(20,70,190,0.04);
}
.top-news-card h4 {
    margin: 0 0 0.18em 0;
    font-size: 1em;
}
.top-news-card a {
    text-decoration: none;
}
.top-news-image {
    width: 100%;
    max-height: 70px;
    object-fit: cover;
    border-radius: 3px;
    margin: 0.22em 0 0.35em 0;
}
.top-news-meta {
    color: #7fa5d5;
    font-size: 0.96em;
    margin-bottom: 0.15em;
} */

/* FOOTER */
.news-footer {
    text-align: center;
    margin: 2.4em 0 1em 0;
    font-size: 1em;
    color: #657;
    background: #fff;
    padding: 1em 0 0.5em 0;
    border-top: 2px solid #d3d3e3;
}

.no-games-message {
  background: #232323;
  border-radius: 14px;
  box-shadow: 0 2px 12px #0005;
  padding: 1.25em 1.5em;
  min-width: 300px;
  margin-right: 18px;
  margin-bottom: 1em;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: transform 0.18s, box-shadow 0.18s;
}

.news-ticker-bar {
    width: auto;
    background: #19191b;
    overflow: hidden;
    border-bottom: 2px solid #003278;
    position: relative;
    height: 38px;
    display: flex;
    align-items: center;
}

.ticker-label {
    position: relative;
    z-index: 2;
    min-width: 130px;
    height: 38px;
    background: linear-gradient(90deg, #003278 60%, #191929 100%);
    /* background: #e62c2d; */
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    /* Slant effect */
    /* transform: skew(-20deg); */
    margin-right: 14px;
    box-shadow: 2px 0 8px 0 rgba(0,0,0,0.07);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
    padding: 0 24px 0 18px;
}

.news-ticker {
    display: flex;
    align-items: center;
    height: 38px;
    white-space: nowrap;
    animation: tickerScroll 250s linear infinite;
    will-change: transform;
}

.ticker-item {
    margin-right: 0;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
}
.ticker-item a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.ticker-item a:hover {
    color: #C0111F;  /* Optional: change color on hover */
}

.ticker-separator {
  margin: 0 2.5em;
  color: #fff;
  font-weight: bold;
  font-size: 1.15em;
  opacity: 0.85;
}
.ticker-label .rss-icon {
    vertical-align: middle;
    margin-right: 0.5em;
    margin-bottom: 1.5px;
    filter: drop-shadow(0 0 2px #fff);
    /* Adjust size and spacing as needed */
}
@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
/* === CARD LAYOUTS === */
.play-by-play-card,
.pitch-by-pitch-card {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 32px auto;
  background: #181828;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px #0002;
}

/* === CARD HEADERS === */
/* .play-by-play-card h3,
.pitch-by-pitch-card h3 {
  margin-top: 0;
  color: #e0d7ff;
  font-size: 1.2em;
  margin-bottom: 0.7em;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.play-by-play-header {
  background: #23235b;
  color: #e0d7ff;
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: -20px -20px 0 -20px;  
  padding: 16px 20px 10px 20px;
  border-radius: 12px 12px 0 0;
} *//* To stretch full width of card */
 
.team-batting-stats-row {
  display: flex;
  gap: 2.5em;
  margin: 32px 0 0 0;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.batting-card {
  background: #181828;
  border-radius: 12px;
  box-shadow: 0 2px 8px #0002;
  padding: 18px 15px 12px 15px;
  min-width: 340px;
  max-width: 540px;
  flex: 1 1 340px;
  margin-bottom: 24px;
}

.batting-card h3 {
  color: #e0d7ff;
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1.2em;
  text-align: center;
}

.batting-card table {
  width: 100%;
  border-collapse: collapse;
  color: #f8f8ff;
  font-size: 1em;
  margin: 0;
  background: transparent;
}
.batting-card th, .batting-card td {
  padding: 0.42em 0.22em;
  text-align: center;
  border-bottom: 1px solid #23235b;
}
.batting-card th {
  background: #23235b;
  color: #d9cfff;
  font-weight: 700;
  font-size: 1.04em;
}
.batting-card tr:last-child td {
  border-bottom: none;
}

/* === PLAY-BY-PLAY LIST & SCROLL === */
.play-by-play-scroll {
  max-height: 220px; /* Adjust as needed */
  overflow-y: auto;
  width: 100%;
  padding-right: 6px; /* prevents text under scrollbar */
}
.play-by-play-scroll ul {
  margin: 0;
  padding: 0 0.8em 0 1.2em;
  list-style-type: disc;
  color: #f8f8ff;
  font-size: 1.04em;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
}
.play-by-play-scroll li {
  color: #f8f8ff;
  padding: 0.18em 0.2em;
  font-size: 1em;
  border-bottom: 1px solid #222;
  margin-bottom: 0.4em;
  line-height: 1.55;
}
.play-by-play-scroll li:last-child {
  border-bottom: none;
}

/* Play-by-Play custom scrollbar */
.play-by-play-scroll::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}
.play-by-play-scroll::-webkit-scrollbar-thumb {
  background: #292954;
  border-radius: 4px;
}

/* === PITCH-BY-PITCH TABLE & SCROLL === */
.pitch-by-pitch-scroll {
  max-height: 340px;   /* Adjust as needed */
  overflow-y: auto;
  width: 100%;
}
.pitch-by-pitch-scroll::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}
.pitch-by-pitch-scroll::-webkit-scrollbar-thumb {
  background: #292954;
  border-radius: 4px;
}

/* === PITCH-BY-PITCH TABLE === */
#pitch-by-pitch-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  background: transparent;
  color: #f8f8ff;
  border-radius: 14px;
  box-shadow: 0 1px 8px #0004;
  margin-bottom: 0.5em;
  table-layout: auto;
  word-break: break-word;
}
#pitch-by-pitch-table thead tr {
  background: #151566;
}
#pitch-by-pitch-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #131358;
}
#pitch-by-pitch-table th,
#pitch-by-pitch-table td {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  padding: 0.52em 0.48em;
  text-align: center;
  border-bottom: 1px solid #13134b;
  font-size: 0.97em;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  max-width: none;
}
#pitch-by-pitch-table th {
  color: #d9cfff;
  font-weight: 700;
  font-size: 1.05em;
  border-bottom: 2px solid #151569;
  letter-spacing: 0.5px;
}
#pitch-by-pitch-table tbody tr:last-child td {
  border-bottom: none;
}
#pitch-by-pitch-table tr:hover td {
  background: #121263;
}

/* === LOADING TEXT === */
#pitch-by-pitch-loading {
  margin-top: 0.7em;
  font-size: 1.04em;
  color: #a09ec0;
}
/* === Pitching Card === */
.team-pitching-card {
  background: #181828;
  border-radius: 10px;
  margin-bottom: 1.4em;
  padding: 1.2em;
  box-shadow: 0 2px 8px #0002;
  width: 100%;
  max-width: 540px;
}
.team-pitching-card h3 {
  font-size: 1.15em;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #8ad5f7;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.team-pitching-card .mini-logo {
  width: 28px;
  vertical-align: middle;
}
.team-pitching-table {
  width: 100%;
  border-collapse: collapse;
  background: #19192a;
  color: #fff;
}
.team-pitching-table th,
.team-pitching-table td {
  padding: 0.4em 0.55em;
  border-bottom: 1px solid #222235;
  text-align: center;
  font-size: 0.99em;
}
.team-pitching-table th {
  color: #8ad5f7;
  background: #23235b;
  font-weight: 700;
  font-size: 1em;
}
.team-pitching-table tr:last-child td {
  border-bottom: none;
}
.team-pitching-table .decision {
  font-size: 0.92em;
  color: #c9c9ee;
}
.team-pitching-table .team-total td {
  font-weight: 700;
  color: #fff;
  background: #181828;
}
.team-pitching-row {
  display: flex;
  gap: 2em;
  justify-content: center;
  margin-top: 1.4em;
  flex-wrap: wrap;
}
.team-stats-row {
  display: flex;
  flex-direction: row;
  gap: 2.5em;
  margin: 1.5em 0;
  justify-content: center;
}

.team-stats-col {
  flex: 1 1 0px;
  min-width: 330px;
}

.team-stats-col h3 {
  color: #a366ff;
  font-size: 1.13em;
  font-weight: 700;
  margin-bottom: 0.3em;
  margin-top: 1.2em;
}

.team-stats-col table {
  width: 100%;
  border-radius: 10px;
  background: #19192a;
  color: #fff;
  margin-bottom: 0.4em;
}
.team-stats-col th,
.team-stats-col td {
  padding: 0.45em 0.65em;
  border-bottom: 1px solid #222235;
  font-size: 1em;
  text-align: center;
}
.team-stats-col th {
  color: #8ad5f7;
  background: #212133;
  font-weight: 700;
  font-size: 1.01em;
}
.team-stats-col tr:last-child td {
  border-bottom: none;
}
.classifieds-container {
  background: #fff;
  border: 3px double #222;
  border-radius: 10px;
  max-width: 650px;
  margin: 2.5em auto 2em auto;
  box-shadow: 0 2px 12px #0002;
  padding: 0.5em 1.3em 1.2em 1.3em;
}

.top-news-header {
  width: 100%;
  background: #fff;
  color: #222;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2.2em;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 3px double #111;
  margin-bottom: 1.2em;
  padding: 0.3em 0 0.25em 0;
  border-radius: 2px 2px 0 0;
}

.top-news-card {
  background: #f6f8fb;
  border: 1.5px solid #bdbdbd;
  border-radius: 6px;
  padding: 0.7em 0.85em 0.55em 0.85em;
  margin-bottom: 1.1em;
  box-shadow: 0 1px 2.5px #2222;
}


.top-news-card:last-child {
  border-bottom: none;
}

.top-news-card h4 {
  margin: 0 0 0.3em 0;
  font-family: 'Georgia', serif;
  font-size: 1.08em;
  font-weight: 700;
  color: #222;
}

.top-news-card h4 a {
  text-decoration: none;
  color: #222;
}

.top-news-card h4 a:hover {
  text-decoration: none;
  color: #631fd4;
}

.top-news-meta {
  font-size: 0.9em;
  color: #8c8c8c;
}

.top-news-image {
  display: block;
  max-width: 80%;
  margin: 0.5em auto 0.7em auto;
  border-radius: 5px;
  box-shadow: 0 1px 5px #0001;
  color: #ffe99a;
  text-decoration: none;
  font-size: 1.1em;
  line-height: 1.25;
}
.top-news-image p a:hover {
  text-decoration: none;
  color: #631fd4;
}
.mlb-newswire-container {
    width: 100%;
    max-width: 1100px;
    margin: 3em auto 0 auto;
    background: #f8f8fa;
    border-radius: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border: 3px solid #23232b;
    padding: 2em 1.5em 1.5em 1.5em;
}

.mlb-newswire-header {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 2.3em;
    font-weight: 800;
    text-align: center;
    color: #23232b;
    letter-spacing: 0.08em;
    margin: 0 0 1.1em 0;
    border-bottom: 2px solid #4a4a58;
    padding-bottom: 0.2em;
}

.mlb-news-cards {
    display: flex;
    flex-direction: column;
    gap: 1.3em;
}

.mlb-news-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(30,30,40,0.11);
    padding: 1em 1.6em;
    border: 1px solid #e0e0eb;
    min-height: 80px;
    /* Optional for max-width, otherwise full width of parent */
}

.mlb-news-headline {
    flex: 1.2;
    font-family: 'Merriweather', 'Georgia', serif;
    font-size: 1.12em;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding-right: 1.2em;
    border-right: 2px solid #ececf0;
    color: #2a2470;
}

.mlb-news-headline a {
    text-decoration: none;
    color: #2a2470;
    transition: color 0.18s;
}
.mlb-news-headline a:hover {
    color: #7a4df7;
    text-decoration: underline;
}

.mlb-news-summary {
    flex: 1.6;
    font-family: 'Georgia', serif;
    font-size: 1.04em;
    color: #33313e;
    display: flex;
    align-items: center;
    padding-left: 1.2em;
}

@media (max-width: 700px) {
    .mlb-news-card {
        flex-direction: column;
        padding: 1em;
    }
    .mlb-news-headline, .mlb-news-summary {
        padding: 0;
        border: none;
    }
}

/* ====== STANDINGS ======= */
.standings-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2em;
    background: #fff;
}
.standings-table th, .standings-table td {
    border: 1px solid #ddd;
    padding: 0.5em 1em;
    text-align: center;
}
.standings-table th {
    background: #182c49;
    color: #fff;
    font-weight: bold;
}
.standings-logo {
    height: 1.5em;
    vertical-align: middle;
    margin-right: 0.4em;
}
.division-header {
    margin-top: 2em;
    font-size: 1.25em;
    color: #182c49;
    text-align: left;
}
/* body {
  background: #f6f8fa;
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0; padding: 0;
  color: #252525;
} */
 
.standings-container {
  max-width: 1100px;
  margin: 32px auto 42px auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px rgba(34,54,99,0.13);
  padding: 0 24px 36px 24px;
}
.standings-hero {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  margin-bottom: 12px;
}
.standings-hero img {
  width: 62px; height: 62px;
}
.standings-hero h1 {
  font-size: 2.2em;
  color: #263e7c;
  margin: 0;
  font-weight: 900;
  letter-spacing: 1px;
}
.standings-tabs {
  display: flex;
  gap: 0.9em;
  margin-bottom: 1.4em;
  margin-top: 1em;
  flex-wrap: wrap;
  border-bottom: 2px solid #f1f3f6;
}
.standings-tab-btn {
  background: none;
  border: none;
  outline: none;
  font-size: 1.13em;
  font-weight: 700;
  color: #8990a6;
  padding: 12px 22px 10px 22px;
  border-radius: 16px 16px 0 0;
  transition: all 0.13s;
  cursor: pointer;
  margin-right: 6px;
}
.standings-tab-btn.active, .standings-tab-btn:hover {
  background: #24345d;
  color: #fff;
}
.standings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 30px 22px;
  margin-bottom: 2.4em;
  margin-top: 0.7em;
}
.standing-card {
  background: linear-gradient(90deg, #0c0b0b 35%, #070742 100%);  
  border-radius: 18px;
  box-shadow: 0 3px 4px rgba(40,54,89,0.10);
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-height: 134px;
  transition: box-shadow .16s;
}
.standing-card:hover {
  /* box-shadow: 0 8px 22px rgba(34,54,99,0.17); */
  box-shadow: 0 0 10px rgba(192, 17, 31, 0.6);
}
.team-header-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 14px;
  width: 100%;
}
.team-logo {
  width: 45px; height: 45px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #d7e0ef;
  margin-right: 0;
}
.team-title-box {
  display: flex; flex-direction: column;
  justify-content: center;
}
.team-name {
  font-weight: 700;
  font-size: 1.18em;
  color: #ffffff;
  margin-bottom: 0.2em;
}
.team-rank {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.24em;
  color: #ffffff;
  font-weight: 700;
  opacity: 0.86;
}
.card-row {
  font-size: 1.08em;
  color: #434d6b;
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-bottom: 5px;
}
.stat-label { color: #8ba0b6; font-size: 0.97em; margin-right: 2px; }
.run-diff-plus { color: #15bb64; font-weight: bold; }
.run-diff-minus { color: #d93d3d; font-weight: bold; }
.run-diff-zero { color: #bbbbbb; font-weight: bold; }
.division-block {
  margin-top: 18px;
}
.division-label {
  /* margin-top: 12px; */
  margin-bottom: 2px;
  color: #696969;
  font-size: 5em;
  font-weight: 900;
  letter-spacing: 1px;
}
.standings-table, .standings-table-all {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2.2em;
  font-size: 1.09em;
  background: #fff;
}
.standings-table th, .standings-table td,
.standings-table-all th, .standings-table-all td {
  padding: 7px 13px;
  text-align: left;
  border-bottom: 1px solid #e6e8f0;
  font-weight: 600;
  white-space: nowrap;
}
.standings-table th, .standings-table-all th {
  color: #888eb2;
  font-size: 0.97em;
  font-weight: 800;
  letter-spacing: 1px;
  background: #f8f9fa;
  border-bottom: 2px solid #e3e5ef;
  text-align: left;
}
.standings-table td, .standings-table-all td {
  background: #fff;
  font-weight: 500;
  color: #1d2439;
}
.standings-table img.team-logo,
.standings-table-all img.team-logo {
  width: 28px; height: 28px;
  vertical-align: middle;
  margin-right: 6px;
  background: #fff;
  border-radius: 50%;
  border: 1.5px solid #e1e4ed;
}
.team-row { transition: background 0.13s;}
.team-row:nth-child(even) { background: #fafbfc;}
.team-row:hover { background: #f0f6ff;}
.division-table-header {
  background: #f4f4f8;
  font-weight: 900;
  font-size: 1.12em;
  color: #45529c;
  letter-spacing: 1.5px;
}
@media (max-width: 950px) {
  .standings-container { padding: 0 4px 16px 4px; }
  .standings-hero h1 { font-size: 1.25em; }
  .standing-card { padding: 15px 8px 14px 8px; min-height: 108px;}
  .team-logo { width: 32px; height: 32px;}
  .standings-table th, .standings-table td,
  .standings-table-all th, .standings-table-all td { padding: 5px 4px 5px 4px; font-size:0.96em;}
}


/* ---- ABOUT PAGE STYLES ---- */
 .about-page {
    background: #000000;
    color: #8ba0b6;
    min-height: 100vh;
    font-family: 'Segoe UI', 'Arial', sans-serif;
}

.main-header,
.main-footer {
    background: #000000;
    color: #fff;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-header .about-logo {
    height: 56px;
    margin-left: 24px;
}

.main-header .nav-main,
.main-header .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header .nav-right {
    justify-content: flex-end;
    gap: 16px;
    margin-right: 28px;
}
.main-header .nav-link {
    color: #fff;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
    margin: 0 4px;
    transition: background 0.2s;
}
.main-header .nav-link.active,
.main-header .nav-link:hover {
    background: #ff1100;
    color: #fff;
}

.about-title {
    margin: 0 0 0 30px;
    font-size: 2.1rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.about-main {
    max-width: 1100px;
    margin: 38px auto 44px auto;
    background: #232323;
    border-radius: 18px;
    box-shadow: 0 8px 36px rgba(44,56,90,0.10), 0 1.5px 7px rgba(44,56,90,0.10);
    padding: 36px 30px 40px 30px;
}

.about-section h2,
.about-section h3 {
    color: #434d6b;
    margin-top: 0;
    font-weight: bold;
}

.about-section p {
    line-height: 1.7;
    margin: 14px 0;
    font-size: 1.09rem;
}

.about-section a {
    color: #ff7f50;
    text-decoration: underline;
}

/* .contact-form {
  justify-content: center; 
    margin: 32px 0 12px 0;
    padding: 24px;
    background: #f2f5fa;
    border-radius: 12px;
    box-shadow: 0 2px 9px rgba(60, 74, 105, 0.07);
    max-width: 450px;
} */
.about-flex-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 44px;
  max-width: 1100px;
  margin: 40px auto 0 auto;
  padding: 0 24px;
}

.about-info {
  flex: 1.1 1 0;
  min-width: 260px;
  max-width: 480px;
}

.contact-form {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 430px;
  background: #fff;
  padding: 28px 34px;
  border-radius: 12px;
  box-shadow: 0 2px 10px #0002;
}

.contact-form .form-group {
  justify-content: center;
    /* width: 100%; */
    max-width: 400px;
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 7px;
    padding: 9px 12px;
    font-size: 1rem;
    background: #fff;
    color: #222;
    margin-top: 2px;
    font-family: inherit;
    transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff7f50;
    outline: none;
}

.contact-form .submit-btn {
    background: #ff7f50;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 11px 30px;
    font-size: 1.03rem;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(44,56,90,0.08);
    transition: background 0.18s;
}
.contact-form .submit-btn:hover {
    background: #e56632;
}

.about-disclaimer {
    font-size: 0.98rem;
    color: #888;
    margin-top: 18px;
    border-top: 1px solid #ececec;
    padding-top: 12px;
    font-style: italic;
    text-align: center;
}

.main-footer {
    justify-content: center;
    padding: 22px 0 12px 0;
    font-size: 1.07rem;
    background: #223055;
}
/* ############################## STATS ################ */
    /* HERO HEADER */
    .stats-hero {
      margin: 44px auto 20px auto;
      text-align: center;
    }
    .stats-hero h1 {
      font-size: 5em;
      color: #003278;
      font-weight: 900;
      margin: 0 0 10px 0;
      letter-spacing: 1.5px;
      line-height: 1.1;
    }
    .stats-hero-desc {
      color: #e6e6e6;
      font-size: 1.1em;
      margin-bottom: 0.2em;
      letter-spacing: 0.7px;
    }

    /* TABS */
    .stats-tabs {
      display: flex;
      justify-content: center;
      gap: 24px;
      margin-bottom: 36px;
    }
    .stats-tab-btn {
      background: #181c23;
      color: #fff;
      border: 2px solid #003278;
      border-radius: 9px;
      font-weight: 900;
      font-size: 1.15em;
      padding: 13px 44px 10px 44px;
      cursor: pointer;
      outline: none;
      box-shadow: 0 2px 8px #00327815;
      transition: background 0.16s, color 0.16s, border-color 0.16s;
      margin-bottom: 0;
    }
    .stats-tab-btn.active,
    .stats-tab-btn:hover {
      background: #ef2121;
      color: #fff;
      border-color: #ef2121;
      box-shadow: 0 0 14px #ef212199;
    }

    /* LEADERBOARD CARDS (main container) */
.stats-container {
  max-width: 1350px;
  margin: 0 auto 28px auto;
  padding: 0 18px;
}
.stats-category-cards {
  display: none;
  margin-top: 24px;
  width: 100%;
}
.stats-category-cards.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  min-width: 0;
}
    /* CARD STYLE */
.leaderboard-card {
  background: #111111;
  border-radius: 8px;
  box-shadow: 0 2px 6px #00000020;
  padding: 16px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  max-height: 500px;
  overflow-x: hidden;
}



.leaderboard-card:hover {
  box-shadow: 0 8px 32px #003278;
}

.stat-title {
  color: #ef2121;
  font-size: 2.1em;
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: 2px;
  text-align: center;      /* Try 'center' for balance, or 'left' for ESPN style */
  margin: 0 0 22px 0;      /* Only bottom margin */
  white-space: normal;     /* Allow wrapping */
  overflow: visible;       /* Don’t clip */
  text-overflow: unset;    /* No ellipsis */
  position: sticky;
  top: 0;
  z-index: 0;
}
.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.leader-row {
  display: flex;
  align-items: center;
  background: #151618;
  border-radius: 10px;
  padding: 4px 12px;    /* less vertical padding */
  min-height: 40px;     /* optional: slightly shorter rows */
  margin-bottom: 6px;
  box-shadow: 0 1.5px 6px #64646415;
  position: relative;
  transition: background 0.2s;
  gap: 10px;            /* less horizontal gap between elements */
}
.leader-row .rank {
  color: #ef2121;
  font-weight: 900;
  font-size: 1.5em;
  width: 36px;
  text-align: center;
  margin-right: 14px;
  flex-shrink: 0;
}
    
    /* .index-team-logo {
      width: 45px;
      height: 45px;
      background: #fff;
      border-radius: 50%;
      margin-right: 18px;
      border: 3px solid #23283c;
      object-fit: contain;
      flex-shrink: 0;
      box-shadow: 0 0.5px 2px #001a2a13;
    } */
.player-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 200px;
  min-width: 10px;
  /* margin-left: 0px; */
}
.player-name {
  font-weight: 900;
  font-size: 1em;
  color: #fff;
  display: block;
  text-shadow: 0 1.5px 3px #3a3e4b13;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
    /* .team-name-teamsPage {
      font-size: 1.5em;
      color: #c3c9d8;
      margin-top: -2px;
      display: block;
      font-weight: 500;
      letter-spacing: 0.3px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    } */
.stat-value {
  margin-left: auto;
  font-weight: 900;
  color: #fff;
  font-size: 1.5em;
  letter-spacing: 1.7px;
  text-shadow: 0 1px 2.5px #ef212129;
  flex-shrink: 0;
  min-width: 70px;
  text-align: right;
}
.leader-row:nth-child(odd) {
  background: #1c1d20;
}
@media (max-width: 1100px) {
  .stats-category-cards.active {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .stats-category-cards.active {
    grid-template-columns: 1fr;
  }
}

    /* Responsive */
    @media (max-width: 1100px) {
      .stats-category-cards {
        grid-template-columns: 1fr;
      }
      .leaderboard-card {
        min-width: 0;
        padding: 24px 8vw 18px 8vw;
      }
    }
    @media (max-width: 650px) {
      .main-header, .news-ticker-bar {
        font-size: 0.97em;
        padding-left: 3vw; padding-right: 3vw;
      } 
      .leaderboard-card {
        padding: 14px 2vw 12px 2vw;
      }
      .stat-title { font-size: 1.2em; }
    }

/* ########### RSS ################## */
  .news-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    justify-content: center;
    margin-top: 2rem;
  }
  .news-card {
    background: #232323;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px #0006;
    min-width: 300px;
    max-width: 350px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    padding: 1.1em 1.2em 1em 1.2em;
    margin-bottom: 1.8em;
    position: relative;
  }
  .news-card-source {
    font-size: 0.94em;
    color: #288aff;
    margin-bottom: 0.3em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.1px;
  }
  .news-card-title {
    font-size: 1.13em;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: bold;
    margin-bottom: 0.3em;
    color: #1751a6;
    line-height: 1.25;
  }
  .news-card-title a {
    color:  #1751a6;
    text-decoration: none;
    transition: color 0.15s;
  }
  .news-card-title a:hover {
    color:  #1751a6;
    text-decoration: none;
  }
  .news-card-summary {
    color: #d9d9d9;
    font-size: 1em;
    margin-bottom: 0.6em;
  }
  .news-card-meta {
    font-size: 0.9em;
    color: #C0111F;
  }
  .news-card-header {
    margin-bottom: 0.2em;
  }
.starburst {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 50%;
  font-weight: bold;
  color: #fff;
  /* background: radial-gradient(circle at 70% 30%, #ff0, #fc0, #e81); */
   background: radial-gradient(circle at 40% 70%, rgb(0, 4, 255), #06f, #004);
  animation: burst 1s infinite alternate;
  font-size: 1em;
  /* box-shadow: 0 0 8px #ff0, 0 0 3px #fc0; */
  /* box-shadow: 0 0 8px #004, 0 0 3 px #06f; */
  /* border: 2px solid #C0111F; */
}
@keyframes burst {
  0%   { transform: scale(.75); shadow: 0 0 10px #004;}
  100% { transform: scale(.95); shadow: 0 0 24px #06f;}

}
/* .milestone { background: radial-gradient(circle at 40% 70%, #0ff, #06f, #004); } */

