.top50-page {
  --accent: #b76e14;
  --accent-soft: #fff5df;
}

.top50-hero {
  position: relative;
  overflow: hidden;
  padding: 38px clamp(22px, 6vw, 68px);
  color: #fff;
  background:
    linear-gradient(115deg, rgba(5, 20, 45, 0.98), rgba(20, 55, 80, 0.87)),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(255, 255, 255, 0.11) 58px 60px),
    #071b35;
}

.top50-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 55%, rgba(226, 167, 58, 0.42));
  pointer-events: none;
}

.top50-hero > * {
  position: relative;
  z-index: 1;
}

.top50-kicker {
  margin: 0 0 8px;
  color: #f4c85e;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.top50-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(42px, 8vw, 82px);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.top50-deck {
  max-width: 720px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.top50-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(170px, 0.34fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.top50-controls label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.top50-controls input,
.top50-controls select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: var(--ink);
  background: #f8fafc;
  font: inherit;
}

.top50-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 16px 2px 10px;
  color: var(--muted);
  font-size: 12px;
}

.top50-meta strong {
  color: var(--ink);
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.watch-player {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(11, 27, 52, 0.055);
}

.watch-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--navy);
  font-size: 13px;
  font-weight: 950;
}

.watch-player h2 {
  margin: 0;
  font-size: 16px;
}

.watch-player p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.position-badge {
  min-width: 44px;
  padding: 7px 8px;
  border: 1px solid #efcf86;
  border-radius: 999px;
  color: #7b4b06;
  background: var(--accent-soft);
  font-size: 10px;
  font-weight: 950;
  text-align: center;
}

.top50-source {
  margin-top: 18px;
  padding: 15px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  color: var(--muted);
  background: #f8fafc;
  font-size: 12px;
  line-height: 1.55;
}

.top50-source a {
  color: var(--navy);
  font-weight: 900;
}

@media (max-width: 760px) {
  .top50-controls,
  .player-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .watch-player {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .watch-number {
    width: 38px;
    height: 38px;
  }

  .position-badge {
    grid-column: 2;
    justify-self: start;
  }
}
