/* === Bildirim İzni Alt Sol Küçük Bar === */
.notify-permission-bar-corner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 9999;
  background: var(--card-bg, #181f2a);
  color: var(--text-primary);
  border: 1.5px solid var(--accent-primary);
  border-radius: 14px;
  box-shadow: 0 4px 24px -8px rgba(59,130,246,0.18);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.2rem 0.7rem 1rem;
  font-size: 0.98rem;
  font-weight: 600;
  min-width: 220px;
  max-width: 320px;
  animation: fadeInUp 0.5s cubic-bezier(.4,2,.6,1);
}
.notify-permission-bar-corner .notify-permission-bar-icon {
  font-size: 1.3em;
  margin-right: 0.1em;
}
.notify-permission-bar-corner .notify-permission-bar-text {
  flex: 1;
  color: var(--text-secondary);
  font-size: 0.97em;
}
.notify-permission-bar-corner .notify-permission-bar-btn {
  appearance: none;
  border: 1px solid var(--border-primary);
  background: var(--accent-primary);
  color: #fff;
  border-radius: 8px;
  padding: 0.45em 1.1em;
  font-weight: 800;
  font-size: 0.97em;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 2px 8px -4px var(--accent-primary, #3b82f6);
  margin-left: 0.4em;
}
.notify-permission-bar-corner .notify-permission-bar-btn:hover {
  background: var(--accent-secondary);
  color: #fff;
}
@media (max-width: 600px) {
  .notify-permission-bar-corner {
    left: 8px;
    bottom: 8px;
    padding: 0.6rem 0.7rem 0.6rem 0.7rem;
    font-size: 0.93rem;
    min-width: 150px;
    max-width: 95vw;
  }
  .notify-permission-bar-corner .notify-permission-bar-btn {
    padding: 0.45em 0.7em;
    font-size: 0.93em;
  }
}
/* === Bildirim İzni Alt Barı === */
.notify-permission-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: var(--card-bg, #181f2a);
  color: var(--text-primary);
  border-top: 2px solid var(--accent-primary);
  box-shadow: 0 -8px 32px -12px rgba(59,130,246,0.18);
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 2rem;
  font-size: 1.08rem;
  font-weight: 600;
  animation: fadeInUp 0.5s cubic-bezier(.4,2,.6,1);
}
.notify-permission-bar-icon {
  font-size: 1.7em;
  margin-right: 0.2em;
}
.notify-permission-bar-text {
  flex: 1;
  color: var(--text-secondary);
}
.notify-permission-bar-btn {
  appearance: none;
  border: 1px solid var(--border-primary);
  background: var(--accent-primary);
  color: #fff;
  border-radius: 10px;
  padding: 0.7em 1.5em;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 16px -8px var(--accent-primary, #3b82f6);
  margin-left: 0.5em;
}
.notify-permission-bar-btn.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-primary);
  box-shadow: none;
}
.notify-permission-bar-btn:hover {
  background: var(--accent-secondary);
  color: #fff;
}
.notify-permission-bar-btn.secondary:hover {
  background: var(--bg-tertiary);
}
@media (max-width: 600px) {
  .notify-permission-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
    font-size: 0.98rem;
    padding: 1rem 0.7rem;
  }
  .notify-permission-bar-btn {
    width: 100%;
    margin-left: 0;
  }
}
/* === Bildirim İzni Modalı === */
.notify-permission-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(3px);
  z-index: 9998;
}
.notify-permission-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: min(420px,92vw);
  background: var(--card-bg, #181f2a);
  color: var(--text-primary);
  border: 1px solid var(--border-primary);
  border-radius: 18px;
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  padding: 0;
  overflow: hidden;
}
.notify-permission-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 1.5rem 0.5rem 1.5rem;
}
.notify-permission-header .icon {
  color: var(--accent-primary);
  width: 2.2em;
  height: 2.2em;
  flex-shrink: 0;
}
.notify-permission-title {
  font-weight: 900;
  font-size: 1.15rem;
}
.notify-permission-body {
  padding: 0.5rem 1.5rem 1.2rem 1.5rem;
  font-size: 1.02rem;
  color: var(--text-secondary);
}
.notify-permission-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 0 1.5rem 1.2rem 1.5rem;
}
.notify-permission-btn {
  appearance: none;
  border: 1px solid var(--border-primary);
  background: var(--accent-primary);
  color: #fff;
  border-radius: 10px;
  padding: 0.7em 1.5em;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 16px -8px var(--accent-primary, #3b82f6);
}
.notify-permission-btn.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-primary);
  box-shadow: none;
}
.notify-permission-btn:hover {
  background: var(--accent-secondary);
  color: #fff;
}
.notify-permission-btn.secondary:hover {
  background: var(--bg-tertiary);
}
/* ============================================
   MAÇ CEPTE PREMIUM v2.0 - Modern Design System
   ============================================ */

/* === CSS Variables === */
:root {
  /* Colors - Dark Theme */
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-tertiary: #1a1f2e;
  --bg-elevated: #242938;
  
  --text-primary: #f9fafb;
  --text-secondary: #d1d5db;
  --text-tertiary: #9ca3af;
  
  --accent-primary: #3b82f6;
  --accent-secondary: #8b5cf6;
  --accent-success: #10b981;
  --accent-warning: #f59e0b;
  --accent-danger: #ef4444;
  --elite-indigo: #6366f1;
  --elite-magenta: #ec4899;
  --elite-cyan: #22d3ee;
  --elite-amber: #f97316;
  
  --border-primary: rgba(255, 255, 255, 0.1);
  --border-secondary: rgba(255, 255, 255, 0.05);
  --glass-surface: rgba(255, 255, 255, 0.06);
  --glass-highlight: rgba(255, 255, 255, 0.18);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-success: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-blue: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-fire: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --gradient-aurora: linear-gradient(135deg, rgba(99,102,241,0.75) 0%, rgba(236,72,153,0.65) 50%, rgba(34,211,238,0.6) 100%);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-sm: 0 10px 28px -20px rgba(15, 23, 42, 0.55);
  --shadow-md: 0 20px 45px -25px rgba(15, 23, 42, 0.65);
  --shadow-lg: 0 35px 90px -40px rgba(15, 23, 42, 0.7);
  --shadow-xl: 0 45px 120px -50px rgba(15, 23, 42, 0.8);
  --shadow-elite: 0 40px 120px -45px rgba(88, 28, 135, 0.55);

  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* === Global Base Styles === */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: radial-gradient(circle at top left, rgba(99, 102, 241, 0.12) 0%, rgba(10, 14, 23, 1) 45%),
              radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.1) 0%, rgba(10, 14, 23, 1) 55%),
              var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

main {
  position: relative;
  z-index: 1;
}

.page-wrapper {
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.02);
}

.play-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.85rem 1.8rem;
  margin: 0 auto;
  width: min(1080px, 96%);
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.22), rgba(236, 72, 153, 0.18));
  border: 1px solid rgba(148, 163, 184, 0.18);
  color: rgba(226, 232, 240, 0.95);
  box-shadow: 0 25px 60px -40px rgba(59, 130, 246, 0.9);
  backdrop-filter: blur(12px) saturate(140%);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.play-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 50%, rgba(59, 130, 246, 0.3), transparent 55%),
              radial-gradient(circle at 85% 50%, rgba(236, 72, 153, 0.28), transparent 55%);
  opacity: 0.7;
  pointer-events: none;
}

.play-banner span {
  position: relative;
  z-index: 1;
}

.banner-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 800;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: rgba(134, 239, 172, 0.95);
}

.banner-title {
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
}

.banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.85);
}

.play-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 35px 70px -35px rgba(236, 72, 153, 0.95);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 3.5rem;
    padding: 2rem 3rem;
    border-radius: 40px;
    background: rgba(13, 18, 31, 0.75);
    border: 1px solid rgba(99, 102, 241, 0.22);
    box-shadow: var(--shadow-elite);
    backdrop-filter: blur(24px) saturate(145%);
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    font-weight: 800;
    color: #a5b4fc;
    text-transform: uppercase;
  }

  .season-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.65rem;
    margin-bottom: 0.4rem;
    padding: 0.38rem 0.9rem;
    border-radius: 999px;
    background: rgba(236, 72, 153, 0.12);
    border: 1px solid rgba(236, 72, 153, 0.28);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(251, 191, 223, 0.92);
  }

  .hero-title {
    font-size: clamp(2.75rem, 6vw, 4.6rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.035em;
  }

  .gradient-text {
    background: linear-gradient(135deg, #a855f7, #6366f1, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    color: rgba(226, 232, 240, 0.85);
    line-height: 1.8;
    max-width: 520px;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 0.95rem;
    transition: var(--transition-base);
    text-decoration: none;
    cursor: pointer;
  }

  .cta-button.primary {
    background: linear-gradient(135deg, #6366f1, #ec4899);
    color: white;
    box-shadow: 0 18px 40px -15px rgba(99, 102, 241, 0.75);
  }

  .cta-button.primary:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 25px 50px -18px rgba(99, 102, 241, 0.9);
  }

  .cta-button.ghost {
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: rgba(15, 23, 42, 0.55);
    color: rgba(226, 232, 240, 0.95);
  }

  .cta-button.ghost:hover {
    border-color: rgba(226, 232, 240, 0.75);
    color: white;
  }

  .hero-stats-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, 1fr));
    gap: 1rem;
  }

  .hero-stat-card {
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(99, 102, 241, 0.15);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    border-radius: 22px;
    padding: 1.2rem;
    display: grid;
    gap: 0.4rem;
    min-height: 140px;
    transition: var(--transition-base);
  }

  .hero-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(148, 163, 184, 0.55);
    box-shadow: 0 18px 45px -18px rgba(14, 22, 44, 0.7);
  }

  .hero-stat-card.highlight {
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.3), rgba(15, 23, 42, 0.85));
    border-color: rgba(99, 102, 241, 0.45);
  }

  .stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(99, 102, 241, 0.16);
    color: #a5b4fc;
    transition: var(--transition-fast);
  }

  .hero-stat-card.highlight .stat-icon {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
  }

  .stat-icon .icon {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 4px 10px rgba(59, 130, 246, 0.25));
  }

  .icon.xs {
    width: 16px;
    height: 16px;
    stroke-width: 1.6;
    filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.18));
  }

  .stat-value {
    font-size: 2rem;
    font-weight: 900;
  }

  .stat-label {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(226, 232, 240, 0.55);
  }

  .hero-visual {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(0px);
    opacity: 0.68;
  }

  .hero-orb.orb-one {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.75) 0%, rgba(236, 72, 153, 0.08) 70%);
    top: 10%;
    left: 12%;
    animation: orbPulse 10s ease-in-out infinite;
  }

  .hero-orb.orb-two {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.8) 0%, rgba(99, 102, 241, 0.05) 70%);
    bottom: -6%;
    right: 8%;
    animation: orbPulse 12s ease-in-out infinite reverse;
  }

  .hero-orb.orb-three {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(14, 197, 228, 0.75) 0%, rgba(14, 197, 228, 0.05) 70%);
    top: 32%;
    right: 38%;
    animation: orbPulse 9s ease-in-out infinite;
  }

  @keyframes orbPulse {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.55; }
    50% { transform: translate3d(6px, -10px, 0) scale(1.1); opacity: 0.85; }
  }

  .hero-scorecard {
    position: relative;
    z-index: 5;
    width: 360px;
    background: rgba(13, 22, 43, 0.85);
    border: 1px solid rgba(99, 102, 241, 0.42);
    box-shadow: 0 35px 80px -35px rgba(13, 22, 43, 0.8);
    border-radius: 28px;
    padding: 1.8rem;
    display: grid;
    gap: 1.5rem;
  }

  .scorecard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: rgba(203, 213, 225, 0.75);
  }

  .scorecard-header .status-badge {
    font-size: 0.65rem;
  }

  .scorecard-body {
    display: grid;
    gap: 1.2rem;
  }

  .scorecard-teams {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
  }

  .scorecard-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    text-align: center;
    min-width: 120px;
  }

  .scorecard-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.25);
    object-fit: cover;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .scorecard-logo.placeholder {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: rgba(226, 232, 240, 0.8);
    font-size: 1rem;
  }

  .scorecard-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.85);
  }

  .scorecard-score {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    background: linear-gradient(160deg, rgba(99, 102, 241, 0.65), rgba(236, 72, 153, 0.45));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }

  .scorecard-score .divider {
    font-size: 1.9rem;
    opacity: 0.65;
  }

  .scorecard-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(203, 213, 225, 0.6);
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .hero-talent-card {
    position: absolute;
    bottom: 8%;
    left: -6%;
    background: rgba(24, 36, 59, 0.9);
    border: 1px solid rgba(236, 72, 153, 0.32);
    border-radius: 20px;
    padding: 1.2rem 1.5rem;
    width: 220px;
    display: grid;
    gap: 0.5rem;
    box-shadow: 0 20px 50px -25px rgba(236, 72, 153, 0.8);
  }

  .talent-kicker {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(248, 113, 113, 0.75);
    font-weight: 700;
  }

  .talent-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
  }

  .talent-team {
    font-size: 0.8rem;
    color: rgba(203, 213, 225, 0.7);
    letter-spacing: 0.05em;
  }

  .talent-metric {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    font-weight: 900;
    font-size: 2.1rem;
    color: rgba(236, 72, 153, 0.85);
  }

  .talent-metric small {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
  }

.premium-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 26, 0.88);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.premium-navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.12), rgba(236, 72, 153, 0.08));
  opacity: 0.4;
  pointer-events: none;
}

.navbar-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
  position: relative;
  padding: 0.45rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.52), rgba(30, 41, 59, 0.28));
  box-shadow: 0 10px 28px -18px rgba(15, 23, 42, 0.8);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.navbar-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.10), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  top: -35%;
  left: -60%;
  width: 38%;
  height: 170%;
  background: linear-gradient(115deg, rgba(255,255,255,0), rgba(255,255,255,0.32), rgba(255,255,255,0));
  transform: skewX(-18deg);
  pointer-events: none;
  animation: brandSweep 4.8s ease-in-out infinite;
}

.navbar-brand:hover {
  transform: translateY(-1px);
  border-color: rgba(99, 102, 241, 0.36);
  box-shadow: 0 14px 36px -18px rgba(30, 41, 59, 0.92), 0 0 28px -16px rgba(99, 102, 241, 0.65);
}

.navbar-brand:hover::before {
  opacity: 1;
}

.brand-icon {
  width: 46px;
  height: 46px;
  color: var(--accent-primary);
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.45));
  display: block;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(99, 102, 241, 0.35);
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.18), rgba(15, 23, 42, 0.6));
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08), 0 4px 16px -4px rgba(0,0,0,0.5);
  padding: 3px;
}

.navbar-brand .brand-icon {
  width: 46px;
  height: 46px;
  padding: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.18), rgba(15, 23, 42, 0.6));
  border: 2px solid rgba(99, 102, 241, 0.35);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08), 0 4px 16px -4px rgba(0,0,0,0.5);
  color: #a5b4fc;
}

.brand-text {
  letter-spacing: -0.02em;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 8px 18px rgba(15, 23, 42, 0.35);
}

.brand-word-main {
  color: rgba(248, 250, 252, 0.97);
}

.brand-word-accent {
  color: #f59e0b;
  text-shadow: 0 0 16px rgba(245, 158, 11, 0.38);
}

.brand-badge {
  background: var(--gradient-primary);
  color: white;
  font-size: 0.625rem;
  font-weight: 900;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.24);
  box-shadow: 0 10px 20px -12px rgba(59, 130, 246, 0.85);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.navbar-menu::-webkit-scrollbar { display: none; }

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition-base);
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-elevated);
}

.nav-link.active {
  color: var(--accent-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--accent-primary);
  border-radius: var(--radius-full);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-actions {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.data-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(226, 232, 240, 0.85);
}

.nav-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-btn.icon-btn {
  background: transparent;
  color: var(--text-secondary);
  padding: 0.5rem;
}

.nav-btn.icon-btn:hover {
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.nav-btn.icon-btn svg {
  width: 20px;
  height: 20px;
}

.nav-btn.primary-btn {
  background: var(--accent-primary);
  color: white;
}

.nav-btn.primary-btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* === Live Topline Marquee === */
.topline-marquee {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.65));
}

.topline-marquee::before,
.topline-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.topline-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0));
}

.topline-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0));
}

.topline-marquee .marquee-track {
  display: flex;
  gap: 3rem;
  padding: 0.75rem 0;
  min-width: max-content;
}

.topline-marquee .marquee-track:first-child {
  padding-left: 2.5rem;
  padding-right: 3rem;
}

.topline-marquee .marquee-track[aria-hidden="true"] {
  padding-left: 0;
  padding-right: 2.5rem;
}

.topline-marquee .marquee-rail {
  display: flex;
  width: max-content;
  animation: marqueeSlide 28s linear infinite;
}

.topline-marquee:hover .marquee-rail {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: rgba(148, 163, 184, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.12);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  box-shadow: 0 10px 30px -18px rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(12px);
}

.marquee-item-btn {
  cursor: pointer;
  border: 1px solid rgba(148, 163, 184, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.marquee-item-btn:hover,
.marquee-item-btn:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(99, 102, 241, 0.35);
  background: rgba(99, 102, 241, 0.10);
  outline: none;
}

.marquee-status {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.65rem;
}

.status-badge.live {
  background: rgba(239, 68, 68, 0.18);
  color: #ff7b7b;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.status-badge.finished {
  background: rgba(16, 185, 129, 0.18);
  color: #6ee7b7;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.status-badge.upcoming {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.28);
}

.marquee-teams strong {
  margin: 0 0.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.marquee-meta {
  font-size: 0.72rem;
  color: var(--text-tertiary);
}

@keyframes marqueeSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TICKER MATCH MODAL – Premium Redesign ===== */
@keyframes tickerDialogIn {
  from { opacity: 0; transform: translateY(32px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes tickerLayerIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes tickerScorePop {
  0%   { transform: scale(.6); opacity: 0; }
  60%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes tickerLogoPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(99,102,241,.25); }
  50%     { box-shadow: 0 0 0 10px rgba(99,102,241,0); }
}
@keyframes tickerStatCount {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tickerTimelineSlide {
  from { opacity: 0; transform: translateX(-16px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes tickerGradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.ticker-match-layer {
  position: fixed;
  inset: 0;
  z-index: 10030;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(2, 6, 18, 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
}

.ticker-match-layer.is-visible {
  display: flex;
  animation: tickerLayerIn .3s ease-out;
}

.ticker-match-layer.is-visible .ticker-match-dialog {
  animation: tickerDialogIn .45s cubic-bezier(.22,1,.36,1);
}

.ticker-match-dialog {
  width: min(520px, 95vw);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  border-radius: 24px;
  padding: 0;
  background: linear-gradient(170deg, rgba(10,14,28,0.97) 0%, rgba(15,23,42,0.96) 50%, rgba(10,14,28,0.97) 100%);
  border: 1px solid rgba(99, 102, 241, 0.22);
  box-shadow:
    0 0 0 1px rgba(99,102,241,0.08),
    0 32px 90px -20px rgba(0,0,0,0.85),
    0 0 60px -20px rgba(99,102,241,0.3),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
}

/* Scrollbar styling */
.ticker-match-dialog::-webkit-scrollbar { width: 4px; }
.ticker-match-dialog::-webkit-scrollbar-track { background: transparent; }
.ticker-match-dialog::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.3); border-radius: 4px; }

/* Top gradient line */
.ticker-match-dialog::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #6366f1, #3b82f6, #f59e0b, #3b82f6, #6366f1);
  background-size: 200% 100%;
  animation: tickerGradientShift 4s ease infinite;
  border-radius: 24px 24px 0 0;
  z-index: 2;
}

/* Close button */
.ticker-match-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(15,23,42,0.7);
  backdrop-filter: blur(8px);
  color: rgba(226,232,240,0.85);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  z-index: 10;
  padding: 0;
}
.ticker-match-close svg {
  width: 16px; height: 16px;
}
.ticker-match-close:hover {
  background: rgba(239,68,68,0.2);
  border-color: rgba(239,68,68,0.4);
  color: #f87171;
  transform: rotate(90deg);
}

/* Header ribbon */
.ticker-match-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem 0;
  text-align: center;
}

.ticker-header-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ticker-match-date {
  font-size: 0.78rem;
  color: rgba(148,163,184,0.88);
  font-weight: 500;
}

.ticker-match-stage {
  font-size: 0.72rem;
  color: rgba(99,102,241,0.8);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== Scoreboard section ===== */
.ticker-scoreboard {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.5rem 1.5rem 1rem;
  position: relative;
}

.ticker-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
}

.ticker-team-logo-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(15,23,42,0.8);
  border: 2px solid rgba(99,102,241,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: tickerLogoPulse 2.5s ease-in-out infinite;
}

.ticker-team--away .ticker-team-logo-wrap {
  border-color: rgba(249,115,22,0.25);
  animation-delay: 1.25s;
}

.ticker-team-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.ticker-team-initials {
  display: none;
  font-size: 1.3rem;
  font-weight: 800;
  color: rgba(148,163,184,0.7);
  letter-spacing: 0.03em;
}

/* Show initials when logo is missing */
.ticker-team-logo-wrap.no-logo .ticker-team-logo { display: none; }
.ticker-team-logo-wrap.no-logo .ticker-team-initials { display: flex; }

.ticker-team-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(226,232,240,0.92);
  text-align: center;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ticker-score-center {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 0.8rem;
}

.ticker-score-box {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  animation: tickerScorePop .5s cubic-bezier(.22,1,.36,1) .15s both;
}

.ticker-score-num {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 24px rgba(99,102,241,0.3);
  line-height: 1;
  min-width: 1.5ch;
  text-align: center;
}

.ticker-score-sep {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 300;
  color: rgba(148,163,184,0.5);
  line-height: 1;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

/* ===== Goal Timeline ===== */
.ticker-timeline {
  margin: 0 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(148,163,184,0.08);
}

.ticker-timeline-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(148,163,184,0.6);
  margin-bottom: 0.75rem;
}

.ticker-timeline-title .icon {
  width: 14px; height: 14px;
  color: rgba(99,102,241,0.7);
}

.ticker-timeline-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ticker-timeline-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  background: rgba(15,23,42,0.5);
  border: 1px solid rgba(148,163,184,0.08);
  animation: tickerTimelineSlide .4s ease both;
}

.ticker-timeline-item:nth-child(1) { animation-delay: .1s; }
.ticker-timeline-item:nth-child(2) { animation-delay: .15s; }
.ticker-timeline-item:nth-child(3) { animation-delay: .2s; }
.ticker-timeline-item:nth-child(4) { animation-delay: .25s; }
.ticker-timeline-item:nth-child(5) { animation-delay: .3s; }
.ticker-timeline-item:nth-child(6) { animation-delay: .35s; }
.ticker-timeline-item:nth-child(n+7) { animation-delay: .4s; }

.ticker-timeline-item.side-home {
  border-left: 3px solid rgba(59,130,246,0.6);
}
.ticker-timeline-item.side-away {
  border-left: 3px solid rgba(249,115,22,0.6);
}

.ticker-tl-minute {
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(99,102,241,0.9);
  min-width: 28px;
  text-align: center;
  background: rgba(99,102,241,0.1);
  padding: 2px 6px;
  border-radius: 6px;
}

.side-away .ticker-tl-minute {
  color: rgba(249,115,22,0.9);
  background: rgba(249,115,22,0.1);
}

.ticker-tl-icon {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.ticker-tl-icon.goal-icon { color: #facc15; }
.ticker-tl-icon.own-icon  { color: #ef4444; }

.ticker-tl-player {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(226,232,240,0.92);
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ticker-tl-type {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 2px 7px;
  border-radius: 6px;
  flex-shrink: 0;
}
.ticker-tl-type.type-goal {
  color: rgba(250,204,21,0.9);
  background: rgba(250,204,21,0.1);
}
.ticker-tl-type.type-own {
  color: rgba(239,68,68,0.9);
  background: rgba(239,68,68,0.1);
}

.ticker-timeline-empty {
  text-align: center;
  padding: 0.8rem;
  font-size: 0.78rem;
  color: rgba(148,163,184,0.5);
  font-style: italic;
  display: none;
}
.ticker-timeline-empty.is-visible {
  display: block;
}

/* ===== Stats Grid ===== */
.ticker-match-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin: 0 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(148,163,184,0.08);
}

.ticker-stat-card {
  background: linear-gradient(145deg, rgba(15,23,42,0.7), rgba(20,30,55,0.5));
  border: 1px solid rgba(148,163,184,0.12);
  border-radius: 14px;
  padding: 0.7rem 0.55rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.ticker-stat-card:hover {
  border-color: rgba(99,102,241,0.3);
  transform: translateY(-1px);
}

.ticker-stat-icon {
  width: 20px;
  height: 20px;
  color: rgba(99,102,241,0.5);
  margin-bottom: 2px;
}
.ticker-stat-icon svg {
  width: 100%; height: 100%;
}

.ticker-stat-card .label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(148,163,184,0.65);
  font-weight: 600;
}

.ticker-stat-card .value {
  font-size: 1.35rem;
  font-weight: 900;
  color: rgba(248,250,252,0.95);
  animation: tickerStatCount .5s ease .2s both;
}

/* ===== Comparison Bars ===== */
.ticker-compare {
  margin: 0 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(148,163,184,0.08);
  display: grid;
  gap: 0.55rem;
}

.ticker-compare-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(148,163,184,0.6);
  margin-bottom: 0.25rem;
}

.ticker-compare-row {
  display: grid;
  grid-template-columns: 90px 1fr 48px;
  align-items: center;
  gap: 0.6rem;
}

.ticker-compare-row .team {
  font-size: 0.75rem;
  color: rgba(203,213,225,0.9);
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ticker-compare-row .pct {
  font-size: 0.75rem;
  color: rgba(203,213,225,0.9);
  font-weight: 700;
  text-align: right;
}

.ticker-compare-row .bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(148,163,184,0.1);
  overflow: hidden;
}

.ticker-compare-row .fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  width: 0;
  transition: width 1s cubic-bezier(.22,1,.36,1);
}

.ticker-compare-row .fill.home {
  background: linear-gradient(90deg, rgba(59,130,246,0.9), rgba(96,165,250,0.9));
  box-shadow: 0 0 12px rgba(59,130,246,0.3);
}

.ticker-compare-row .fill.away {
  background: linear-gradient(90deg, rgba(249,115,22,0.9), rgba(251,146,60,0.9));
  box-shadow: 0 0 12px rgba(249,115,22,0.3);
}

/* Footer */
.ticker-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid rgba(148,163,184,0.06);
  margin-top: 0.25rem;
}

.ticker-footer-id {
  font-size: 0.62rem;
  color: rgba(148,163,184,0.35);
  font-family: monospace;
}

.ticker-footer-brand {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: linear-gradient(90deg, rgba(99,102,241,0.8), rgba(59,130,246,0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Responsive ===== */
@media (max-width: 680px) {
  .ticker-match-dialog { border-radius: 18px; }
  .ticker-match-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .ticker-team-logo-wrap {
    width: 56px; height: 56px;
  }
  .ticker-team-logo {
    width: 100%; height: 100%;
  }
  .ticker-team-name {
    font-size: 0.72rem;
    max-width: 80px;
  }
  .ticker-compare-row {
    grid-template-columns: 70px 1fr 40px;
  }
  .ticker-match-header,
  .ticker-timeline,
  .ticker-match-stats,
  .ticker-compare,
  .ticker-modal-footer {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .ticker-scoreboard {
    padding: 1rem 1rem 0.75rem;
  }
}

@media (max-width: 380px) {
  .ticker-match-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
  }
  .ticker-stat-card { padding: 0.5rem 0.4rem; }
  .ticker-stat-card .value { font-size: 1.1rem; }
  .ticker-team-logo-wrap { width: 48px; height: 48px; }
  .ticker-team-logo { width: 100%; height: 100%; }
}

/* === Premium Hero === */
.premium-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.premium-hero.all-matches-hero {
  min-height: 75vh;
}

.premium-hero.all-matches-hero .hero-copy {
  max-width: 540px;
}

.premium-hero.all-matches-hero .hero-stats-grid {
  grid-template-columns: repeat(2, minmax(140px, 1fr));
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  width: 100%;
}

/* === Section Wrapper === */
.section-wrapper {
  padding: 5rem 0;
  position: relative;
}

.section-wrapper.section-alt {
  background: var(--bg-secondary);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.section-title .title-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(59, 130, 246, 0.14);
  color: var(--accent-primary);
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.section-title .title-icon .icon {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 4px 10px rgba(59, 130, 246, 0.3));
}

.section-title span:last-child {
  display: inline-block;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-tertiary);
}

.link-btn {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.link-btn:hover {
  color: #2563eb;
  transform: translateX(4px);
}

/* === Matches Grid === */
.prestige-section {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(10, 12, 26, 0.6) 100%);
  position: relative;
}

.prestige-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.18) 0%, transparent 45%),
              radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.18) 0%, transparent 55%);
  opacity: 0.6;
}

.prestige-section .section-container {
  position: relative;
  z-index: 1;
}

.prestige-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

/* === Season End Mode === */
body.season-end-mode {
  background: radial-gradient(circle at 15% 20%, rgba(236, 72, 153, 0.18), transparent 60%),
              radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.16), transparent 55%),
              radial-gradient(circle at 50% 80%, rgba(234, 179, 8, 0.15), transparent 65%),
              #05070e;
  min-height: 100vh;
  color: var(--text-primary);
  overflow-x: hidden;
}


/* ═══════════════════════════════════════════════════
   CHAMPION MODE (Şampiyon Modu)
   ═══════════════════════════════════════════════════ */
.champ-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #080c18;
  overflow: hidden;
}

.champ-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.champ-bg-glow--top {
  width: 80vw;
  height: 60vh;
  top: -20vh;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(234,179,8,0.22) 0%, transparent 65%);
}

.champ-bg-glow--mid {
  width: 55vw;
  height: 55vw;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(59,130,246,0.10) 0%, transparent 65%);
}

/* Confetti */
.champ-confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.champ-confetti span {
  position: absolute;
  top: -15vh;
  width: 10px;
  height: 22px;
  border-radius: 3px;
  opacity: 0;
  animation: champ-confetti-fall 9s linear infinite;
}

.champ-confetti span:nth-child(odd) { background: #facc15; }
.champ-confetti span:nth-child(3n)  { background: #f97316; width: 7px; height: 18px; border-radius: 50%; }
.champ-confetti span:nth-child(5n)  { background: #fbbf24; }
.champ-confetti span:nth-child(7n)  { background: #fff3b0; width: 8px; height: 8px; border-radius: 50%; }

.champ-confetti span:nth-child(1)  { left:4%;   animation-delay:-0.5s; }
.champ-confetti span:nth-child(2)  { left:10%;  animation-delay:-2.3s; animation-duration:8s; }
.champ-confetti span:nth-child(3)  { left:17%;  animation-delay:-4s; }
.champ-confetti span:nth-child(4)  { left:24%;  animation-delay:-1.1s; animation-duration:7.5s; }
.champ-confetti span:nth-child(5)  { left:31%;  animation-delay:-3.6s; }
.champ-confetti span:nth-child(6)  { left:38%;  animation-delay:-2.0s; animation-duration:9.5s; }
.champ-confetti span:nth-child(7)  { left:45%;  animation-delay:-5.2s; }
.champ-confetti span:nth-child(8)  { left:52%;  animation-delay:-1.7s; animation-duration:7s; }
.champ-confetti span:nth-child(9)  { left:59%;  animation-delay:-4.5s; }
.champ-confetti span:nth-child(10) { left:66%;  animation-delay:-0.8s; animation-duration:8.5s; }
.champ-confetti span:nth-child(11) { left:73%;  animation-delay:-3.1s; }
.champ-confetti span:nth-child(12) { left:80%;  animation-delay:-1.5s; animation-duration:9.2s; }
.champ-confetti span:nth-child(13) { left:87%;  animation-delay:-6.0s; }
.champ-confetti span:nth-child(14) { left:93%;  animation-delay:-7.2s; }
.champ-confetti span:nth-child(15) { left:7%;   animation-delay:-8.3s; animation-duration:10s; }
.champ-confetti span:nth-child(16) { left:20%;  animation-delay:-5.8s; animation-duration:10.5s; }
.champ-confetti span:nth-child(17) { left:35%;  animation-delay:-7.1s; animation-duration:11s; }
.champ-confetti span:nth-child(18) { left:48%;  animation-delay:-9.0s; animation-duration:10s; }
.champ-confetti span:nth-child(19) { left:62%;  animation-delay:-6.4s; animation-duration:9.8s; }
.champ-confetti span:nth-child(20) { left:75%;  animation-delay:-8.7s; animation-duration:10.2s; }
.champ-confetti span:nth-child(21) { left:85%;  animation-delay:-5.3s; animation-duration:9.5s; }
.champ-confetti span:nth-child(22) { left:13%;  animation-delay:-9.6s; animation-duration:11s; }
.champ-confetti span:nth-child(23) { left:27%;  animation-delay:-7.8s; animation-duration:10.8s; }
.champ-confetti span:nth-child(24) { left:55%;  animation-delay:-8.1s; animation-duration:9.7s; }
.champ-confetti span:nth-child(25) { left:68%;  animation-delay:-6.9s; animation-duration:10.4s; }
.champ-confetti span:nth-child(26) { left:41%;  animation-delay:-3.4s; animation-duration:8.8s; }
.champ-confetti span:nth-child(27) { left:90%;  animation-delay:-4.2s; animation-duration:9.3s; }
.champ-confetti span:nth-child(28) { left:2%;   animation-delay:-2.7s; animation-duration:8.2s; }
.champ-confetti span:nth-child(29) { left:57%;  animation-delay:-1.9s; animation-duration:7.8s; }
.champ-confetti span:nth-child(30) { left:78%;  animation-delay:-0.3s; animation-duration:8.6s; }

@keyframes champ-confetti-fall {
  0%   { transform: translateY(-15vh) rotate(0deg);   opacity: 0; }
  8%   { opacity: 0.9; }
  88%  { opacity: 0.9; }
  100% { transform: translateY(110vh) rotate(400deg); opacity: 0; }
}

/* Shell */
.champ-shell {
  position: relative;
  z-index: 2;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1rem, 5vw, 3.5rem) 4rem;
}

/* Nav */
.champ-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem clamp(1rem, 3vw, 1.75rem);
  border-radius: 999px;
  background: rgba(8, 12, 24, 0.75);
  border: 1px solid rgba(234,179,8,0.18);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 8px 32px -12px rgba(0,0,0,0.6);
}

.champ-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0.6rem;
  border-radius: 12px;
  border: 1px solid rgba(234, 179, 8, 0.26);
  background: linear-gradient(145deg, rgba(234,179,8,0.10), rgba(234,179,8,0.03));
  box-shadow: 0 10px 28px -18px rgba(234, 179, 8, 0.6);
  overflow: hidden;
}

.champ-nav-brand::after {
  content: '';
  position: absolute;
  top: -35%;
  left: -60%;
  width: 38%;
  height: 170%;
  background: linear-gradient(115deg, rgba(255,255,255,0), rgba(255,255,255,0.28), rgba(255,255,255,0));
  transform: skewX(-18deg);
  pointer-events: none;
  animation: brandSweep 4.8s ease-in-out infinite;
}

.champ-nav-brand .brand-icon {
  width: 42px;
  height: 42px;
  padding: 3px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(250, 204, 21, 0.18), rgba(15, 23, 42, 0.6));
  border: 2px solid rgba(250, 204, 21, 0.4);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.08), 0 4px 16px -4px rgba(0,0,0,0.5);
  color: #fde68a;
  filter: drop-shadow(0 0 12px rgba(250, 204, 21, 0.5));
}

.champ-nav-text {
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(248, 250, 252, 0.96);
  text-shadow: 0 8px 20px rgba(234, 179, 8, 0.25);
  position: relative;
}

.champ-nav-text .brand-word-main {
  color: rgba(255, 255, 255, 0.97);
}

.champ-nav-text .brand-word-accent {
  color: #f59e0b;
  text-shadow: 0 0 16px rgba(245, 158, 11, 0.45);
}

.champ-nav-text::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #facc15;
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.8);
  animation: brandPulse 1.8s ease-in-out infinite;
}

@keyframes brandPulse {
  0%, 100% { opacity: 0.55; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.25); }
}

@keyframes brandSweep {
  0% { left: -60%; opacity: 0; }
  12% { opacity: 1; }
  36% { left: 135%; opacity: 0; }
  100% { left: 135%; opacity: 0; }
}

.champ-nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(234,179,8,0.16);
  border: 1px solid rgba(234,179,8,0.35);
  color: rgba(253,230,138,0.9);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.champ-nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(234,179,8,0.25), rgba(234,179,8,0.12));
  border: 1px solid rgba(234,179,8,0.4);
  color: rgba(253,230,138,0.95);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.champ-nav-btn:hover {
  background: linear-gradient(135deg, rgba(234,179,8,0.38), rgba(234,179,8,0.22));
  box-shadow: 0 8px 24px -8px rgba(234,179,8,0.45);
}

/* Main layout */
.champ-main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ── Hero section ── */
.champ-hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(15,22,40,0.92) 0%, rgba(8,12,24,0.96) 100%);
  border: 1px solid rgba(234,179,8,0.22);
  box-shadow: 0 0 0 1px rgba(234,179,8,0.08) inset,
              0 40px 100px -40px rgba(234,179,8,0.25),
              0 60px 120px -60px rgba(0,0,0,0.8);
  backdrop-filter: blur(24px);
}

.champ-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(234,179,8,0.15) 0%, transparent 55%);
  pointer-events: none;
}

.champ-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3rem);
  gap: clamp(1.5rem, 3vw, 2rem);
}

/* Season badge */
.champ-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1.15rem;
  border-radius: 999px;
  background: rgba(234,179,8,0.13);
  border: 1px solid rgba(234,179,8,0.32);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(253,230,138,0.9);
}

/* Visual: trophy + logo */
.champ-visual {
  position: relative;
  width: clamp(140px, 18vw, 200px);
  height: clamp(140px, 18vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.champ-visual-glow {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,179,8,0.4) 0%, transparent 65%);
  filter: blur(28px);
  animation: champ-glow-pulse 2.8s ease-in-out infinite;
}

@keyframes champ-glow-pulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.12); }
}

.champ-trophy {
  position: absolute;
  top: -12%;
  left: -20%;
  width: 50%;
  filter: drop-shadow(0 10px 28px rgba(234,179,8,0.7));
  animation: champ-trophy-float 3.2s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
}

@keyframes champ-trophy-float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%       { transform: translateY(-10px) rotate(-4deg); }
}

.champ-logo-ring {
  position: relative;
  z-index: 3;
  width: clamp(110px, 14vw, 155px);
  height: clamp(110px, 14vw, 155px);
  border-radius: 50%;
  border: 3px solid rgba(234,179,8,0.65);
  box-shadow:
    0 0 0 6px rgba(234,179,8,0.12),
    0 0 0 14px rgba(234,179,8,0.06),
    0 18px 50px -18px rgba(234,179,8,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(15,23,42,0.85);
  animation: champ-ring-pulse 2.8s ease-in-out infinite;
}

@keyframes champ-ring-pulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(234,179,8,0.12), 0 0 0 14px rgba(234,179,8,0.06), 0 18px 50px -18px rgba(234,179,8,0.55); }
  50%       { box-shadow: 0 0 0 10px rgba(234,179,8,0.2), 0 0 0 22px rgba(234,179,8,0.09), 0 18px 64px -18px rgba(234,179,8,0.75); }
}

.champ-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.champ-logo-initial {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: rgba(253,230,138,0.9);
  text-transform: uppercase;
  line-height: 1;
}

/* Title block */
.champ-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.champ-eyebrow {
  margin: 0;
  font-size: clamp(0.65rem, 1.8vw, 0.8rem);
  letter-spacing: 0.5em;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(234,179,8,0.8);
}

.champ-name {
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  background: linear-gradient(130deg, #fef3c7 0%, #fbbf24 35%, #f59e0b 65%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 4px 24px rgba(234,179,8,0.35));
}

.champ-tagline {
  margin: 0;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(203,213,225,0.75);
  max-width: 44ch;
  line-height: 1.65;
}

/* Stats row */
.champ-stats-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.champ-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: clamp(0.75rem, 1.5vw, 1.05rem) clamp(1rem, 2.5vw, 1.5rem);
  border-radius: 18px;
  background: rgba(10,14,26,0.75);
  border: 1px solid rgba(234,179,8,0.2);
  min-width: 80px;
}

.champ-stat .cs-val {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 900;
  color: rgba(253,230,138,0.95);
  line-height: 1;
}

.champ-stat .cs-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.7);
}

/* ── Cards ── */
.champ-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.champ-card {
  padding: clamp(1.5rem, 3vw, 1.9rem);
  border-radius: 22px;
  background: rgba(11,16,30,0.88);
  border: 1px solid rgba(148,163,184,0.13);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 20px 50px -28px rgba(0,0,0,0.65);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.champ-card:hover {
  border-color: rgba(234,179,8,0.2);
  box-shadow: 0 24px 60px -28px rgba(234,179,8,0.2);
}

.champ-card-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.7);
  font-weight: 700;
}

.champ-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.champ-card-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(248,250,252,0.95);
}

.champ-card-sub {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(203,213,225,0.65);
}

.champ-metric {
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #facc15;
}

.champ-metric small {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.7);
  font-weight: 600;
}

/* Top 3 list */
.champ-toplist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.champ-toplist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.9rem;
  border-radius: 14px;
  background: rgba(15,23,42,0.52);
  border: 1px solid rgba(148,163,184,0.1);
}

.champ-toplist-rank {
  font-size: 1.15rem;
  min-width: 28px;
  text-align: center;
}

.champ-toplist-name {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(226,232,240,0.9);
}

.champ-toplist-pts {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(203,213,225,0.75);
}

.champ-toplist-pts small {
  font-size: 0.7rem;
  color: rgba(148,163,184,0.6);
}

/* Season stats grid */
.champ-season-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.champ-ss-item {
  padding: 0.9rem 0.75rem;
  border-radius: 14px;
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(148,163,184,0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.champ-ss-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148,163,184,0.6);
}

.champ-ss-value {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 900;
  color: rgba(248,250,252,0.95);
  line-height: 1;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .champ-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .champ-shell {
    padding: 1rem 1rem 3rem;
    gap: 1.5rem;
  }

  .champ-cards {
    grid-template-columns: 1fr;
  }

  .champ-nav {
    border-radius: 18px;
  }

  .champ-hero-inner {
    padding: 2.5rem 1.25rem;
  }
}


/* ═══════════════════════════════════════════════════
   CHAMPION MUSIC BAR
   ═══════════════════════════════════════════════════ */
.champ-music-bar {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
  border-radius: 22px;
  background: rgba(8, 12, 22, 0.88);
  border: 1px solid rgba(234, 179, 8, 0.35);
  box-shadow:
    0 0 0 1px rgba(234, 179, 8, 0.08) inset,
    0 16px 48px -16px rgba(0, 0, 0, 0.75),
    0 0 32px -8px rgba(234, 179, 8, 0.18);
  backdrop-filter: blur(24px) saturate(160%);
  transform: translateY(0);
  transition: box-shadow 0.3s;
}

.champ-music-bar--intro {
  animation: champ-bar-slide-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes champ-bar-slide-in {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.champ-music-bar:hover {
  box-shadow:
    0 0 0 1px rgba(234, 179, 8, 0.14) inset,
    0 20px 56px -16px rgba(0, 0, 0, 0.8),
    0 0 48px -8px rgba(234, 179, 8, 0.3);
}

/* Info section */
.champ-music-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.champ-music-note {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(234, 179, 8, 0.14);
  border: 1px solid rgba(234, 179, 8, 0.28);
  flex-shrink: 0;
  animation: champ-note-pulse 2s ease-in-out infinite;
}

@keyframes champ-note-pulse {
  0%, 100% { background: rgba(234, 179, 8, 0.14); }
  50%       { background: rgba(234, 179, 8, 0.28); }
}

.champ-music-note svg {
  width: 18px;
  height: 18px;
  stroke: rgba(253, 230, 138, 0.9);
}

.champ-music-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.champ-music-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 150px;
}

.champ-music-status {
  font-size: 0.65rem;
  color: rgba(148, 163, 184, 0.75);
  white-space: nowrap;
}

/* Controls */
.champ-music-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.champ-mc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(203, 213, 225, 0.85);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.12s;
  flex-shrink: 0;
}

.champ-mc-btn svg {
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.champ-mc-btn:hover {
  background: rgba(234, 179, 8, 0.18);
  border-color: rgba(234, 179, 8, 0.4);
  color: rgba(253, 230, 138, 0.95);
}

.champ-mc-btn:active {
  transform: scale(0.88);
}

.champ-mc-btn--play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(234, 179, 8, 0.18);
  border-color: rgba(234, 179, 8, 0.4);
  color: rgba(253, 230, 138, 0.95);
}

.champ-mc-btn--play svg {
  width: 18px;
  height: 18px;
}

.champ-mc-btn--play:hover {
  background: rgba(234, 179, 8, 0.32);
  box-shadow: 0 0 18px -4px rgba(234, 179, 8, 0.55);
}

@media (max-width: 500px) {
  .champ-music-bar {
    bottom: 1rem;
    right: 0.75rem;
    left: 0.75rem;
    border-radius: 18px;
    padding: 0.75rem 1rem;
  }

  .champ-music-title {
    max-width: 110px;
  }
}

.champ-audio-unlock {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(3, 7, 18, 0.82);
  backdrop-filter: blur(10px);
}

.champ-audio-unlock.is-visible {
  display: flex;
}

.champ-audio-unlock-card {
  width: min(520px, 100%);
  border-radius: 24px;
  padding: 1.6rem 1.5rem;
  background: linear-gradient(165deg, rgba(10, 14, 26, 0.97), rgba(8, 12, 22, 0.97));
  border: 1px solid rgba(234, 179, 8, 0.4);
  box-shadow: 0 28px 80px -28px rgba(0,0,0,0.88), 0 0 42px -10px rgba(234,179,8,0.38);
  text-align: center;
}

.champ-audio-unlock-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(248, 250, 252, 0.95);
}

.champ-audio-unlock-card p {
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(203, 213, 225, 0.86);
}

.champ-audio-unlock-btn {
  border: 1px solid rgba(234, 179, 8, 0.45);
  background: linear-gradient(135deg, rgba(234,179,8,0.36), rgba(234,179,8,0.2));
  color: rgba(253, 230, 138, 0.95);
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.champ-audio-unlock-btn:hover {
  background: linear-gradient(135deg, rgba(234,179,8,0.4), rgba(234,179,8,0.24));
}

.prestige-card {
  position: relative;
  padding: 2.4rem 2rem;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(15, 23, 42, 0.75);
  box-shadow: 0 35px 90px -45px rgba(15, 23, 42, 0.9);
  overflow: hidden;
  display: grid;
  gap: 1rem;
  transition: var(--transition-base);
}

.prestige-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(99, 102, 241, 0.24), rgba(236, 72, 153, 0.18));
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.prestige-card:hover::after {
  opacity: 1;
}

.prestige-card .card-index {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: rgba(129, 140, 248, 0.8);
  text-transform: uppercase;
  font-weight: 800;
}

.prestige-card h3 {
  font-size: 1.4rem;
  color: rgba(226, 232, 240, 0.95);
  letter-spacing: -0.01em;
}

.prestige-card p {
  font-size: 0.92rem;
  color: rgba(203, 213, 225, 0.7);
  line-height: 1.7;
}

.prestige-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.prestige-card li {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.prestige-card li::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #22d3ee);
}

.prestige-card.analytics { border-color: rgba(99, 102, 241, 0.35); }
.prestige-card.studio { border-color: rgba(236, 72, 153, 0.32); }
.prestige-card.pulse { border-color: rgba(14, 197, 228, 0.32); }

.matches-runway {
  position: relative;
  padding: 0.5rem;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.65), rgba(15, 23, 42, 0.35));
  border: 1px solid rgba(148, 163, 184, 0.12);
  overflow: hidden;
}

.matches-runway::before,
.matches-runway::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 1;
}

.matches-runway::before {
  left: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0));
}

.matches-runway::after {
  right: 0;
  background: linear-gradient(270deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0));
}

.matches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.matches-directory {
  margin-top: 1rem;
}

.match-scorers-toggle {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(30, 41, 59, 0.45);
  color: rgba(226, 232, 240, 0.92);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.match-scorers-toggle:hover,
.match-scorers-toggle:focus {
  background: rgba(79, 70, 229, 0.28);
  border-color: rgba(99, 102, 241, 0.6);
  color: #fff;
  outline: none;
}

.match-scorers-toggle.active {
  background: rgba(59, 130, 246, 0.32);
  border-color: rgba(59, 130, 246, 0.55);
  color: #fff;
}

.match-scorers-row {
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.match-scorers-row[hidden] {
  display: none;
}

.match-scorers-row td {
  padding: 0.9rem 1.1rem 1.2rem;
  background: rgba(15, 23, 42, 0.58);
  border-top: 1px solid rgba(99, 102, 241, 0.22);
}

.match-scorers-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.match-scorers-panel .tag {
  background: rgba(148, 163, 184, 0.18);
  color: rgba(226, 232, 240, 0.88);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.match-scorers-panel .muted {
  color: rgba(148, 163, 184, 0.65);
  font-size: 0.8rem;
}

.match-events-trigger {
  margin-top: 1.15rem;
}

.match-events-collapse {
  margin-top: 1.1rem;
}

.match-events-collapse.open {
  animation: fadeInRise 0.28s ease;
}

@keyframes fadeInRise {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.match-card-premium.finished-card {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(17, 25, 40, 0.85);
  box-shadow: 0 30px 80px -45px rgba(8, 11, 23, 0.9);
}

.match-card-premium.finished-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
}

.match-stage-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(99, 102, 241, 0.18);
  border: 1px solid rgba(99, 102, 241, 0.4);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(165, 180, 252, 0.95);
}

.match-meta-row {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  min-width: 110px;
  text-transform: uppercase;
}

.meta-chip strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(236, 239, 248, 0.95);
}

.meta-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: rgba(148, 163, 184, 0.7);
}

.match-events-detailed {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  display: grid;
  gap: 1.2rem;
}

.team-events-col {
  display: grid;
  gap: 0.65rem;
}

.team-events-header {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(165, 180, 252, 0.8);
  font-weight: 800;
}

.event-chip-detailed {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.6);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: var(--transition-fast);
}

.event-chip-detailed .minute {
  font-weight: 800;
  color: rgba(251, 191, 36, 0.85);
}

.event-chip-detailed .player {
  color: rgba(226, 232, 240, 0.9);
}

.event-chip-detailed .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.7);
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.event-chip-detailed.goal .label {
  background: rgba(52, 211, 153, 0.12);
  color: rgba(110, 231, 183, 0.9);
  border-color: rgba(52, 211, 153, 0.4);
}

.event-chip-detailed.penalty .label {
  background: rgba(59, 130, 246, 0.12);
  color: rgba(147, 197, 253, 0.95);
  border-color: rgba(59, 130, 246, 0.4);
}

.event-chip-detailed.freekick .label {
  background: rgba(236, 72, 153, 0.12);
  color: rgba(251, 113, 133, 0.95);
  border-color: rgba(236, 72, 153, 0.35);
}

.event-chip-detailed.header .label {
  background: rgba(14, 165, 233, 0.12);
  color: rgba(125, 211, 252, 0.95);
  border-color: rgba(14, 165, 233, 0.35);
}

.event-chip-detailed.own .label {
  background: rgba(239, 68, 68, 0.12);
  color: rgba(252, 165, 165, 0.95);
  border-color: rgba(239, 68, 68, 0.35);
}

.empty-state.elite-empty {
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 32px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.empty-state .empty-icon {
  font-size: 3rem;
}

.match-card-premium {
  background: var(--bg-elevated);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
}

.match-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-primary);
}

.match-card-premium.live {
  border-color: var(--accent-danger);
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, var(--bg-elevated) 100%);
}

/* ── DERBY CARD ── */
@keyframes derbyBorderShift {
  0%   { background-position: 0% 50%, 0% 50%; }
  50%  { background-position: 0% 50%, 100% 50%; }
  100% { background-position: 0% 50%, 0% 50%; }
}

.match-card-premium.derby-card {
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box,
    linear-gradient(135deg, #3b82f6 0%, #8b5cf6 40%, #06b6d4 70%, #3b82f6 100%) border-box;
  background-size: auto, 300% 300%;
  animation: derbyBorderShift 6s ease infinite;
  box-shadow: 0 0 18px rgba(59,130,246,.12), 0 6px 24px rgba(0,0,0,.3);
  overflow: hidden;
}
.match-card-premium.derby-card::before {
  content: none;
}
.match-card-premium.derby-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(59,130,246,.28), 0 0 52px rgba(139,92,246,.14), 0 12px 36px rgba(0,0,0,.4);
}

/* Derby badge — küçük premium rozet (kart sağ üst) */
.derby-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: linear-gradient(135deg, #d97706, #fbbf24, #fde68a, #fbbf24, #d97706);
  border-radius: 999px;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #1a0800;
  white-space: nowrap;
  box-shadow: 0 1px 8px rgba(251,191,36,.45);
  z-index: 4;
}
.derby-star {
  font-size: .55rem;
  display: inline-block;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-danger);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  position: absolute;
  top: 1rem;
  right: 1rem;
  letter-spacing: 0.05em;
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: white;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.match-time {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.match-teams-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.team-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.team-logo-premium {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-primary);
}

.team-avatar-premium {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  border: 2px solid var(--border-primary);
}

.team-name-premium {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.score-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
}

.score-sep {
  color: var(--text-tertiary);
  font-weight: 400;
}

.match-events-compact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-secondary);
}

.event-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-success);
  padding: 0.25rem 0.85rem 0.25rem 0.35rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid rgba(16, 185, 129, 0.28);
  box-shadow: 0 6px 16px -12px rgba(16, 185, 129, 0.65);
}

.event-chip .chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.24);
  color: inherit;
  box-shadow: inset 0 0 0 1px rgba(34, 197, 94, 0.25);
}

.event-chip .chip-icon .icon {
  filter: drop-shadow(0 2px 6px rgba(34, 197, 94, 0.3));
}

.event-chip span:last-child {
  color: rgba(236, 253, 245, 0.92);
}

.rank-col {
  min-width: 56px;
}

.rank-col .medal-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.16);
  border: 1px solid rgba(251, 191, 36, 0.32);
  color: #facc15;
  box-shadow: 0 10px 20px -18px rgba(251, 191, 36, 0.85);
}

.rank-col .medal-badge .icon {
  width: 1.2rem;
  height: 1.2rem;
  filter: drop-shadow(0 3px 8px rgba(251, 191, 36, 0.35));
}

.rank-col .medal-badge.medal-silver {
  background: rgba(209, 213, 219, 0.16);
  border-color: rgba(209, 213, 219, 0.4);
  color: #e5e7eb;
  box-shadow: 0 10px 20px -18px rgba(209, 213, 219, 0.85);
}

.rank-col .medal-badge.medal-silver .icon {
  filter: drop-shadow(0 3px 8px rgba(148, 163, 184, 0.32));
}

.rank-col .medal-badge.medal-bronze {
  background: rgba(245, 158, 11, 0.14);
  border-color: rgba(245, 158, 11, 0.32);
  color: #f59e0b;
  box-shadow: 0 10px 20px -18px rgba(245, 158, 11, 0.65);
}

.rank-col .medal-badge.medal-bronze .icon {
  filter: drop-shadow(0 3px 8px rgba(245, 158, 11, 0.28));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === Premium Table === */
.premium-table-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.table-responsive {
  overflow-x: auto;
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
}

.modern-table thead {
  position: relative;
  background: linear-gradient(120deg, rgba(99, 102, 241, 0.22), rgba(15, 23, 42, 0.9));
  box-shadow: inset 0 -1px 0 rgba(148, 163, 184, 0.12);
}

.modern-table th {
  padding: 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(226, 232, 240, 0.75);
}

.modern-table tbody tr {
  border-bottom: 1px solid var(--border-secondary);
  transition: var(--transition-fast);
  position: relative;
}

.modern-table tbody tr:hover {
  background: linear-gradient(90deg, rgba(30, 41, 59, 0.55), rgba(15, 23, 42, 0.75));
}

.modern-table tbody tr.highlight-row {
  background: linear-gradient(90deg, rgba(99, 102, 241, 0.18), rgba(59, 130, 246, 0.08));
  box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.25);
}

.modern-table td {
  padding: 1rem;
  font-size: 0.9rem;
}

.text-center {
  text-align: center;
}

.rank-col {
  font-weight: 900;
  font-size: 1.1rem;
}

.team-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team-logo-tiny {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.team-avatar-tiny {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: white;
}

.team-name-text {
  font-weight: 700;
  color: var(--text-primary);
}

.text-success { color: var(--accent-success); }
.text-warning { color: var(--accent-warning); }
.text-danger { color: var(--accent-danger); }

.points-col {
  font-weight: 900;
}

.points-badge-modern {
  background: var(--gradient-primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 800;
}

.standings-leaderboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.leader-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 26px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(15, 23, 42, 0.75);
  box-shadow: 0 30px 80px -50px rgba(15, 23, 42, 0.8);
  overflow: hidden;
  display: grid;
  gap: 1.5rem;
}

.leader-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.65;
  background: radial-gradient(circle at 20% -10%, rgba(99, 102, 241, 0.25), transparent 55%),
              radial-gradient(circle at 80% 120%, rgba(236, 72, 153, 0.2), transparent 55%);
}

.leader-card .leader-header,
.leader-card .leader-stats {
  position: relative;
  z-index: 1;
}

.leader-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.leader-rank {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(226, 232, 240, 0.85);
  font-size: 1rem;
}

.leader-card.rank-1 .leader-rank {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.35), rgba(251, 191, 36, 0.1));
  border-color: rgba(251, 191, 36, 0.4);
  color: #fef08a;
}

.leader-card.rank-2 .leader-rank {
  background: linear-gradient(135deg, rgba(209, 213, 219, 0.3), rgba(209, 213, 219, 0.08));
  border-color: rgba(209, 213, 219, 0.4);
  color: #e5e7eb;
}

.leader-card.rank-3 .leader-rank {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.3), rgba(249, 115, 22, 0.08));
  border-color: rgba(249, 115, 22, 0.4);
  color: #fed7aa;
}

.leader-id {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.leader-logo {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.leader-logo.placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(59, 130, 246, 0.18);
  color: rgba(226, 232, 240, 0.85);
  font-weight: 800;
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.leader-team {
  display: grid;
  gap: 0.3rem;
}

.leader-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: rgba(226, 232, 240, 0.95);
  letter-spacing: -0.01em;
}

.leader-meta {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.7);
}

.leader-stats {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.leader-chip {
  display: grid;
  gap: 0.25rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
  min-width: 120px;
}

.leader-chip label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(148, 163, 184, 0.7);
}

.leader-chip strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(226, 232, 240, 0.9);
}

/* === Scorers Premium Grid === */
.scorers-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.scorer-card-premium {
  background: var(--bg-elevated);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
}

.scorer-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.scorer-card-premium.gold {
  border-color: #fbbf24;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, var(--bg-elevated) 100%);
}

.scorer-card-premium.silver {
  border-color: #d1d5db;
  background: linear-gradient(135deg, rgba(209, 213, 219, 0.1) 0%, var(--bg-elevated) 100%);
}

.scorer-card-premium.bronze {
  border-color: #f97316;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, var(--bg-elevated) 100%);
}

.scorer-rank-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 700;
}

.scorer-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 1rem;
  border: 3px solid var(--border-primary);
}

.scorer-name {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.scorer-team-name {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin-bottom: 1rem;
}

.scorer-team-logo {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
}

.scorer-goals {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.goals-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-primary);
  line-height: 1;
}

.goals-text {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.scorers-spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.spotlight-card {
  position: relative;
  padding: 1.6rem 1.8rem;
  border-radius: 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.75);
  box-shadow: 0 30px 80px -45px rgba(15, 23, 42, 0.85);
  overflow: hidden;
  display: grid;
}

.spotlight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0%, rgba(96, 165, 250, 0.22), transparent 55%),
              radial-gradient(circle at 90% 120%, rgba(236, 72, 153, 0.18), transparent 55%);
  opacity: 0.6;
}

.spotlight-card.rank-1 .spotlight-meta {
  position: relative;
  padding-top: 30px;
}

.spotlight-crown {
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.35) 0%, rgba(30, 27, 75, 0.05) 65%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: crownFloat 3.6s ease-in-out infinite;
  box-shadow: 0 15px 40px -25px rgba(251, 191, 36, 0.9);
  z-index: 2;
}

.spotlight-crown svg {
  width: 30px;
  height: 30px;
  stroke: #facc15;
  filter: drop-shadow(0 4px 8px rgba(250, 204, 21, 0.55));
}

@keyframes crownFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

.spotlight-card .spotlight-body,
.spotlight-card .spotlight-ribbon {
  position: relative;
  z-index: 1;
}

.spotlight-ribbon {
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.75);
}

.spotlight-card.rank-1 {
  border-color: rgba(251, 191, 36, 0.28);
}

.spotlight-card.rank-2 {
  border-color: rgba(209, 213, 219, 0.25);
}

.spotlight-card.rank-3 {
  border-color: rgba(249, 115, 22, 0.28);
}

.spotlight-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.spotlight-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.spotlight-crest {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.spotlight-crest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spotlight-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(236, 72, 153, 0.18));
  font-weight: 900;
  color: rgba(226, 232, 240, 0.9);
  letter-spacing: 0.04em;
}

.spotlight-meta {
  display: grid;
  gap: 0.3rem;
}

.spotlight-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.spotlight-team {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.75);
}

.spotlight-role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.65);
}

.spotlight-metric {
  display: grid;
  justify-items: flex-end;
  gap: 0.25rem;
}

.metric-value {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.85), rgba(99, 102, 241, 0.75));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(148, 163, 184, 0.65);
}

.scorers-premium-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.scorer-card-premium.compact-card {
  padding: 1.6rem 1.2rem;
  border-radius: 24px;
  backdrop-filter: blur(8px);
}

/* === Teams Premium Grid === */
.teams-premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.25rem;
}

.team-card-premium {
  background: var(--bg-elevated);
  border: 1px solid var(--border-primary);
  border-radius: var(--radius-xl);
  padding: 2.4rem 2rem;
  text-align: center;
  transition: var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.team-roster-static {
  margin-top: 2rem;
  padding: 1.5rem 1.25rem 1.7rem;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.62);
  border: 1px solid rgba(148, 163, 184, 0.18);
  display: grid;
  gap: 1.25rem;
  text-align: left;
  flex: 1 1 auto;
}

.team-roster-static .roster-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
}

.team-roster-static .roster-name {
  color: rgba(226, 232, 240, 0.95);
  font-size: 1.05rem;
  font-weight: 700;
}

.team-roster-static .roster-sub {
  color: rgba(148, 163, 184, 0.7);
  font-size: 0.9rem;
}

.team-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--accent-primary);
}

.team-card-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.team-logo-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border-primary);
}

.team-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto;
  border: 3px solid var(--border-primary);
}

.team-card-name {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 1.85rem;
  color: var(--text-primary);
}

.team-info-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.65);
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.team-info-btn:hover {
  border-color: rgba(226, 232, 240, 0.75);
  color: white;
  transform: translateY(-1px);
}

.team-roster {
  position: absolute;
  inset: 0;
  padding: 2rem 1.5rem;
  background: rgba(8, 11, 23, 0.92);
  backdrop-filter: blur(12px) saturate(140%);
  display: grid;
  align-content: flex-start;
  gap: 1.5rem;
  transform: translateY(105%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.team-roster.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.roster-content {
  display: grid;
  gap: 1.25rem;
}

.roster-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.roster-title {
  display: grid;
  gap: 0.3rem;
  text-align: left;
}

.roster-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.roster-sub {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(148, 163, 184, 0.65);
}

.team-roster-close {
  appearance: none;
  border: none;
  background: rgba(31, 41, 55, 0.65);
  color: rgba(226, 232, 240, 0.85);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.team-roster-close:hover {
  background: rgba(99, 102, 241, 0.3);
  color: white;
}

.roster-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}


.roster-player {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(24, 31, 45, 0.78);
}

.player-ident {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.roster-player .player-name {
  font-weight: 700;
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.98);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.roster-player .player-role {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.72);
}

.player-insights {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.roster-player .player-goals {
  font-weight: 700;
  color: rgba(96, 165, 250, 0.95);
  background: rgba(59, 130, 246, 0.22);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.player-info-btn {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(30, 41, 59, 0.6);
  color: rgba(191, 219, 254, 0.96);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.player-info-btn:hover,
.player-info-btn:focus {
  border-color: rgba(99, 102, 241, 0.7);
  background: rgba(79, 70, 229, 0.28);
  color: white;
  outline: none;
}

.player-info-btn:active {
  transform: translateY(1px);
}

.roster-empty {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.7);
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(24, 31, 45, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.player-info-layer {
  position: fixed;
  inset: 0;
  background: rgba(8, 11, 20, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}

.player-info-layer.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.player-info-dialog {
  position: relative;
  width: min(420px, 100%);
  border-radius: 24px;
  padding: 2.2rem;
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.88));
  border: 1px solid rgba(99, 102, 241, 0.35);
  box-shadow: 0 30px 60px -25px rgba(15, 23, 42, 0.85);
  color: rgba(226, 232, 240, 0.98);
}

.player-info-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(30, 41, 59, 0.7);
  color: rgba(226, 232, 240, 0.85);
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.player-info-close:hover,
.player-info-close:focus {
  background: rgba(99, 102, 241, 0.4);
  color: white;
  outline: none;
}

.player-info-header {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.player-info-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(191, 219, 254, 0.9);
  overflow: hidden;
}

.player-info-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-info-text {
  flex: 1;
  min-width: 0;
}

.player-info-name {
  font-size: 1.45rem;
  margin: 0;
  line-height: 1.2;
}

.player-info-meta {
  margin-top: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.78);
}

.player-info-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.player-info-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0.85rem;
  border-radius: 18px;
  background: rgba(11, 15, 29, 0.75);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.player-info-stat .label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(148, 163, 184, 0.68);
}

.player-info-stat .value {
  font-size: 1.35rem;
  font-weight: 700;
  color: rgba(191, 219, 254, 0.98);
}

.player-info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-height: 1.5rem;
}

.player-info-tags .tag-chip {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.22);
  color: rgba(191, 219, 254, 0.95);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(59, 130, 246, 0.32);
}

.player-info-tags .no-tags {
  font-size: 0.78rem;
  color: rgba(148, 163, 184, 0.65);
}

.player-info-history h4 {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.92);
}

.player-info-seasons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.player-info-seasons li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.75rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.9);
}

.player-info-seasons li.is-current {
  border-color: rgba(99, 102, 241, 0.6);
  background: rgba(79, 70, 229, 0.18);
}

.player-info-seasons li .season-label {
  font-weight: 600;
}

.player-info-seasons li .season-goals {
  font-weight: 700;
  color: rgba(96, 165, 250, 0.95);
}

.player-info-seasons li.empty {
  justify-content: center;
  color: rgba(148, 163, 184, 0.6);
}

@media (max-width: 640px) {
  .player-info-dialog {
    padding: 1.8rem;
  }

  .player-info-logo {
    width: 60px;
    height: 60px;
  }

  .player-info-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .teams-premium-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.85rem;
  }

  .team-card-premium {
    padding: 2.1rem 1.7rem;
  }
}

@media (max-width: 640px) {
  .teams-premium-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
  }

  .team-card-premium {
    padding: 1.9rem 1.4rem;
  }

  .team-card-stats {
    gap: 1rem;
    justify-content: center;
  }

  .team-stat-value {
    font-size: 1.55rem;
  }

  .team-stat-item {
    min-width: 0;
  }

  .roster-player {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .player-insights {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.4rem;
    width: 100%;
  }

  .roster-player .player-name {
    white-space: normal;
  }

  .player-info-btn {
    padding: 0.35rem 0.75rem;
  }

  .spotlight-card {
    text-align: center;
  }

  .spotlight-body {
    align-items: center;
    gap: 1.2rem;
    width: 100%;
  }

  .spotlight-info {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .spotlight-meta {
    text-align: center;
  }

  .spotlight-metric {
    justify-items: center;
    width: 100%;
  }
}

/* === Goalkeeper Game === */
.game-page {
  min-height: 100vh;
}

.game-hero {
  position: relative;
  padding: 6rem 0 3.5rem;
  overflow: hidden;
}

.game-hero::before,
.game-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(59, 130, 246, 0.15), transparent 55%),
              radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.12), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

.game-hero::after {
  background: radial-gradient(circle at 50% -20%, rgba(34, 211, 238, 0.15), transparent 60%);
  opacity: 0.6;
}

.game-hero .section-container {
  position: relative;
  z-index: 1;
}

.game-hero-content {
  max-width: 720px;
  display: grid;
  gap: 1.8rem;
}

.game-hero-title {
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(226, 232, 240, 0.98);
}

.game-hero-title .gradient-text {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.9), rgba(59, 130, 246, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.game-hero-sub {
  font-size: 1.05rem;
  color: rgba(203, 213, 225, 0.78);
  line-height: 1.75;
}

.game-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.game-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(226, 232, 240, 0.82);
}

.game-stage.section-wrapper {
  padding-top: 0;
}

.goalkeeper-game {
  position: relative;
  display: grid;
  gap: 1.8rem;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 34px;
  padding: 2.2rem;
  box-shadow: 0 40px 120px -60px rgba(8, 11, 23, 0.9);
  overflow: hidden;
}

.goalkeeper-game::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 105%, rgba(59, 130, 246, 0.25), transparent 60%);
  opacity: 0.75;
  pointer-events: none;
}

.goalkeeper-game > * {
  position: relative;
  z-index: 1;
}

.game-scoreboard {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.score-card {
  padding: 1rem 1.1rem;
  border-radius: 24px;
  background: rgba(15, 32, 52, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.18);
  display: grid;
  gap: 0.4rem;
  text-align: center;
}

.score-card .label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.68);
}

.score-card .value {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: rgba(226, 232, 240, 0.95);
}

.score-card.accent .value {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.85), rgba(59, 130, 246, 0.9));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.pitch {
  position: relative;
  width: min(680px, 100%);
  margin: 0 auto;
  aspect-ratio: 3 / 2;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(9, 14, 24, 0.92), rgba(14, 22, 39, 0.85));
  border: 1px solid rgba(148, 163, 184, 0.12);
  overflow: hidden;
}

.goal-frame {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 40%;
  border-radius: 24px 24px 14px 14px;
  border: 2px solid rgba(226, 232, 240, 0.35);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  overflow: hidden;
}

.goal-net {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(226, 232, 240, 0.1) 1px, transparent 1px),
                    linear-gradient(0deg, rgba(226, 232, 240, 0.1) 1px, transparent 1px);
  background-size: 32px 24px;
  opacity: 0.6;
  pointer-events: none;
}

.goalie {
  position: absolute;
  bottom: 16%;
  width: 152px;
  height: 126px;
  margin-left: -76px;
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: left 0.32s cubic-bezier(0.22, 0.8, 0.35, 1), transform 0.32s ease;
  transform-origin: center bottom;
}

.goalie-shadow {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0) 70%);
  filter: blur(12px);
  opacity: 0.38;
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.goalie-core {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transition: transform 0.32s ease;
}

.goalie-torso {
  width: 94px;
  height: 86px;
  border-radius: 28px 28px 34px 34px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.92), rgba(236, 72, 153, 0.82));
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 24px 50px -28px rgba(59, 130, 246, 0.9);
  position: relative;
  overflow: hidden;
}

.goalie-torso::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 18px;
  right: 18px;
  height: 16px;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
  opacity: 0.9;
}

.goalie-torso::after {
  content: '';
  position: absolute;
  inset: 16px 18px 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.22), rgba(15, 23, 42, 0.45));
  mix-blend-mode: screen;
}

.goalie-arm {
  position: absolute;
  top: 26px;
  width: 74px;
  height: 30px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.95), rgba(236, 72, 153, 0.75));
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 14px 30px -18px rgba(59, 130, 246, 0.9);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 6px;
}

.goalie-arm.left {
  left: -34px;
  transform-origin: 100% 50%;
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: 6px;
}

.goalie-arm.right {
  right: -34px;
  transform-origin: 0% 50%;
}

.goalie-glove {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.92), rgba(148, 163, 184, 0.55));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: inset 0 6px 12px -6px rgba(15, 23, 42, 0.38);
}

.goalie-leg {
  position: absolute;
  bottom: -6px;
  width: 26px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.65));
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 18px 30px -16px rgba(15, 23, 42, 0.7);
  transform-origin: top center;
  transition: transform 0.28s ease;
  overflow: hidden;
}

.goalie-leg::after {
  content: '';
  position: absolute;
  inset: 8px 6px 6px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.35), rgba(59, 130, 246, 0));
  opacity: 0.9;
}

.goalie-leg.left { left: 34px; }
.goalie-leg.right { right: 34px; }

.goalie-head {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.95), rgba(244, 114, 182, 0.88));
  border: 1px solid rgba(251, 191, 36, 0.55);
  box-shadow: 0 18px 40px -22px rgba(251, 191, 36, 0.7);
  display: grid;
  place-items: center;
}

.goalie-mask {
  width: 68%;
  height: 60%;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.65));
  border: 2px solid rgba(159, 18, 57, 0.25);
  box-shadow: inset 0 -4px 8px -4px rgba(248, 113, 113, 0.45);
  position: relative;
}

.goalie-mask::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 8px;
  right: 8px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.65), rgba(148, 163, 184, 0.2));
  pointer-events: none;
}

.goalie-mask::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  height: 12px;
  border-radius: 8px;
  border: 1px solid rgba(248, 113, 113, 0.35);
  box-shadow: inset 0 2px 4px -2px rgba(248, 113, 113, 0.35);
  pointer-events: none;
}

.goalie.lane-0 { left: 20%; }
.goalie.lane-1 { left: 50%; }
.goalie.lane-2 { left: 80%; }

.goalie.dive-left {
  animation: goalieDiveLeft 0.85s ease forwards;
}

.goalie.dive-right {
  animation: goalieDiveRight 0.85s ease forwards;
}

.goalie.save-center {
  animation: goalieCatch 0.85s ease forwards;
}

.goalie.dive-left .goalie-core {
  transform: rotate(-4deg) translate(-6px, -6px);
}

.goalie.dive-right .goalie-core {
  transform: rotate(4deg) translate(6px, -6px);
}

.goalie.save-center .goalie-core {
  transform: translateY(-6px) scale(1.02);
}

.goalie.dive-left .goalie-shadow {
  transform: translate(-66%, -6px) scaleX(1.24);
  opacity: 0.45;
}

.goalie.dive-right .goalie-shadow {
  transform: translate(-34%, -6px) scaleX(1.24);
  opacity: 0.45;
}

.goalie.save-center .goalie-shadow {
  transform: translate(-50%, -8px) scale(1.08, 0.92);
  opacity: 0.48;
}

.goalie.dive-left .goalie-arm.left {
  transform: rotate(-42deg) translate(-10px, -14px) scale(1.05);
  box-shadow: 0 22px 34px -20px rgba(59, 130, 246, 0.95);
}

.goalie.dive-left .goalie-arm.right {
  transform: rotate(-10deg) translate(-6px, -8px);
}

.goalie.dive-left .goalie-leg.left {
  transform: rotate(-16deg) translate(-4px, -6px);
}

.goalie.dive-left .goalie-leg.right {
  transform: rotate(10deg) translate(6px, -4px);
}

.goalie.dive-right .goalie-arm.right {
  transform: rotate(42deg) translate(10px, -14px) scale(1.05);
  box-shadow: 0 22px 34px -20px rgba(236, 72, 153, 0.95);
}

.goalie.dive-right .goalie-arm.left {
  transform: rotate(10deg) translate(6px, -8px);
}

.goalie.dive-right .goalie-leg.right {
  transform: rotate(16deg) translate(4px, -6px);
}

.goalie.dive-right .goalie-leg.left {
  transform: rotate(-10deg) translate(-6px, -4px);
}

.goalie.save-center .goalie-arm.left,
.goalie.save-center .goalie-arm.right {
  transform: rotate(0deg) translate(0, -16px) scale(1.08);
  box-shadow: 0 18px 28px -18px rgba(236, 72, 153, 0.8);
}

.goalie.save-center .goalie-leg.left,
.goalie.save-center .goalie-leg.right {
  transform: scale(0.96) translate(0, -4px);
}

.game-ball {
  position: absolute;
  bottom: 32px;
  left: 50%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f8fafc 35%, #0ea5e9 70%, #1e40af 100%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  transform: translate3d(-50%, 0, 0);
  box-shadow: 0 12px 25px -12px rgba(14, 165, 233, 0.85);
  pointer-events: none;
  will-change: transform, opacity;
}

.shot-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.shot-btn {
  padding: 0.85rem 1.8rem;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(17, 24, 39, 0.8);
  color: rgba(226, 232, 240, 0.9);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.shot-btn:hover,
.shot-btn:focus-visible {
  border-color: rgba(236, 72, 153, 0.55);
  color: rgba(236, 72, 153, 0.95);
  transform: translateY(-2px);
}

.shot-btn:focus-visible {
  outline: 2px solid rgba(236, 72, 153, 0.55);
  outline-offset: 2px;
}

.score-toast {
  min-height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.75);
}

.score-toast.goal {
  color: rgba(110, 231, 183, 0.95);
}

.score-toast.save {
  color: rgba(248, 113, 113, 0.95);
}

.game-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.75);
}

.reset-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: rgba(15, 23, 42, 0.85);
  color: rgba(226, 232, 240, 0.9);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-fast);
}

.reset-btn:hover { border-color: rgba(96, 165, 250, 0.55); color: rgba(96, 165, 250, 0.95); }

.game-hint {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes goalieDiveLeft {
  0% { transform: translate(-50%, 0) rotate(0deg); }
  35% { transform: translate(-105%, -32%) rotate(-12deg); }
  55% { transform: translate(-115%, -24%) rotate(-9deg); }
  100% { transform: translate(-50%, 0) rotate(0deg); }
}

@keyframes goalieDiveRight {
  0% { transform: translate(-50%, 0) rotate(0deg); }
  35% { transform: translate(65%, -32%) rotate(12deg); }
  55% { transform: translate(70%, -24%) rotate(9deg); }
  100% { transform: translate(-50%, 0) rotate(0deg); }
}

@keyframes goalieCatch {
  0% { transform: translate(-50%, 0) scale(1); }
  45% { transform: translate(-50%, -26%) scale(1.08); }
  65% { transform: translate(-50%, -21%) scale(1.04); }
  100% { transform: translate(-50%, 0) scale(1); }
}

/* Small screens */
@media (max-width: 768px) {
  .goalkeeper-game {
    padding: 1.5rem;
  }

  .game-scoreboard {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pitch {
    aspect-ratio: 4 / 3;
    border-radius: 26px;
  }

  .goalie {
    width: 118px;
    height: 98px;
    margin-left: -59px;
  }

  .goalie-shadow {
    width: 150px;
    height: 60px;
  }

  .goalie-torso {
    width: 78px;
    height: 72px;
  }

  .goalie-arm {
    top: 22px;
    width: 60px;
    height: 24px;
  }

  .goalie-glove {
    width: 24px;
    height: 24px;
  }

  .goalie-leg {
    width: 22px;
    height: 46px;
  }

  .goalie-head {
    width: 46px;
    height: 46px;
    top: -28px;
  }

  .shot-controls {
    flex-wrap: wrap;
  }

  .shot-btn {
    flex: 1 1 120px;
    text-align: center;
  }

  .game-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .game-hero {
    padding: 5rem 0 3rem;
  }

  .game-hero-meta {
    gap: 0.5rem;
  }

  .pitch {
    aspect-ratio: 1;
  }

  .goalie {
    bottom: 21%;
  }

  .goalie.lane-0 { left: 24%; }
  .goalie.lane-1 { left: 50%; }
  .goalie.lane-2 { left: 76%; }

  .game-ball {
    bottom: 20px;
  }
}

.team-card-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.team-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 96px;
  flex: 1 1 0;
  text-align: center;
}

.team-stat-value {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--accent-primary);
}

.team-stat-label {
  font-size: 0.82rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* === Premium Footer === */
.premium-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-primary);
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4.footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 1.25rem;
}

.footer-logo {
  width: 52px;
  height: 52px;
  color: var(--accent-primary);
  display: block;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.35));
  border: 2px solid rgba(99, 102, 241, 0.3);
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.15), rgba(15, 23, 42, 0.5));
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.06), 0 4px 14px -4px rgba(0,0,0,0.4);
  padding: 3px;
}

.footer-desc {
  color: var(--text-tertiary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-primary);
  padding-left: 0.5rem;
}

.footer-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-stat-item {
  font-size: 0.875rem;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-secondary);
  font-size: 0.875rem;
  color: var(--text-tertiary);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-version {
  font-weight: 600;
  color: var(--accent-primary);
}

/* ══ SAYFA GÖRÜNTÜLENME SAYACI ══ */
.pv-section {
  display: flex;
  justify-content: center;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border-secondary);
}

@keyframes pvGlowPulse {
  0%,100% { opacity: .55; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.12); }
}
@keyframes pvShine {
  0%   { transform: translateX(-120%) skewX(-12deg); }
  100% { transform: translateX(220%)  skewX(-12deg); }
}
@keyframes pvFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}

.pv-widget {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 32px;
  background: var(--bg-elevated);
  border: 1px solid rgba(var(--accent-primary-rgb, 59,130,246), .22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(var(--accent-primary-rgb, 59,130,246), .06),
    0 8px 32px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.05);
  animation: pvFloat 5s ease-in-out infinite;
  cursor: default;
  user-select: none;
  transition: box-shadow .3s, transform .3s;
}
.pv-widget:hover {
  box-shadow:
    0 0 0 1px rgba(var(--accent-primary-rgb, 59,130,246), .18),
    0 0 40px rgba(var(--accent-primary-rgb, 59,130,246), .18),
    0 16px 48px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.06);
  transform: translateY(-3px);
  animation: none;
}

/* Arka plan glow halkası */
.pv-glow-ring {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-primary-rgb,59,130,246),.18) 0%, transparent 70%);
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  animation: pvGlowPulse 3.5s ease-in-out infinite;
}

/* Shine süpürme */
.pv-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    transparent 30%,
    rgba(255,255,255,.05) 50%,
    transparent 70%);
  animation: pvShine 5s ease-in-out infinite;
  pointer-events: none;
}

/* Göz ikonu */
.pv-icon-wrap {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg,
    rgba(var(--accent-primary-rgb,59,130,246),.2) 0%,
    rgba(139,92,246,.15) 100%);
  border: 1px solid rgba(var(--accent-primary-rgb,59,130,246),.2);
}
.pv-eye {
  width: 30px;
  height: 18px;
  color: var(--accent-primary, #3b82f6);
}

/* Metin bloğu */
.pv-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pv-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-tertiary, #64748b);
}
.pv-count {
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-primary,#3b82f6) 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: font-size .3s ease;
  display: block;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
  .navbar-container {
    padding: 1rem 1.5rem;
  }
  
  .navbar-menu {
    display: none;
  }
  
  .section-container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .navbar-container {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .navbar-brand {
    flex: 1;
  }
  
  .section-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .premium-hero.all-matches-hero .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .match-meta-row {
    gap: 0.6rem;
  }
  
  .meta-chip {
    min-width: calc(50% - 0.6rem);
  }

  .leader-stats {
    flex-direction: column;
  }

  .leader-chip {
    width: 100%;
  }

  .spotlight-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .spotlight-metric {
    justify-items: flex-start;
  }
  
  .team-info-btn {
    top: 1.2rem;
    right: 1.2rem;
  }
  
  .team-roster {
    padding: 1.8rem 1.25rem;
  }
  
  .roster-player {
    grid-template-columns: 1fr auto;
  }
  
  .matches-grid {
    grid-template-columns: 1fr;
  }
  
  .section-wrapper {
    padding: 3rem 0;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar-container {
    padding: 0.75rem 1rem;
  }

  .navbar-brand {
    padding: 0.35rem 0.55rem;
    gap: 0.55rem;
  }

  .navbar-brand .brand-icon {
    width: 40px;
    height: 40px;
    padding: 3px;
  }
  
  .brand-text {
    font-size: 1rem;
  }
  
  .premium-hero {
    min-height: 70vh;
  }
  
  .hero-content-wrapper {
    padding: 2rem 1rem;
  }
  
  .hero-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .premium-hero.all-matches-hero .hero-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .section-container {
    padding: 0 1rem;
  }
  
  .match-teams-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .score-block {
    order: -1;
  }
  
  .section-actions {
    justify-content: flex-start;
    gap: 0.75rem;
  }
  
  .meta-chip {
    min-width: 100%;
  }
  
  .match-events-detailed {
    gap: 1rem;
  }
  
  .leader-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .leader-rank {
    width: 42px;
    height: 42px;
  }
  
  .spotlight-card {
    padding: 1.4rem 1.5rem;
  }
  
  .team-info-btn {
    top: 1rem;
    right: 1rem;
  }
  
  .team-roster {
    padding: 1.6rem 1.1rem;
  }
  
  .roster-player {
    grid-template-columns: 1fr;
  }
  
  .roster-player .player-goals {
    justify-self: flex-start;
  }
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.match-card-premium,
.scorer-card-premium,
.team-card-premium {
  animation: fadeInUp 0.5s ease-out;
}

/* Ge�mi� Sezonlar Section */
.seasons-archive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.season-archive-card {
  background: linear-gradient(135deg, rgba(20, 30, 48, 0.8) 0%, rgba(10, 20, 35, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.season-archive-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.season-archive-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.season-archive-title h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem 0;
}

.season-archive-date {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.season-archive-champion {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #fbbf24;
  font-weight: 600;
}

.season-archive-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.archive-stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}

.archive-stat-item .stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 0.25rem;
}

.archive-stat-item .stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.season-archive-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  margin-bottom: 0.75rem;
}

.highlight-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.highlight-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
}

.highlight-info strong {
  color: #fff;
  font-size: 1rem;
}

.highlight-info span {
  font-size: 0.85rem;
  color: var(--primary-light);
}

.season-details-btn {
  width: 100%;
  padding: 0.875rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.season-details-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.season-details-btn svg {
  transition: transform 0.3s ease;
}

.season-details-btn:hover svg {
  transform: translateX(5px);
}

/* Season Modal */
.season-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.season-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.season-modal-content {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(20, 30, 48, 0.95) 0%, rgba(10, 20, 35, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.season-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.season-modal-header h2 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}

.season-modal-close {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.3s ease;
}

.season-modal-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
}

.season-modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.season-detail-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.season-tab {
  flex: 1;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.season-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.season-tab:hover:not(.active) {
  background: rgba(255,255,255,0.08);
}

.season-tab-content {
  display: none;
}

.season-tab-content.active {
  display: block;
}

.season-table-wrapper {
  overflow-x: auto;
}

.season-table {
  width: 100%;
  border-collapse: collapse;
}

.season-table thead th {
  background: rgba(255,255,255,0.05);
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}

.season-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.2s ease;
}

.season-table tbody tr:hover {
  background: rgba(255,255,255,0.03);
}

.season-table tbody td {
  padding: 1rem;
  text-align: center;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}

.season-table .rank {
  font-weight: 700;
  color: var(--primary-light);
}

.season-table .team-name {
  text-align: left;
  font-weight: 600;
}

.season-table .points {
  color: var(--primary-light);
  font-size: 1.1rem;
}

.season-table .positive {
  color: #10b981;
}

.season-table .negative {
  color: #ef4444;
}

.scorers-list {
  display: grid;
  gap: 1rem;
}

.scorer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.scorer-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--primary-light);
}

.scorer-rank {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 10px;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.scorer-name {
  flex: 1;
  font-weight: 600;
  color: #fff;
  font-size: 1.05rem;
}

.scorer-goals {
  font-weight: 700;
  color: var(--primary-light);
  font-size: 1.1rem;
}

.no-data {
  text-align: center;
  padding: 3rem;
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
}

.empty-state-premium {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state-premium .empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  opacity: 0.3;
  color: var(--primary-light);
}

.empty-state-premium h3 {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}

.empty-state-premium p {
  color: rgba(255,255,255,0.5);
}

