:root {
  --bg: #05070a;
  --bg-soft: #080b10;
  --card: #11161d;
  --card-2: #0d1117;
  --line: rgba(255, 255, 255, 0.09);
  --line-gold: rgba(214, 167, 53, 0.28);
  --gold: #d6a735;
  --gold-light: #f0d47a;
  --gold-dark: #8e6815;
  --white: #f5f5f5;
  --muted: #a7adb7;
  --green: #19c37d;
  --red: #ff4d4d;
  --blue: #5c96ff;
  --max: 1240px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 4%, rgba(214, 167, 53, 0.08), transparent 25rem),
    linear-gradient(180deg, #06080c 0%, var(--bg) 45%, #07090d 100%);
  color: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 12px 16px;
  background: var(--gold);
  color: #08090b;
  font-weight: 800;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 10, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 54px;
  max-width: none;
  height: 54px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand-copy i {
  color: var(--gold);
  font-style: normal;
}

.brand-copy small {
  color: #747b86;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.21em;
}

.desktop-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 1.5vw, 26px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 28px 0 25px;
  color: #b9bec7;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 2px;
  background: var(--gold);
  transition: right 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.menu-button {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.icon-button svg,
.search-input-wrap svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.menu-button {
  gap: 5px;
}

.menu-button span {
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-button.open span:first-child {
  transform: translateY(3.2px) rotate(45deg);
}

.menu-button.open span:last-child {
  transform: translateY(-3.2px) rotate(-45deg);
}

.desktop-submit {
  display: none !important;
}

.mobile-nav {
  display: grid;
  max-height: 0;
  overflow: hidden;
  padding-inline: 16px;
  background: rgba(8, 11, 16, 0.98);
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.mobile-nav.open {
  max-height: 480px;
  padding-block: 10px 22px;
}

.mobile-nav a {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

main {
  min-height: 70vh;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: linear-gradient(135deg, #e5bc51, #bb8720);
  color: #08090b;
  box-shadow: 0 12px 30px rgba(214, 167, 53, 0.14);
}

.button-dark {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
}

.button-dark:hover {
  border-color: var(--line-gold);
  background: rgba(214, 167, 53, 0.05);
}

.button-compact {
  min-height: 40px;
  padding-inline: 15px;
  font-size: 11px;
  border-radius: 9px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "AS";
  position: absolute;
  right: -2vw;
  top: 50%;
  transform: translateY(-55%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(214, 167, 53, 0.055);
  font-size: min(43vw, 640px);
  font-style: italic;
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.13em;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 54px;
  padding-block: 76px;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 20px;
  font-size: clamp(45px, 8vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.hero-copy h1 span {
  display: block;
  color: var(--gold);
}

.hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 38px;
}

.proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.proof-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 12px;
}

.proof-item strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.proof-item small {
  color: #737a85;
  font-size: 9px;
}

.market-open {
  position: relative;
  overflow: hidden;
  padding: 42px 0 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 76% 10%, rgba(214, 167, 53, 0.09), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent);
}

.market-open::before {
  content: "AS";
  position: absolute;
  right: -40px;
  top: 16px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(214, 167, 53, 0.045);
  font-size: 330px;
  font-style: italic;
  font-weight: 950;
  line-height: 0.75;
  letter-spacing: -0.14em;
  pointer-events: none;
}

.market-open-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.market-intro {
  align-self: center;
}

.market-intro h1 {
  max-width: 610px;
  margin: 15px 0 15px;
  font-size: clamp(42px, 6.5vw, 68px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.market-intro h1 span {
  color: var(--gold);
}

.market-intro > p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.market-intro .hero-actions {
  align-items: center;
  margin-top: 23px;
}

.market-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #6f7782;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.market-stats strong {
  margin-right: 4px;
  color: var(--white);
  font-size: 11px;
}

.lead-story {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 21px;
  border: 1px solid var(--line-gold);
  border-radius: 19px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(214, 167, 53, 0.08), transparent 43%),
    rgba(14, 18, 24, 0.95);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.26);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.lead-story::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(214, 167, 53, 0.09);
  border-radius: 50%;
}

.lead-story:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 167, 53, 0.5);
}

.lead-story-top,
.lead-story-main,
.lead-story-footer {
  position: relative;
  z-index: 1;
}

.lead-story-top,
.lead-story-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.lead-story-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-block: auto;
  padding: 25px 0;
}

.lead-story-main .position-tag {
  display: block;
  margin-top: 13px;
}

.lead-story-main h2 {
  margin: 7px 0 9px;
  font-size: clamp(27px, 4vw, 39px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.lead-story-main h2 span {
  color: var(--gold);
}

.lead-story-main p {
  max-width: 430px;
  margin: 0;
  color: #949ba5;
  font-size: 10px;
  line-height: 1.6;
}

.lead-story-main .score-ring {
  width: 94px;
  height: 94px;
}

.lead-story-footer {
  padding-top: 15px;
  border-top: 1px solid var(--line);
  color: #6d7580;
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.lead-story-footer strong {
  color: var(--gold-light);
}

.quick-signals {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 13px 13px 0 0;
  overflow: hidden;
  background: var(--line);
}

.quick-signals-label,
.quick-signals a {
  display: flex;
  align-items: center;
  min-height: 47px;
  padding: 0 15px;
  background: #0b0f14;
}

.quick-signals-label {
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-signals a {
  justify-content: space-between;
  gap: 15px;
  color: #9ca3ad;
  font-size: 9px;
  font-weight: 750;
  transition: background 0.2s ease, color 0.2s ease;
}

.quick-signals a:hover {
  background: #11161d;
  color: var(--white);
}

.quick-signals a strong {
  color: var(--gold-light);
  font-size: 13px;
}

.dashboard-shell {
  position: relative;
  max-width: 520px;
  margin-inline: auto;
}

.dashboard-shell::before {
  content: "";
  position: absolute;
  inset: -40px;
  z-index: -1;
  background: radial-gradient(circle, rgba(214, 167, 53, 0.18), transparent 65%);
  filter: blur(18px);
}

.dashboard-card {
  border: 1px solid rgba(214, 167, 53, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent 38%),
    rgba(14, 18, 24, 0.95);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c8cdd4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.live-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(25, 195, 125, 0.1);
}

.dash-top small {
  color: #656d78;
  font-size: 9px;
}

.dash-player {
  padding: 28px 22px 20px;
}

.dash-name-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.dash-player h2 {
  margin: 8px 0 3px;
  font-size: clamp(25px, 6vw, 39px);
  letter-spacing: -0.04em;
}

.dash-player > p,
.dash-name-row p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.position-tag {
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.score-ring {
  --score: 72;
  width: 88px;
  height: 88px;
  flex: none;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(var(--gold) calc(var(--score) * 1%), #242a32 0);
}

.score-ring::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  background: var(--card-2);
}

.score-ring > span {
  position: relative;
  z-index: 1;
  text-align: center;
}

.score-ring strong {
  display: block;
  font-size: 25px;
  line-height: 0.9;
}

.score-ring small {
  color: #747b85;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.transfer-route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(0, 0, 0, 0.17);
}

.club-chip {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.club-chip:last-child {
  justify-content: flex-end;
  text-align: right;
}

.club-badge {
  width: 35px;
  height: 35px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: #181d24;
  color: var(--white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.club-chip strong {
  display: block;
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.club-chip small {
  color: #68717d;
  font-size: 8px;
}

.route-arrow {
  color: var(--gold);
  font-size: 20px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.signal {
  padding: 15px 10px;
  background: #0e1218;
  text-align: center;
}

.signal small {
  display: block;
  margin-bottom: 5px;
  color: #646c76;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signal strong {
  font-size: 10px;
}

.signal strong.positive {
  color: var(--green);
}

.floating-update {
  position: absolute;
  right: -10px;
  bottom: -28px;
  width: min(260px, 74%);
  padding: 14px 16px;
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  background: rgba(11, 14, 19, 0.96);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.floating-update strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.floating-update span {
  color: #b8bec6;
  font-size: 10px;
  line-height: 1.5;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #080b0f;
}

.ticker-inner {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 14px 0;
  animation: ticker 30s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9ca2ac;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ticker-item b {
  color: var(--white);
}

.ticker-score {
  color: var(--gold);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding-block: 84px;
}

.market-open + .section {
  padding-top: 64px;
}

.section-tight {
  padding-block: 62px;
}

.section-alt {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.section-header h2,
.page-head h1 {
  margin: 12px 0 0;
  font-size: clamp(32px, 5vw, 50px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-header p {
  max-width: 480px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.text-link {
  flex: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line-gold);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 800;
}

.rumour-grid {
  display: grid;
  gap: 16px;
}

.rumour-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.035), transparent 32%),
    var(--card);
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.rumour-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: rgba(214, 167, 53, 0.08);
  filter: blur(12px);
}

.rumour-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-gold);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.25);
}

.card-top,
.card-route,
.card-metrics,
.card-footer {
  position: relative;
  z-index: 1;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.status-badge,
.reliability-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 7.5px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.status-almost-signed,
.status-talks-ongoing {
  border-color: rgba(214, 167, 53, 0.3);
  background: rgba(214, 167, 53, 0.08);
  color: var(--gold-light);
}

.status-done-deal {
  border-color: rgba(25, 195, 125, 0.28);
  background: rgba(25, 195, 125, 0.08);
  color: var(--green);
}

.status-club-interest {
  border-color: rgba(92, 150, 255, 0.25);
  background: rgba(92, 150, 255, 0.08);
  color: #8fb7ff;
}

.status-agent-noise,
.status-fake-watch,
.status-collapsed {
  border-color: rgba(255, 77, 77, 0.25);
  background: rgba(255, 77, 77, 0.07);
  color: #ff8585;
}

.updated {
  color: #626a74;
  font-size: 8.5px;
  text-transform: uppercase;
}

.card-route {
  padding-block: 24px 18px;
}

.card-route small {
  color: #737b85;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.card-route h3 {
  margin: 8px 0 4px;
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.card-route h3 span {
  color: var(--gold);
}

.card-route p {
  margin: 0;
  color: #767e89;
  font-size: 10px;
}

.card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-block: auto 19px;
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
}

.metric {
  padding: 11px 8px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.13);
}

.metric:last-child {
  border-right: 0;
}

.metric small {
  display: block;
  margin-bottom: 5px;
  color: #626a75;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  font-size: 10px;
}

.metric .score-value {
  color: var(--gold-light);
  font-size: 15px;
}

.card-summary {
  min-height: 48px;
  margin: 0 0 18px;
  color: #9ca3ad;
  font-size: 11px;
  line-height: 1.55;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.source-count {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #707883;
  font-size: 9px;
}

.source-count span {
  color: var(--white);
}

.view-link {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 850;
}

.index-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-2);
  overflow: hidden;
}

.index-table {
  width: 100%;
  border-collapse: collapse;
}

.index-table th {
  padding: 14px 17px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.022);
  color: #686f7a;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

.index-table td {
  padding: 16px 17px;
  border-bottom: 1px solid var(--line);
  color: #aeb4bd;
  font-size: 11px;
}

.index-table tr:last-child td {
  border-bottom: 0;
}

.index-table tbody tr {
  transition: background 0.2s ease;
}

.index-table tbody tr:hover {
  background: rgba(214, 167, 53, 0.035);
}

.rank-number {
  color: #555d68;
  font-size: 13px;
  font-weight: 900;
}

.table-player {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
  font-weight: 800;
}

.player-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: linear-gradient(145deg, #232a33, #11151b);
  color: #a6adb7;
  font-size: 10px;
}

.table-score {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-weight: 900;
}

.mini-bar {
  width: 58px;
  height: 3px;
  border-radius: 4px;
  background: #282e36;
  overflow: hidden;
}

.mini-bar span {
  display: block;
  height: 100%;
  background: var(--gold);
}

.club-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.club-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.025), transparent),
    #0e1217;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.club-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-gold);
}

.club-card .club-badge {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: #161b22;
  color: var(--gold-light);
  font-size: 11px;
}

.club-card strong {
  display: block;
  margin-top: 16px;
  font-size: 13px;
}

.club-card small {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: #69717c;
  font-size: 8px;
  text-transform: uppercase;
}

.feature-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-gold);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 15%, rgba(214, 167, 53, 0.14), transparent 25rem),
    #0c1015;
}

.feature-band::after {
  content: "TR";
  position: absolute;
  right: 2%;
  bottom: -20%;
  color: transparent;
  -webkit-text-stroke: 1px rgba(214, 167, 53, 0.08);
  font-size: 210px;
  font-weight: 950;
  letter-spacing: -0.1em;
}

.feature-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 45px 28px;
}

.feature-content h2 {
  margin: 13px 0 15px;
  font-size: clamp(34px, 6vw, 59px);
  letter-spacing: -0.055em;
}

.feature-content p {
  max-width: 640px;
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-clubs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 27px;
}

.feature-clubs span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #c2c7cf;
  font-size: 9px;
  font-weight: 800;
}

.score-explainer {
  display: grid;
  gap: 36px;
  align-items: center;
}

.score-visual {
  width: min(100%, 380px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  margin-inline: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, #10151b 0 39%, transparent 40%),
    conic-gradient(
      #d6a735 0 40%,
      #b88f31 40% 60%,
      #8f722a 60% 75%,
      #6f5d2b 75% 90%,
      #4f4933 90% 100%
    );
  box-shadow: inset 0 0 0 24px #080b10, 0 0 70px rgba(214, 167, 53, 0.08);
}

.score-visual::after {
  content: "";
  position: absolute;
  inset: 29%;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
}

.score-visual strong {
  position: relative;
  z-index: 1;
  font-size: 64px;
  letter-spacing: -0.07em;
}

.score-visual strong span {
  color: #6f7680;
  font-size: 18px;
}

.factor-list {
  display: grid;
  gap: 9px;
}

.factor {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card-2);
}

.factor-number {
  color: #515965;
  font-size: 10px;
  font-weight: 900;
}

.factor strong {
  font-size: 12px;
}

.factor p {
  display: none;
  margin: 4px 0 0;
  color: #6f7782;
  font-size: 9px;
}

.factor-percent {
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 900;
}

.page-hero {
  padding: 70px 0 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(214, 167, 53, 0.05), transparent 42%),
    rgba(255, 255, 255, 0.01);
}

.page-head {
  max-width: 760px;
}

.page-head p {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.filter-button {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: transparent;
  color: #8d949e;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active,
.filter-button:hover {
  border-color: var(--line-gold);
  background: rgba(214, 167, 53, 0.07);
  color: var(--gold-light);
}

.detail-hero {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 75% 50%, rgba(214, 167, 53, 0.09), transparent 24rem),
    #080b10;
}

.detail-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}

.breadcrumb {
  margin-bottom: 22px;
  color: #6f7782;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumb a {
  color: var(--gold-light);
}

.detail-copy h1 {
  margin: 17px 0 10px;
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.detail-transfer {
  color: var(--muted);
  font-size: clamp(17px, 3vw, 25px);
}

.detail-transfer b {
  color: var(--gold-light);
}

.detail-score-panel {
  display: flex;
  align-items: center;
  gap: 25px;
}

.detail-score-panel .score-ring {
  width: 150px;
  height: 150px;
}

.detail-score-panel .score-ring::before {
  inset: 10px;
}

.detail-score-panel .score-ring strong {
  font-size: 46px;
}

.score-meta p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.score-change {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  overflow: hidden;
}

.fact {
  padding: 18px;
  background: var(--card-2);
}

.fact small {
  display: block;
  margin-bottom: 7px;
  color: #636b76;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact strong {
  font-size: 12px;
}

.content-grid {
  display: grid;
  gap: 25px;
}

.panel {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-2);
}

.panel h2 {
  margin: 0 0 23px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  bottom: 13px;
  width: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding: 0 0 24px 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--card-2);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--line-gold);
}

.timeline-item time {
  color: #626a75;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.timeline-item strong {
  display: block;
  margin: 5px 0;
  font-size: 11px;
}

.timeline-item p {
  margin: 0;
  color: #878e98;
  font-size: 10px;
  line-height: 1.55;
}

.source-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.source-row:last-child {
  border-bottom: 0;
}

.source-row strong {
  display: block;
  font-size: 11px;
}

.source-row p {
  margin: 5px 0 0;
  color: #777f89;
  font-size: 9px;
  line-height: 1.5;
}

.tier {
  align-self: start;
  padding: 6px 8px;
  border: 1px solid var(--line-gold);
  border-radius: 6px;
  color: var(--gold-light);
  font-size: 8px;
  font-weight: 850;
}

.analysis-block {
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
}

.analysis-block:first-of-type {
  padding-top: 0;
}

.analysis-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.analysis-block h3 {
  margin: 0 0 10px;
  font-size: 14px;
}

.analysis-block p {
  margin: 0;
  color: #939aa4;
  font-size: 11px;
  line-height: 1.7;
}

.verdict {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.form-shell {
  max-width: 780px;
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #c7cbd1;
  font-size: 10px;
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: #0b0f14;
  color: var(--white);
  padding: 14px;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--gold);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field-help {
  color: #656d78;
  font-size: 9px;
  line-height: 1.5;
}

.prose {
  max-width: 820px;
}

.prose h2 {
  margin: 35px 0 12px;
  font-size: 24px;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: #9ea5af;
  font-size: 13px;
  line-height: 1.75;
}

.prose a {
  color: var(--gold-light);
}

.empty-state {
  padding: 50px 22px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #05070a;
  padding: 60px 0 22px;
}

.footer-top {
  display: grid;
  gap: 44px;
}

.footer-brand p {
  margin: 19px 0 7px;
  color: #b5bbc3;
  font-size: 12px;
}

.footer-note {
  color: #626a74;
  font-size: 9px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.footer-links h3 {
  margin: 0 0 14px;
  color: #d8dbe0;
  font-size: 10px;
}

.footer-links a {
  display: block;
  margin: 9px 0;
  color: #757d88;
  font-size: 10px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #505862;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  align-items: start;
  padding: 110px 16px 30px;
  visibility: hidden;
  opacity: 0;
  background: rgba(3, 4, 6, 0.92);
  backdrop-filter: blur(18px);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.search-overlay.open {
  visibility: visible;
  opacity: 1;
}

.search-panel {
  width: min(100%, 760px);
  margin: 0 auto;
}

.search-panel label {
  display: block;
  margin: 16px 0;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line-gold);
  color: var(--gold);
}

.search-input-wrap input {
  flex: 1;
  padding: 18px 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 17px;
}

.search-close {
  position: absolute;
  right: 22px;
  top: 22px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
}

.search-results {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.search-result {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card-2);
}

.search-result strong {
  font-size: 12px;
}

.search-result small {
  color: #737b86;
  font-size: 9px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 150;
  transform: translate(-50%, 25px);
  min-width: min(320px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(25, 195, 125, 0.3);
  border-radius: 10px;
  visibility: hidden;
  opacity: 0;
  background: #0e1714;
  color: #c6f5df;
  text-align: center;
  font-size: 11px;
  transition: all 0.25s ease;
}

.toast.show {
  transform: translate(-50%, 0);
  visibility: visible;
  opacity: 1;
}

@media (min-width: 640px) {
  .container {
    width: min(calc(100% - 48px), var(--max));
  }

  .rumour-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-signals {
    grid-template-columns: 0.65fr repeat(3, 1fr);
  }

  .club-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .facts-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .form-grid.two-col {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .market-open {
    padding-top: 48px;
  }

  .market-open-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: 58px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(370px, 0.8fr);
    align-items: center;
    gap: 70px;
  }

  .rumour-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .score-explainer {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
  }

  .detail-grid {
    grid-template-columns: 1fr auto;
  }

  .content-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .content-sidebar {
    position: sticky;
    top: 100px;
  }

  .footer-top {
    grid-template-columns: 1.2fr 1fr;
  }

  .factor p {
    display: block;
  }
}

@media (min-width: 1080px) {
  .desktop-nav,
  .desktop-submit {
    display: flex !important;
  }

  .menu-button {
    display: none;
  }
}

@media (min-width: 1180px) {
  .header-inner {
    gap: 30px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .desktop-nav a {
    font-size: 12px;
  }
}

@media (max-width: 760px) {
  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .index-shell {
    overflow-x: auto;
  }

  .index-table {
    min-width: 720px;
  }
}

@media (max-width: 480px) {
  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .signal-grid {
    grid-template-columns: 1fr 1fr;
  }

  .market-open {
    padding-top: 32px;
  }

  .market-intro h1 {
    margin-block: 12px;
    font-size: 38px;
  }

  .market-intro .hero-actions {
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 14px;
    margin-top: 18px;
  }

  .market-intro .button {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 10px;
  }

  .market-intro .text-link {
    font-size: 9px;
  }

  .market-intro > p {
    font-size: 13px;
    line-height: 1.55;
  }

  .market-stats {
    gap: 8px 14px;
    margin-top: 17px;
    padding-top: 14px;
    font-size: 7px;
  }

  .lead-story {
    min-height: 245px;
    padding: 18px;
  }

  .lead-story-main {
    align-items: flex-start;
    padding: 16px 0;
  }

  .lead-story-main .position-tag {
    margin-top: 9px;
  }

  .lead-story-main h2 {
    margin-block: 5px 7px;
    font-size: 24px;
  }

  .lead-story-main p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .lead-story-main .score-ring {
    width: 64px;
    height: 64px;
  }

  .lead-story-main .score-ring strong {
    font-size: 21px;
  }

  .lead-story-footer span:nth-child(2) {
    display: none;
  }

  .quick-signals {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 18px;
  }

  .quick-signals-label {
    display: none;
  }

  .quick-signals a {
    min-width: 0;
    min-height: 43px;
    padding-inline: 8px;
    font-size: 7px;
  }

  .quick-signals a span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .quick-signals a strong {
    font-size: 11px;
  }

  .signal:last-child {
    display: none;
  }

  .club-card {
    min-height: 145px;
    padding: 15px;
  }

  .detail-score-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .score-visual {
    max-width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.admin-shell {
  display: grid;
  gap: 18px;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.admin-toolbar h2 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.admin-toolbar p,
.admin-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.admin-actions,
.admin-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-drafts {
  display: grid;
  gap: 16px;
}

.admin-draft {
  display: grid;
  gap: 18px;
}

.admin-draft-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.admin-draft-head h3 {
  margin: 12px 0 6px;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.admin-draft-head h3 span {
  color: var(--gold);
}

.admin-draft-head p,
.admin-summary,
.admin-source-row {
  margin: 0;
  color: #8f97a2;
  font-size: 11px;
  line-height: 1.6;
}

.admin-score-pill {
  min-width: 82px;
  min-height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-gold);
  border-radius: 18px;
  background: rgba(214, 167, 53, 0.08);
  color: var(--gold-light);
}

.admin-score-pill strong {
  display: block;
  font-size: 28px;
  line-height: 0.9;
}

.admin-score-pill small {
  color: #7f8792;
  font-size: 10px;
}

.admin-edit-grid {
  display: grid;
  gap: 10px;
}

.admin-edit-grid label {
  display: grid;
  gap: 7px;
  color: #c7cbd1;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.admin-edit-grid input,
.admin-edit-grid select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  background: #0b0f14;
  color: var(--white);
  padding: 12px;
}

.admin-edit-grid input:focus,
.admin-edit-grid select:focus {
  border-color: var(--gold);
}

.admin-source-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.admin-source-row a {
  color: var(--gold-light);
  font-weight: 800;
}

.admin-empty {
  background: rgba(255, 255, 255, 0.015);
}

.player-toolbar {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.player-toolbar label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.player-toolbar input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  padding: 15px 16px;
  font: inherit;
}

.player-toolbar input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(214, 167, 53, 0.08);
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.player-card a {
  display: grid;
  gap: 14px;
  height: 100%;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background:
    radial-gradient(circle at top right, rgba(214, 167, 53, 0.11), transparent 34%),
    rgba(17, 22, 29, 0.82);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.player-card a:hover {
  transform: translateY(-4px);
  border-color: var(--line-gold);
  background:
    radial-gradient(circle at top right, rgba(214, 167, 53, 0.18), transparent 38%),
    rgba(17, 22, 29, 0.96);
}

.player-card-top,
.player-meta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.player-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.player-card p {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.player-position {
  border: 1px solid rgba(214, 167, 53, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.player-meta-grid {
  align-items: stretch;
}

.player-meta-grid span {
  flex: 1;
  border-top: 1px solid var(--line);
  padding-top: 11px;
}

.player-meta-grid small {
  display: block;
  color: #7f8792;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.player-meta-grid strong {
  display: block;
  margin-top: 3px;
  font-size: 12px;
}

.player-profile-card .score-circle span {
  font-size: 46px;
}

@media (min-width: 760px) {
  .admin-edit-grid {
    grid-template-columns: 0.7fr repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .admin-toolbar,
  .admin-draft-head {
    flex-direction: column;
  }

  .admin-score-pill {
    min-width: 100%;
  }
}
