/* -------------------------------------------
   🟢 PaperWagers – Ultra-Readable LED Matrix
-------------------------------------------- */

#pw-scoreboard-section {
  position: relative;
  background: #000;
  overflow: hidden;
  height: 90px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  box-shadow: inset 0 0 20px #000;
}

/* darker grid with dim "off" LEDs visible */
#pw-scoreboard-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#002200 20%, #000 21%);
  background-size: 6px 6px; /* tighter grid */
  opacity: 1;
  z-index: 0;
}

/* bright "on" LEDs forming characters */
.pw-scoreboard {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  font-family: 'Courier New', monospace;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: transparent;
  line-height: 90px;
  background-image: radial-gradient(#00ff33 65%, transparent 40%);
  background-size: 3px 3px;
  -webkit-background-clip: text;
  background-clip: text;
  animation: pwTickerScroll 120s linear infinite, pwLedScan 2.5s infinite ease-in-out;
}


/* Optional: other color themes for variety */
.pw-game-card.red    { background-image: radial-gradient(#f33 40%, transparent 41%); }
.pw-game-card.amber  { background-image: radial-gradient(#ffb000 40%, transparent 41%); }
.pw-game-card.blue   { background-image: radial-gradient(#0ff 40%, transparent 41%); }

/* Slight “refresh line” shimmer (mimics hardware scanning) */
@keyframes pwLedScan {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15); }
}

.pw-scoreboard {
  animation: pwTickerScroll 120s linear infinite, pwLedScan 2.5s infinite ease-in-out;
}

/* Continuous leftward motion */
@keyframes pwTickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/* bright divider bars between matchups */
.pw-game-card .divider {
  color: transparent;
  background-image: radial-gradient(#00ff55 65%, transparent 66%);
  background-size: 6px 6px;
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0 10px;
}
/* sub-line (Prime Time Pot) */
.pw-game-card .sub-line {
  display: block;
  font-size: 0.8rem;
  color: #33ff33;
  opacity: 0.85;
  letter-spacing: 1px;
  margin-top: 2px;
}

.pw-game-card .sub-line a {
  color: #33ff33;
  text-decoration: none;
}

.pw-game-card .sub-line a:hover {
  text-decoration: underline;
}
.pw-game-card .prime-link {
  color: #33ff33;
  text-decoration: none;
  margin-left: 4px;
  font-size: 0.9rem;
}
.pw-game-card .prime-link:hover {
  text-decoration: underline;
}
/* ============================================
   🎯 Featured Contests Section
============================================ */


#pw-featured-wrapper {
  background: #0a0a0a;
  color: #fff;
  text-align: center;
  padding: 40px 10px;
}

.pw-section-title {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #00ff55;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pw-featured-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.pw-feature-card {
  width: 280px;
  background: #111;
  border: 2px solid #00ff55;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,255,85,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.pw-feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0,255,85,0.6);
}

.pw-feature-card h3 {
  color: #00ff55;
  margin-bottom: 10px;
}

.pw-feature-card p {
  font-size: 0.95rem;
  color: #ccc;
  min-height: 48px;
}

.pw-feature-card .pw-btn {
  display: inline-block;
  background: #00ff55;
  color: #000;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.pw-feature-card .pw-btn:hover {
  background: #22ff88;
}

/* League color accents */
.pw-feature-card.nfl { border-color: #ffcc00; box-shadow: 0 0 10px rgba(255,204,0,0.3); }
.pw-feature-card.nfl h3, .pw-feature-card.nfl .pw-btn { color: #000; background: #ffcc00; }

.pw-feature-card.nhl { border-color: #33aaff; box-shadow: 0 0 10px rgba(51,170,255,0.3); }
.pw-feature-card.nhl h3, .pw-feature-card.nhl .pw-btn { color: #000; background: #33aaff; }

.pw-feature-card.prime { border-color: #ff3366; box-shadow: 0 0 10px rgba(255,51,102,0.3); }
.pw-feature-card.prime h3, .pw-feature-card.prime .pw-btn { color: #000; background: #ff3366; }

.pw-empty {
  color: #888;
  font-style: italic;
}
.pw-feature-card.nhl.locked {
  border-color: #ff3366;
  box-shadow: 0 0 10px rgba(255,51,102,0.4);
}
.pw-feature-card.nhl.pending {
  border-color: #ffaa00;
  box-shadow: 0 0 10px rgba(255,170,0,0.4);
}
/* ============================================
   🏅 Leaderboard Section
============================================ */
#pw-leaderboard-wrapper {
  background: #000;
  color: #fff;
  padding: 50px 10px;
  text-align: center;
}

.pw-leaderboard-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 25px;
}

.pw-board {
  width: 300px;
  background: #111;
  border: 2px solid #00ff55;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0,255,85,0.3);
  padding: 20px;
  text-align: left;
}

/* Center title and make spacing consistent */
.pw-board h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  text-align: center;
}

/* Stretch list items to the edges like Prime Time */
.pw-board ol {
  width: 100%;
}

.pw-board li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #1a1a1a;
  border-radius: 6px;
  margin-bottom: 6px;
  transition: all 0.2s ease;
}
.pw-board li:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 8px rgba(0, 255, 85, 0.4);
}
.pw-board li:last-child {
  border-bottom: none;
}

.pw-board .name {
  color: #ccc;
  font-weight: 600;
}

.pw-board .score {
  color: #00ff55;
  font-weight: bold;
}

.pw-board.pickem { border-color: #ffcc00; }
.pw-board.pickem h3 { color: #ffcc00; }
.pw-board.hotstick { border-color: #33aaff; }
.pw-board.hotstick h3 { color: #33aaff; }
/* ============================================
   🟩 Leaderboard Size Match – Prime Time Pots
============================================ */
#pw-leaderboard-wrapper {
  background: #0a0a0a;
  color: #fff;
  padding: 40px 10px;
  text-align: center;
  border-top: 1px solid #111;
}

.pw-leaderboard-slider {
  max-width: 700px;       /* match Prime Time Pots width */
  width: 100%;
  background: #111;
  border-radius: 10px;
  padding: 20px 30px;
  box-shadow: 0 0 12px rgba(0, 255, 85, 0.25);
  min-height: 450px;
  display: flex;
  flex-direction: column;
  align-items: stretch;   /* stretch child boards full width */
  justify-content: space-between;
}
#pw-standings-row .leaderboards {
  background: #0a0a0a;
  border-radius: 10px;
  padding: 20px;
}
/* Stretch each leaderboard (pw-board) to fill the slider */
.pw-leaderboard-slider .pw-board {
  width: 100%;
  max-width: none;
  background: #111;
  border-radius: 10px;
  border: 2px solid #00ff55;
  box-shadow: 0 0 12px rgba(0, 255, 85, 0.35);
  padding: 20px;
}
.pw-slide {
  position: relative;              /* 🟢 was absolute */
  opacity: 0;
  transform: translateY(20px);     /* slide up a bit instead of from top-left */
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
  z-index: 0;
  height: 0;                       /* keeps container height stable */
  overflow: hidden;
}

.pw-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
  height: auto;
}


.pw-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.pw-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #444;
  cursor: pointer;
  transition: background .3s;
}

.pw-dots .dot.active {
  background: #00ff55;
}
/* ============================================
   🎨 Leaderboard Glow Accents
============================================ */
.pw-slide[data-board="pickem-season"] .pw-board {
  border-color: #ffcc00;
  box-shadow: 0 0 10px rgba(255,204,0,0.4);
}
.pw-slide[data-board="pickem-week"] .pw-board {
  border-color: #00ff55;
  box-shadow: 0 0 10px rgba(0,255,85,0.4);
}
.pw-slide[data-board="hotstick"] .pw-board {
  border-color: #33aaff;
  box-shadow: 0 0 10px rgba(51,170,255,0.4);
}

/* ============================================
   ⏳ Leaderboard Progress Bar
============================================ */
.pw-progress-bar {
  position: relative;
  height: 2px;
  width: 35%;
  background: #2b2b2b; /* darker neutral track */
  border-radius: 1px;
  overflow: hidden;
  margin: 8px auto 0;
  box-shadow: 0 0 3px rgba(255, 255, 255, 0.05); /* very subtle glow */
}
.pw-progress-bar .fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #777; /* solid neutral grey fill */
  border-radius: 1px;
  transition: width linear;
}
/* ============================================
   💰 Prime Time Pots Activity Feed
============================================ */
#pw-activity-wrapper {
  background: #0a0a0a;
  color: #fff;
  padding: 40px 10px;
  text-align: center;
  border-top: 1px solid #111;
}

.pw-activity-feed {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pw-activity-item {
  background: #111;
  border-left: 4px solid #00ff55;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeIn .5s ease;
  transition: all 0.25s ease;
  gap: 6px;
  min-height: 36px;
}

.pw-activity-item span {
  flex: 1 1 auto;
  white-space: nowrap;
}

.pw-activity-item .user   { flex-basis: 130px; text-align: left; font-weight: 600; color: #00ff55; }
.pw-activity-item .text   { flex-basis: 160px; color: #ccc; }
.pw-activity-item .pick   { flex-basis: 70px; font-weight: 700; color: #fff; text-align: left; }
.pw-activity-item .result { flex-basis: 60px; font-weight: 600; text-align: center; }
.pw-activity-item .ago    { flex-basis: 90px; font-size: 0.8rem; color: #888; text-align: right; }


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Ensure inner spans fit columns */
.pw-activity-item .user {
  font-weight: 600;
  color: #00ff55;
  text-align: left;
  white-space: nowrap;
}

.pw-activity-item .text {
  color: #ccc;
  text-align: left;
  white-space: nowrap;
}

.pw-activity-item .pick {
  font-weight: 700;
  color: #fff;
  text-align: left;
  white-space: nowrap;
}

.pw-activity-item .result {
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

/* ✅ Result colors */
.pw-activity-item.win  { border-left-color: #00ff55; }
.pw-activity-item.loss { border-left-color: #ff3366; }
.pw-activity-item.push { border-left-color: #33aaff; }

.pw-activity-item.win  .result { color: #00ff55; }
.pw-activity-item.loss .result { color: #ff3366; }
.pw-activity-item.push .result { color: #33aaff; }

.pw-activity-item .ago {
  color: #888;
  font-size: 0.8rem;
  text-align: right;
  white-space: nowrap;
}

/* ============================================
   ✨ Hover Effect – Match Game Cards
============================================ */
.pw-activity-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 12px rgba(0, 255, 85, 0.4);
}

/* Glow tint shifts by result */
.pw-activity-item.win:hover {
  box-shadow: 0 0 12px rgba(0, 255, 85, 0.5);
}

.pw-activity-item.loss:hover {
  box-shadow: 0 0 12px rgba(255, 51, 102, 0.45);
}

.pw-activity-item.push:hover {
  box-shadow: 0 0 12px rgba(51, 170, 255, 0.45);
}

/* ============================================
   🟩 Miscellaneous Board Colors
============================================ */
.pw-board.pickem h3 {
  color: #ffcc00;
}

.pw-board.hotstick h3 {
  color: #33aaff;
}

.pw-board.pickem ol li .score {
  color: #00ff55;
}

.week-label {
  font-size: 0.85rem;
  font-weight: 400;
  color: #00ff55;
  margin-left: 4px;
}
.pw-activity-item .pick {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #fff;
}

.pw-activity-item .team-logo {
  width: 26px;          /* bigger logo */
  height: 26px;
  object-fit: contain;
  border-radius: 0;      /* no rounded corners */
  background: transparent; /* remove white background */
  padding: 0;            /* remove padding so logo fills area */
  filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5)); /* optional subtle shadow for contrast */
}
.pw-activity-item:hover .team-logo {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* ============================================
   💰 Upcoming Prime Time Pots Section
============================================ */
#pw-prime-wrapper {
  background: #000;
  color: #fff;
  padding: 50px 10px;
  text-align: center;
  border-top: 1px solid #111;
}

.pw-prime-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
}

.pw-prime-card {
  width: 280px;
  background: #111;
  border: 2px solid #ff3366;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255,51,102,0.3);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pw-prime-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255,51,102,0.6);
}

.pw-prime-card h3 {
  color: #ff3366;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.pw-prime-card .pw-matchup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.pw-prime-card .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9rem;
  color: #ccc;
}

.pw-prime-card .team img {
  width: 48px;
  height: auto;
  margin-bottom: 4px;
}

.pw-prime-card .vs {
  font-weight: bold;
  color: #ff3366;
}

.pw-prime-card .meta {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 5px;
}

.pw-prime-card .pot {
  font-weight: bold;
  color: #00ff55;
  margin-bottom: 6px;
}

.pw-prime-card .seed {
  font-size: 0.85rem;
  color: #ffaa00;
  margin-bottom: 10px;
}

.pw-prime-card .pw-btn {
  display: inline-block;
  background: #ff3366;
  color: #000;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
}

.pw-prime-card .pw-btn:hover {
  background: #ff5588;
}
.pw-prime-card.today {
  border-color: #00ff55;
  box-shadow: 0 0 15px rgba(0,255,85,0.4);
}
.pw-prime-card .countdown {
  font-size: 0.9rem;
  color: #00aaff;
  margin: 6px 0 8px;
  font-weight: 600;
}
.pw-prime-card .countdown .timer {
  color: #00ffff;
  font-family: monospace;
}

/* ============================================
   💣 Force-remove Featured + Prime Wrappers
============================================ */

/* target both wrappers with very high specificity */
body #pw-homepage #pw-featured-wrapper,
body #pw-homepage #pw-prime-wrapper {
  background-color: transparent;
  background-image: none;
  border: 0;
  box-shadow: none;
  outline: 0;
  padding: 0;
  margin: 0 auto;
  max-width: 100%;
  display: block;
}


/* ============================================
   🥇 Leaderboard + Activity Side-by-Side Layout
============================================ */
#pw-standings-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2%;
  background: #000;
  padding: 40px 0;
}

#pw-standings-row .leaderboards,
#pw-standings-row .activity {
  flex: 1;
  min-width: 45%;
}

#pw-standings-row .leaderboards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-right: 20px;
}

#pw-standings-row .activity {
  background: #0a0a0a;
  border-radius: 10px;
  padding: 20px;
}

@media (max-width:800px){
  #pw-standings-row { 
    flex-direction: column; 
  }
  #pw-standings-row .leaderboards,
  #pw-standings-row .activity { 
    width: 96%; 
    margin: 0 auto 30px; 
    padding: 20px; 
  }
}

/* ============================================
   🧱 Remove section borders
============================================ */
#pw-gamecenter-section .hotstick,
#pw-gamecenter-section .primetime {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ============================================
   🟥 Restore glowing borders for matchup cards
============================================ */
.pw-feature-card.nhl,
#pw-featured-wrapper .pw-feature-card {
  border: 2px solid #33aaff !important;
  box-shadow: 0 0 12px rgba(51,170,255,0.4) !important;
  background: #111;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.25s ease;
}

.pw-feature-card.nhl:hover,
#pw-featured-wrapper .pw-feature-card:hover {
  box-shadow: 0 0 18px rgba(51,170,255,0.6) !important;
  transform: scale(1.03);
}

.pw-prime-card,
#pw-prime-wrapper .pw-prime-card {
  border: 2px solid #ff3366 !important;
  box-shadow: 0 0 12px rgba(255,51,102,0.4) !important;
  background: #111;
  border-radius: 10px;
  padding: 20px;
  transition: all 0.25s ease;
}

.pw-prime-card:hover,
#pw-prime-wrapper .pw-prime-card:hover {
  box-shadow: 0 0 20px rgba(255,51,102,0.6) !important;
  transform: scale(1.03);
}

/* ==========================================================
   🏈🏒💰 PaperWagers GameCenter — One-Row Layout (FINAL)
   ========================================================== */

#pw-gamecenter-section {
  background: #000;
  color: #fff;
  padding: 30px 0;
  text-align: center;
  overflow-x: auto;
}

#pw-gamecenter-section .pw-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: nowrap;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

#pw-gamecenter-section .pw-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  min-width: 0;
}

#pw-gamecenter-section .pw-col.pickem-col {
  flex: 2 1 0;
}

#pw-gamecenter-section .pw-col.hotstick-col {
  flex: 1 1 0;
}

#pw-gamecenter-section .pw-col.primetime-col {
  flex: 2 1 0;
}

/* --- PICK'EM CARDS (NHL + NFL side-by-side) --- SUPER STRONG OVERRIDE */
#pw-gamecenter-section .pw-pickem-block,
#pw-gamecenter-section .pickem-col .pw-pickem-block,
.pw-col.pickem-col .pw-pickem-block {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  gap: 12px !important;
  width: 100% !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  max-width: none !important;
}

/* Force both Pick'em cards to display inline */
#pw-gamecenter-section .pw-pickem-block > div,
#pw-gamecenter-section .pw-pickem-block > [id$="-pickem-card"],
#pw-nhl-pickem-card,
#pw-nfl-pickem-card {
  display: flex !important;
  flex: 1 1 0 !important;
  min-width: 200px !important;
  max-width: 280px !important;
}

/* --- HOT STICK (single card) --- */
#pw-gamecenter-section .pw-hotstick-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  justify-content: center;
}

/* --- PRIME TIME CARDS (MNF, TNF, SNF side-by-side) --- */
#pw-gamecenter-section .pw-prime-grid {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  gap: 12px !important;
  width: 100% !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
}

/* Card sizing */
#pw-gamecenter-section [id$="-pickem-card"],
#pw-gamecenter-section .pw-feature-card,
#pw-gamecenter-section .pw-prime-card {
  width: 100% !important;
  max-width: 280px !important;
  min-width: 200px !important;
  min-height: 420px !important;
  padding: 16px !important;
  background: #111 !important;
  border-radius: 10px !important;
  box-shadow: 0 0 10px rgba(255,255,255,0.15) !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  flex-shrink: 1 !important;
  font-size: 0.9rem !important;
}

/* Hot Stick card - keep it compact */
#pw-gamecenter-section .hotstick-col .pw-feature-card {
  max-width: 260px !important;
}

/* Equal width for Prime Time cards */
#pw-gamecenter-section .pw-prime-grid > * {
  flex: 1 1 0 !important;
  min-width: 200px !important;
}

#pw-gamecenter-section .pw-section-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 0 0 10px currentColor;
  white-space: nowrap;
}

#pw-homepage .pw-section-title {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

/* Divider line between columns */
#pw-gamecenter-section .pw-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 5%;
  height: 90%;
  width: 2px;
  background: linear-gradient(to bottom, #33aaff, #ff3366);
  opacity: 0.5;
  box-shadow: 0 0 8px rgba(255,51,102,0.4);
}

/* Color themes */
#pw-gamecenter-section .pickem-col .pw-section-title { color: #ffcc00; }
#pw-gamecenter-section .hotstick-col .pw-section-title { color: #33aaff; }
#pw-gamecenter-section .primetime-col .pw-section-title { color: #ff3366; }

/* Hover effects */
#pw-gamecenter-section .pw-feature-card:hover,
#pw-gamecenter-section .pw-prime-card:hover,
#pw-gamecenter-section [id$="-pickem-card"]:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(255,255,255,0.25);
  transition: all 0.25s ease;
}

/* Responsive */
@media (max-width: 1600px) {
  #pw-gamecenter-section .pw-row {
    flex-direction: column;
    align-items: center;
  }
  
  #pw-gamecenter-section .pw-col {
    max-width: 100%;
    width: 100%;
  }
  
  #pw-gamecenter-section .pw-col:not(:last-child)::after {
    display: none;
  }
}
/* 🏈🏒 Pick'em Card Styling - Add after GameCenter section */
#pw-nhl-pickem-card,
#pw-nfl-pickem-card {
  border: 2px solid #00c2ff;
  border-radius: 15px;
  padding: 22px;
  background: #0b0b0b;
  box-shadow: 0 0 12px rgba(0,194,255,0.4);
  text-align: center;
  margin: 0;
  flex: 1 1 0 !important;
  max-width: 340px !important;
  min-width: 280px !important;
}

#pw-nfl-pickem-card {
  border-color: #ffae00;
  box-shadow: 0 0 12px rgba(255,174,0,0.5);
}
/* ==========================================================
   🧩 Remove extra space above Prime Time Pots
   ========================================================== */
#pw-gamecenter-section .primetime-col .pw-section-title {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* tighten space between title and cards */
#pw-gamecenter-section .primetime-col .pw-prime-grid {
  margin-top: 4px !important; /* default was ~20px */
}
/* 🧩 Remove unwanted vertical gap above/below scoreboard */
#pw-scoreboard-section {
  margin: 0 !important;
  padding: 0 !important;
  height: auto !important; /* let content define height */
  line-height: 1.2 !important;
}

/* Tighten inner ticker spacing */
.pw-scoreboard-ticker {
  margin: 0 !important;
  padding: 6px 0 !important;
}

/* Slightly shrink game-item line height */
.pw-game-item {
  margin: 0 2rem !important;
  line-height: 1.2 !important;
}



/* 🏟️ Scoreboard perfectly tucked under Astra header */
body.home #pw-scoreboard-section {
  margin-top: 48px !important;  /* 👈 final sweet spot */
  position: relative;
  z-index: 5;
  transition: margin-top 0.3s ease;
}

/* 📱 Responsive fine-tuning */
@media (max-width: 768px) {
  body.home #pw-scoreboard-section {
    margin-top: 42px !important;
  }
}





