/* ============================================================
   Creatomatic World Cup Sweepstake 2026
   style.css
   ============================================================ */

/* ── TOKENS ── */
:root {
  --navy:    #151D36;
  --magenta: #FF438F;
  --yellow:  #FFDF5A;
  --cyan:    #6ABFB5;
  --green:   #037F37;
  --canvas:  #F6F3EA;
  --blush:   #FFDAEB;
  --white:   #ffffff;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 50px;

  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Wix Madefor Display', sans-serif;
  background: var(--canvas);
  color: var(--navy);
  min-height: 100vh;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  padding: 3.5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(255, 255, 255, 0.02) 60px,
    rgba(255, 255, 255, 0.02) 120px
  );
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.75rem;
  position: relative;
}

.hero-title {
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  position: relative;
}

.hero-title .dot {
  color: var(--magenta);
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  margin-top: 1.25rem;
  position: relative;
}

/* ── TABS ── */
.tabs-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.tabs-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  overflow-x: auto;
  /* Hide scrollbar on tab overflow for mobile */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tabs-inner::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.9rem 1.25rem;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  letter-spacing: 0.02em;
  transition: color var(--transition-base), border-color var(--transition-base);
  white-space: nowrap;
}

.tab-btn:hover {
  color: rgba(255, 255, 255, 0.75);
}

.tab-btn.active {
  color: var(--magenta);
  border-bottom-color: var(--magenta);
}

/* ── LAYOUT ── */
.content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.view {
  display: none;
}

.view.active {
  display: block;
}

/* ── SHARED TEXT ── */
.section-intro,
.section-intro-standalone {
  font-size: 14px;
  color: #6b7280;
  font-weight: 400;
  line-height: 1.6;
}

.section-intro {
  max-width: 480px;
}

.section-intro-standalone {
  max-width: 560px;
  margin-bottom: 2rem;
}

/* ── CARDS TAB HEADER ── */
.cards-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.reset-btn {
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  background: transparent;
  color: #9ca3af;
  border: 1.5px solid rgba(21, 29, 54, 0.15);
  transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base);
  white-space: nowrap;
  flex-shrink: 0;
}

.reset-btn:hover {
  color: var(--magenta);
  border-color: var(--magenta);
  background: #fff5f9;
}

/* ── REVEAL CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 14px;
}

.rcard {
  background: var(--white);
  border: 1.5px solid rgba(21, 29, 54, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  cursor: pointer;
  user-select: none;
}

.rcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(21, 29, 54, 0.1);
}

.rcard.complete {
  border-color: var(--cyan);
}

.rcard-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 11px;
  text-transform: uppercase;
}

.rcard-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 13px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── TIER BADGES (shared) ── */
.tier-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
  min-width: 36px;
  text-align: center;
}

.tier-top  { background: #E1F5EE; color: #037F37; }
.tier-mid  { background: #FFDAEB; color: #CC1166; }
.tier-wild { background: #FFDF5A; color: #6B4A00; }

/* ── TEAM SLOTS ── */
.team-slot {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  min-height: 28px;
}

.team-text {
  font-size: 12px;
  color: var(--navy);
  flex: 1;
  font-weight: 500;
}

.team-rank {
  font-size: 11px;
  color: #9ca3af;
}

.slot-hidden {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  margin-bottom: 8px;
}

.team-ghost {
  height: 12px;
  border-radius: 6px;
  background: rgba(21, 29, 54, 0.1);
  flex: 1;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}

/* ── REVEAL PROMPT ── */
.reveal-prompt {
  font-size: 11px;
  color: var(--magenta);
  font-weight: 700;
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
}

.reveal-prompt.done {
  color: var(--cyan);
  opacity: 1;
}

/* ── LUCK BAR ── */
.luck-wrap {
  margin-top: 11px;
}

.luck-track {
  background: #eef0ed;
  border-radius: 4px;
  height: 4px;
  margin-bottom: 4px;
}

.luck-fill {
  height: 4px;
  border-radius: 4px;
}

.luck-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: #9ca3af;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21, 29, 54, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-base);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--canvas);
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
  transition: background var(--transition-fast);
}

.modal-close:hover {
  background: var(--blush);
}

/* Modal: splash screen */
.modal-splash {
  padding: 2.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.splash-name {
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.splash-name .dot {
  color: var(--magenta);
}

.splash-sub {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.splash-tiers {
  display: flex;
  gap: 8px;
  margin-bottom: 2rem;
  width: 100%;
}

.splash-tier-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.splash-tier-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}

.splash-tier-ghost {
  width: 100%;
  height: 10px;
  border-radius: 6px;
  background: rgba(21, 29, 54, 0.1);
  animation: pulse 1.5s ease-in-out infinite;
}

/* Modal: step reveal */
.modal-step {
  padding: 2rem;
}

.modal-progress {
  display: flex;
  gap: 5px;
  margin-bottom: 1.25rem;
}

.progress-pip {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: rgba(21, 29, 54, 0.1);
}

.progress-pip.done   { background: var(--magenta); }
.progress-pip.active { background: var(--cyan); }

.modal-step-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.5rem;
}

.modal-step-team {
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.modal-step-team .dot {
  color: var(--magenta);
}

.modal-step-owner {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 1.1rem;
}

.modal-step-owner strong {
  color: var(--navy);
}

.modal-rank-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.modal-fact-box {
  background: var(--canvas);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  margin-bottom: 1.25rem;
  border-left: 4px solid var(--cyan);
}

.modal-fact-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.4rem;
}

.modal-fact-text {
  font-size: 13px;
  color: var(--navy);
  line-height: 1.65;
  font-weight: 500;
}

/* Modal: review (all revealed) */
.modal-review {
  padding: 1.75rem 1.75rem 1.5rem;
}

.modal-review-header {
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}

.modal-review-eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.35rem;
}

.modal-review-name {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1;
}

.modal-review-name .dot {
  color: var(--magenta);
}

.review-divider {
  height: 1px;
  background: rgba(21, 29, 54, 0.07);
  margin: 1rem 0;
}

.rtb-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.6rem;
}

.rtb-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.rtb-name .dot {
  color: var(--magenta);
}

.rtb-rank {
  font-size: 12px;
  font-weight: 700;
  background: var(--navy);
  color: var(--white);
  padding: 3px 9px;
  border-radius: 6px;
}

.rtb-fact {
  font-size: 13px;
  color: #5a6478;
  line-height: 1.65;
  font-style: italic;
}

/* Modal: shared action buttons */
.modal-action-btn {
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--radius-pill);
  font-family: 'Wix Madefor Display', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.03em;
  border: none;
  transition: opacity var(--transition-fast), transform 0.1s;
  margin-bottom: 0.6rem;
}

.modal-action-btn:last-child {
  margin-bottom: 0;
}

.modal-action-btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--magenta);
  color: var(--white);
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-ghost {
  background: transparent;
  color: #9ca3af;
  font-size: 13px;
  padding: 0.5rem;
}

.btn-ghost:hover {
  color: var(--navy);
}

/* ── LEAGUE OF LUCK ── */
.league-wrap {
  max-width: 780px;
}

.league-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  background: var(--white);
  border: 1.5px solid rgba(21, 29, 54, 0.08);
  border-radius: 10px;
  margin-bottom: 8px;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.league-item:hover {
  transform: translateX(4px);
  border-color: var(--magenta);
}

.pos-num {
  font-size: 22px;
  font-weight: 800;
  min-width: 30px;
  color: rgba(21, 29, 54, 0.25);
  text-align: center;
}

.pos-1 { color: #C8921A; }
.pos-2 { color: #888888; }
.pos-3 { color: #8B4513; }

.l-info {
  flex: 1;
}

.l-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.l-teams {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.avg-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  background: var(--canvas);
  border: 1.5px solid rgba(21, 29, 54, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

.chip {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 7px;
  vertical-align: middle;
}

.chip-lucky    { background: #E1F5EE; color: #037F37; }
.chip-underdog { background: #FFDAEB; color: #CC1166; }

/* ── FIXTURES ── */
.fixtures-day-group {
  margin-bottom: 2rem;
}

.day-header {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  padding-bottom: 0.5rem;
  border-bottom: 1.5px solid var(--magenta);
  margin-bottom: 0.75rem;
}

.fixtures-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.fixture-row {
  background: var(--white);
  border: 1.5px solid rgba(21, 29, 54, 0.08);
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color var(--transition-fast);
}

.fixture-row:hover {
  border-color: rgba(21, 29, 54, 0.2);
}

.fixture-row.has-sweep {
  border-left: 4px solid var(--cyan);
}

.fix-matchup {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.fix-matchup .sweep-team {
  color: var(--magenta);
}

.fix-owners {
  display: flex;
  gap: 5px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}

.owner-pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  white-space: nowrap;
}

.owner-home { background: #FFDAEB; color: #CC1166; }
.owner-away { background: #E1F5EE; color: #037F37; }

.fix-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.fix-group {
  font-size: 10px;
  font-weight: 700;
  background: var(--navy);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 4px;
}

.fix-venue {
  font-size: 11px;
  color: #9ca3af;
}

.fix-bst {
  font-size: 11px;
  color: #6b7280;
  font-weight: 600;
}

/* ── FOOTER ── */
footer {
  text-align: center;
  padding: 2rem;
  font-size: 12px;
  color: #9ca3af;
  border-top: 1px solid rgba(21, 29, 54, 0.08);
}

footer strong {
  color: var(--navy);
}

footer .magenta {
  color: var(--magenta);
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .fixtures-cols {
    grid-template-columns: 1fr;
  }

  .cards-header {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ══════════════════════════════════════════════════════════════
   DASHBOARD
   ══════════════════════════════════════════════════════════════ */

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.dash-card {
  background: var(--white);
  border: 1.5px solid rgba(21, 29, 54, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
}

.dash-card--full  { grid-column: 1 / -1; }
.dash-card--half  { grid-column: span 1; }

.dash-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
}

.dash-empty,
.dash-all-done {
  font-size: 14px;
  color: #6b7280;
  font-style: italic;
}

/* ── Countdown ── */
.countdown-match {
  margin-bottom: 1.25rem;
}

.countdown-teams {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.countdown-vs {
  font-size: 0.8em;
  font-weight: 400;
  color: #9ca3af;
  margin: 0 0.4em;
}

.countdown-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.countdown-clock {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
  min-width: 60px;
}

.countdown-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-lbl {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 3px;
}

.countdown-colon {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.countdown-live {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
}

/* ── Upcoming fixtures ── */
.upcoming-fixture {
  border-left: 4px solid var(--cyan);
  padding: 0.9rem 1rem;
  margin-bottom: 10px;
  background: var(--canvas);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.upcoming-fixture:last-child {
  margin-bottom: 0;
}

.upcoming-fixture-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.upcoming-teams-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 12px;
}

.upcoming-vs {
  font-size: 12px;
  font-weight: 700;
  color: #9ca3af;
  padding-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: start;
  margin-top: 2px;
}

.upcoming-team-name {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.upcoming-owner-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.upcoming-fact {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.55;
  font-style: italic;
}

.upcoming-team:not(.is-sweep) .upcoming-team-name {
  color: #6b7280;
  font-weight: 600;
}

/* ── Standings ── */
.standings-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 6px;
  margin-top: 10px;
}

.standings-section-label:first-child {
  margin-top: 0;
}

.standings-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.standing-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px 4px 4px;
  border-radius: 50px;
  border: 1.5px solid rgba(21, 29, 54, 0.1);
  background: var(--white);
}

.standing-pill.eliminated {
  opacity: 0.45;
  background: var(--canvas);
}

.standing-pill-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 9px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.standing-pill-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.standing-divider {
  height: 1px;
  background: rgba(21, 29, 54, 0.08);
  margin: 10px 0 6px;
}

/* ── Groups ── */
.groups-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.group-block {
  background: var(--canvas);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.65rem;
}

.group-header {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 0.35rem;
}

.group-team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 2px 0;
  border-bottom: 1px solid rgba(21, 29, 54, 0.05);
}

.group-team-row:last-child {
  border-bottom: none;
}

.group-team-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
}

.group-team-row.is-sweep .group-team-name {
  font-weight: 700;
}

.group-team-row.is-sweep .owner-pill {
  font-size: 8px;
  padding: 1px 5px;
}

/* ── Responsive: dashboard ── */
@media (max-width: 768px) {
  .dash-grid {
    grid-template-columns: 1fr;
  }
  .dash-card--half {
    grid-column: 1 / -1;
  }
  .countdown-clock {
    flex-wrap: wrap;
  }
  .countdown-unit {
    min-width: 52px;
    padding: 0.5rem 0.75rem;
  }
  .countdown-num {
    font-size: 1.4rem;
  }
  .upcoming-teams-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .upcoming-vs {
    text-align: center;
  }
}
