:root {
  --bg: #05080d;
  --panel: #0e1722;
  --panel2: #132235;
  --line: rgba(255, 255, 255, .1);
  --text: #f8fafc;
  --muted: #718399;
  --blue: #3aa4ff;
  --green: #22d36f;
  --gold: #e3b34d;
  --global-live-ticker-height: 39px;
  --global-live-content-offset: 20px;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(0, 0, 0, .35)
}

* {
  box-sizing: border-box
}

html {
  background: var(--bg);
  color-scheme: dark
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, system-ui, sans-serif;
  background:
    radial-gradient(900px 600px at 80% 0, rgba(58, 164, 255, .16), transparent 60%),
    radial-gradient(700px 500px at 0 90%, rgba(34, 211, 111, .08), transparent 60%), var(--bg);
  color: var(--text)
}

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

button,
input {
  font: inherit
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(5, 8, 13, .75);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line)
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: .12em
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #f1c66d, #bf8425);
  color: #06101a
}

nav {
  display: flex;
  gap: 22px;
  align-items: center;
  color: #c9d3dd
}

nav a:hover {
  color: #fff
}

.shell {
  width: min(1180px, calc(100% - 28px));
  margin: auto;
  padding: 58px 0 90px
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18, 31, 46, .96), rgba(7, 12, 19, .98));
  box-shadow: var(--shadow);
  min-height: auto;
}

.tournament-hero {
  padding: 22px;
}

.eyebrow {
  margin: 0 0 10px;
  color: #75bdff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em
}

h1 {
  font-size: clamp(56px, 9vw, 110px);
  line-height: .9;
  letter-spacing: -.06em;
  margin: 0 0 24px
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0;
  letter-spacing: -.03em
}

.hero-copy {
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.4;
  color: #c8d4df;
  max-width: 720px
}

.hero-status {
  align-self: end;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(6, 11, 17, .6);
  display: grid;
  gap: 8px
}

.hero-status small {
  color: var(--muted)
}

.pulse {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px var(--green)
}

.section {
  margin-top: 34px
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 16px
}

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

.tournament-card,
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(19, 34, 53, .96), rgba(7, 13, 21, .98));
  box-shadow: var(--shadow)
}

.tournament-card {
  padding: 26px;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .2s
}

.tournament-card:hover {
  transform: translateY(-3px);
  border-color: rgba(117, 189, 255, .48)
}

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

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em
}

.status.live {
  color: #70ef9f
}

.status.upcoming {
  color: #ffd979
}

.card-title {
  font-size: 31px;
  font-weight: 800;
  letter-spacing: -.03em
}

.card-meta {
  color: var(--muted)
}

.card-arrow {
  font-size: 24px;
  color: #75bdff
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.panel {
  padding: 28px
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 15px;
  font-weight: 800;
  border: 1px solid var(--line);
  cursor: pointer
}

.primary-btn {
  background: linear-gradient(135deg, #66bbff, #2f98ff);
  color: #04101a;
  border: 0
}

.ghost-btn {
  background: transparent;
  color: #fff
}

.search-row {
  display: flex;
  gap: 10px;
  margin-top: 20px
}

.search-row input {
  flex: 1;
  min-height: 52px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: #08111a;
  color: #fff;
  padding: 0 16px
}

.muted {
  color: var(--muted)
}

.footer {
  padding: 0 0 38px;
  text-align: center;
  color: var(--muted)
}

body.tv-mode .topbar {
  display: none
}

body.tv-mode .shell {
  width: min(1500px, calc(100% - 40px));
  padding-top: 28px
}

body.tv-mode .hero {
  display: none
}

body.tv-mode .card-grid {
  grid-template-columns: repeat(3, 1fr)
}

@media(max-width:800px) {
  nav a {
    display: none
  }

  .hero,
  .split {
    grid-template-columns: 1fr
  }

  .hero {
    padding: 28px
  }

  .card-grid {
    grid-template-columns: 1fr
  }

  .search-row {
    flex-direction: column
  }
}

.tournament-title {
  font-size: clamp(44px, 7vw, 88px)
}

.class-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 24px 0
}

.class-tabs:empty {
  display: none;
  margin: 0;
}

.class-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  border: 1px solid var(--line);
  background: #102034;
  color: #fff;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  cursor: pointer
}

.class-pill.active {
  background: linear-gradient(135deg, #66bbff, #2f98ff);
  color: #04101a;
  border-color: transparent
}

.data-panel {
  border-top: 1px solid var(--line);
  padding-top: 20px
}

.player-list {
  display: grid
}

.player-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line)
}

.player-row .rank {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #182a40;
  font-weight: 850
}

.player-row strong {
  display: block;
  font-size: 18px
}

.player-row small {
  display: block;
  color: var(--muted);
  margin-top: 4px
}

.empty-state {
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: 20px;
  background: rgba(8, 17, 26, .5)
}

.empty-state h3 {
  font-size: 24px;
  margin: 0 0 8px
}

.empty-state p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 18px
}

.players-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px
}

.players-toolbar>div {
  display: grid;
  gap: 4px
}

.players-toolbar small {
  color: var(--muted)
}

.players-toolbar input {
  width: min(420px, 100%);
  min-height: 50px;
  border-radius: 15px;
  border: 1px solid var(--line);
  background: #08111a;
  color: #fff;
  padding: 0 16px
}

.player-row-rich {
  grid-template-columns: 48px 1fr auto
}

.player-hcp {
  min-width: 60px;
  text-align: right;
  display: grid
}

.player-hcp span {
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--muted);
  font-weight: 800
}

.player-hcp strong {
  font-size: 18px
}

@media(max-width:700px) {
  .players-toolbar {
    align-items: stretch;
    flex-direction: column
  }

  .players-toolbar input {
    width: 100%
  }
}

.view-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0 4px
}

.view-pill {
  border: 1px solid var(--line);
  background: rgba(8, 17, 26, .65);
  color: #cbd7e3;
  border-radius: 14px;
  padding: 13px 18px;
  font-weight: 850;
  cursor: pointer
}

.view-pill.active {
  background: #f5f8fb;
  color: #07111b;
  border-color: transparent
}

.player-row.player-row-rich {
  width: 100%;
  text-align: left;
  color: inherit;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  cursor: pointer
}

.player-row.player-row-rich:hover {
  background: rgba(255, 255, 255, .035)
}

.score-list {
  display: grid
}

.score-row {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line)
}

.score-row strong {
  display: block;
  font-size: 18px
}

.score-row small {
  display: block;
  color: var(--muted);
  margin-top: 4px
}

.score-main {
  text-align: right;
  min-width: 82px
}

.score-main strong {
  font-size: 22px
}

.engine-ok {
  display: inline-flex;
  width: max-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(34, 211, 111, .12);
  color: #70ef9f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase
}

/* Data Engine 2.0 sortable player table */
.player-table {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(4, 10, 16, .28)
}

.player-table-head,
.player-table-row {
  display: grid;
  grid-template-columns: 52px minmax(240px, 1.45fr) minmax(190px, 1fr) minmax(120px, .65fr) 90px;
  align-items: center;
  column-gap: 12px
}

.player-table-head {
  min-height: 52px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .025)
}

.player-table-head button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-align: left;
  padding: 16px 0;
  cursor: pointer;
  white-space: nowrap
}

.player-table-head button:hover,
.player-table-head button:focus-visible {
  color: #fff
}

.player-table-head .hcp-head {
  text-align: right
}

.head-rank {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900
}

.sort-arrow {
  display: inline-block;
  margin-left: 5px;
  color: #66bbff;
  font-size: 10px
}

.muted-arrow {
  color: #617184;
  opacity: .75
}

.player-table-row {
  width: 100%;
  min-height: 74px;
  padding: 10px 16px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer
}

.player-table-row:last-child {
  border-bottom: 0
}

.player-table-row:hover {
  background: rgba(255, 255, 255, .04)
}

.player-score-shell {
  border-bottom: 1px solid var(--line)
}

.player-score-shell:last-child {
  border-bottom: 0
}

.player-score-shell.is-expanded {
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015))
}

.player-score-shell .player-table-row {
  border-bottom: 0
}

.player-inline-scorecard {
  padding: 0 16px 14px;
  animation: playerScoreExpand .25s ease both
}

@keyframes playerScoreExpand {
  from {
    opacity: 0;
    transform: translateY(-6px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.player-rank {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #182a40;
  font-weight: 850
}

.player-cell {
  min-width: 0
}

.player-cell strong {
  display: block;
  font-size: 17px
}

.player-cell small {
  display: none;
  color: var(--muted);
  margin-top: 4px
}

.player-club-cell,
.player-category-cell {
  color: #c7d3df;
  font-size: 14px
}

.player-hcp-cell {
  text-align: right;
  font-variant-numeric: tabular-nums
}

.player-hcp-cell strong {
  font-size: 19px
}

@media(max-width:900px) {

  .player-table-head,
  .player-table-row {
    grid-template-columns: 48px minmax(0, 1fr) 80px
  }

  .player-table-head button[data-sort="club"],
  .player-table-head button[data-sort="category"],
  .player-club-cell,
  .player-category-cell {
    display: none
  }

  .player-table-head button[data-sort="name"] {
    grid-column: 2
  }

  .player-table-head .hcp-head {
    grid-column: 3
  }

  .player-name-cell small {
    display: block
  }

  .player-inline-scorecard {
    padding: 0 10px 12px
  }
}

@media(max-width:560px) {
  .player-table {
    border-radius: 16px
  }

  .player-table-head,
  .player-table-row {
    grid-template-columns: 42px minmax(0, 1fr) 66px;
    padding-left: 10px;
    padding-right: 10px;
    column-gap: 8px
  }

  .player-table-head button {
    font-size: 10px
  }

  .player-rank {
    width: 34px;
    height: 34px
  }

  .player-cell strong {
    font-size: 15px
  }

  .player-name-cell small {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .player-hcp-cell strong {
    font-size: 17px
  }
}

/* Live Leaderboard 2.0 */
.live-board-shell {
  display: grid;
  gap: 18px
}

.live-board-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 4px 0 2px
}

.live-board-toolbar>div,
.live-board-title {
  display: flex;
  align-items: center;
  gap: 11px
}

.live-board-title>div {
  display: grid;
  gap: 3px
}

.live-board-toolbar strong {
  font-size: 18px
}

.live-board-toolbar small {
  display: block;
  color: var(--muted);
  margin-top: 3px
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34, 211, 111, .1), 0 0 18px rgba(34, 211, 111, .85);
  animation: livePulse 1.8s ease-in-out infinite;
  flex: none
}

@keyframes livePulse {
  50% {
    transform: scale(.78);
    opacity: .72
  }
}

.compact-btn {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 13px
}

.compact-btn.is-loading .refresh-icon {
  display: inline-block;
  animation: spin .8s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.compact-tabs {
  margin: 0
}

.live-board-head,
.live-score-row {
  display: grid;
  grid-template-columns: 92px minmax(250px, 1fr) 90px 110px 100px;
  gap: 14px;
  align-items: center
}

.live-board-head {
  padding: 0 18px 9px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase
}

.live-board-head span:nth-child(n+3) {
  text-align: right
}

.live-leaderboard {
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(4, 10, 16, .32)
}

.live-score-row {
  position: relative;
  min-height: 82px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  transition: background .25s, transform .25s
}

.live-score-row:last-child {
  border-bottom: 0
}

.live-score-row:hover {
  background: rgba(255, 255, 255, .035)
}

.live-score-row.is-leader {
  background: linear-gradient(90deg, rgba(227, 179, 77, .12), transparent 42%)
}

.live-score-row.is-leader:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(227, 179, 77, .6)
}

.live-position {
  display: flex;
  align-items: center;
  gap: 10px
}

.live-position>strong {
  font-size: 24px;
  min-width: 28px;
  font-variant-numeric: tabular-nums
}

.movement-badge {
  min-width: 42px;
  padding: 5px 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-align: center
}

.movement-badge.up {
  color: #75ef9e;
  background: rgba(34, 211, 111, .12)
}

.movement-badge.down {
  color: #ff8e8e;
  background: rgba(255, 85, 85, .12)
}

.movement-badge.same {
  color: #718196;
  background: rgba(255, 255, 255, .05)
}

.team-member-waiting {
  min-width: 50px;
  min-height: 30px;
  justify-self: end;
}

.team-member-waiting-chip {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
  color: #c8d4df;
  font-size: 11px;
  font-weight: 760;
}
.live-player-info {
  min-width: 0
}

.live-player-info>strong {
  display: block;
  font-size: 18px
}

.live-player-info>small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.live-round,
.live-thru,
.live-total {
  display: grid;
  text-align: right;
  gap: 4px
}

.live-round span,
.live-thru span,
.live-total span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted)
}

.live-round strong,
.live-thru strong {
  font-size: 16px
}

.live-total strong {
  font-size: 24px;
  font-variant-numeric: tabular-nums
}

.score-event {
  display: inline-flex;
  width: max-content;
  margin-top: 7px;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900
}

.score-event.birdie {
  color: #75ef9e;
  background: rgba(34, 211, 111, .12)
}

.score-event.bogey {
  color: #ff9797;
  background: rgba(255, 85, 85, .12)
}

.movement-up {
  animation: rowUp 1.1s ease
}

.movement-down {
  animation: rowDown 1.1s ease
}

@keyframes rowUp {
  0% {
    background: rgba(34, 211, 111, .18);
    transform: translateY(4px)
  }
}

@keyframes rowDown {
  0% {
    background: rgba(255, 85, 85, .15);
    transform: translateY(-4px)
  }
}

.live-board-legend {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  color: rgba(171, 188, 205, .72);
  font-size: 9px;
  opacity: .86;
}

.live-board-legend span {
  display: flex;
  align-items: center;
  gap: 5px
}

.live-board-legend i {
  width: 6px;
  height: 6px;
  border-radius: 50%
}

.legend-up {
  background: var(--green)
}

.legend-down {
  background: #ff6969
}

.legend-live {
  background: var(--blue);
  box-shadow: 0 0 6px rgba(58, 164, 255, .45)
}

.bottom-live-leaderboard {
  margin-top: 18px;
}

.bottom-live-leaderboard .premium-panel-head {
  padding: 10px 14px 2px;
}

.top-live-leaderboard {
  margin: 10px 0 14px;
}

.global-live-ticker-wrap {
  position: fixed;
  top: 7px;
  left: 0;
  right: 0;
  z-index: 35;
  padding: 3px 10px 2px;
  pointer-events: none;
}

.global-live-ticker-wrap .top-live-leaderboard {
  width: min(1460px, calc(100% - 8px));
  margin: 0 auto;
  pointer-events: auto;
}

body.has-global-live-ticker .topbar {
  top: var(--global-live-ticker-height);
}

body.has-global-live-ticker .shell {
  padding-top: calc(58px + var(--global-live-ticker-height) + var(--global-live-content-offset) - 40px);
}

.top-live-leaderboard.bottom-live-leaderboard--ticker {
  background: linear-gradient(180deg, rgba(12, 19, 28, .46), rgba(8, 13, 20, .46));
  border-color: rgba(255, 255, 255, .08);
}

.bottom-live-leaderboard--ticker {
  overflow: hidden;
}

.bottom-live-leaderboard--ticker .premium-panel-head {
  padding: 8px 14px 8px;
}

.live-leader-announcement {
  margin: 0 9px 5px;
  padding: 5px 9px 5px 10px;
  border-left: 3px solid rgba(252, 205, 94, .82);
  border-radius: 9px;
  background: linear-gradient(90deg, rgba(255, 222, 132, .12), rgba(255, 222, 132, .03));
  color: rgba(250, 243, 227, .96);
  font-size: 14px;
  font-weight: 780;
  letter-spacing: .01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: leaderAnnouncementInOut 2s ease-out 1 both;
}

@keyframes leaderAnnouncementInOut {
  0% {
    opacity: 0;
    transform: translateY(-6px) scale(.99);
  }

  12% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  68% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-2px) scale(.995);
  }
}

.birdie-popup-mount {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translate(-50%, 16px);
  opacity: 0;
  pointer-events: none;
  z-index: 3600;
  transition: opacity .24s ease, transform .24s ease;
}

.birdie-popup-mount.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.birdie-popup-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-width: min(92vw, 640px);
  max-width: min(92vw, 840px);
  padding: 20px 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 221, 140, .55);
  background: linear-gradient(180deg, rgba(42, 32, 16, .96), rgba(22, 18, 10, .96));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34), 0 0 0 1px rgba(255, 221, 140, .16) inset;
}

.birdie-popup-card.is-eagle {
  border-color: rgba(161, 232, 255, .58);
  background: linear-gradient(180deg, rgba(14, 43, 56, .96), rgba(8, 24, 33, .96));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .34), 0 0 0 1px rgba(161, 232, 255, .18) inset;
}

.birdie-popup-image {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .06);
  padding: 8px;
  flex: 0 0 auto;
}

.birdie-popup-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.birdie-popup-copy strong {
  color: #ffd67e;
  font-size: 30px;
  letter-spacing: .02em;
}

.birdie-popup-copy span {
  color: rgba(244, 248, 255, .94);
  font-size: 26px;
  line-height: 1.3;
}

@media (max-width: 640px) {
  .birdie-popup-mount {
    bottom: 12px;
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
  }

  .birdie-popup-card {
    width: 100%;
    min-width: 0;
    max-width: none;
    padding: 18px 18px;
    border-radius: 22px;
    gap: 16px;
  }

  .birdie-popup-image {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .birdie-popup-copy strong {
    font-size: 25px;
  }

  .birdie-popup-copy span {
    font-size: 21px;
    line-height: 1.34;
  }
}

.live-ticker-shell {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.live-ticker-marquee {
  display: flex;
  width: max-content;
  animation: liveTickerScroll 68s linear infinite;
}

.live-ticker-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 3px 7px;
}

.live-ticker-item {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 31px;
  padding: 5px 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .07);
  background: linear-gradient(180deg, rgba(14, 23, 35, .9), rgba(9, 15, 23, .9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .02), 0 6px 16px rgba(0, 0, 0, .16);
}

.live-ticker-rank {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  color: #9ad1ff;
}

.live-ticker-name {
  font-size: 14px;
  color: #f3f8fe;
}

.live-ticker-leader {
  margin-left: -2px;
}

.live-ticker-stat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.live-ticker-stat small {
  color: var(--rc22-label);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.live-ticker-stat .score-pill {
  padding: 3px 8px;
  font-size: 11px;
}

.live-ticker-item .movement-badge {
  min-width: 32px;
  padding: 3px 6px;
}

.live-ticker-shell:hover .live-ticker-marquee {
  animation-play-state: paused;
}

@keyframes liveTickerScroll {
  from {
    transform: translateX(0);
  }

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

@media(max-width:780px) {

  :root {
    --global-live-ticker-height: 36px;
    --global-live-content-offset: 10px;
  }

  .global-live-ticker-wrap {
    padding: 3px 6px 1px;
  }

  .global-live-ticker-wrap .top-live-leaderboard {
    width: calc(100% - 4px);
  }

  .live-ticker-marquee {
    animation-duration: 58s;
  }

  .live-ticker-item {
    gap: 7px;
    min-height: 29px;
    padding: 4px 8px;
  }

  .live-leader-announcement {
    margin: 0 8px 5px;
    font-size: 12px;
    padding: 5px 8px 5px 9px;
  }

  .live-ticker-name {
    font-size: 13px;
  }

  .live-ticker-stat small {
    font-size: 9px;
  }

  .live-board-head,
  .live-score-row {
    grid-template-columns: 72px minmax(0, 1fr) 76px
  }

  .live-board-head span:nth-child(3),
  .live-board-head span:nth-child(4),
  .live-round,
  .live-thru {
    display: none
  }

  .live-board-head span:nth-child(5) {
    grid-column: 3
  }

  .live-score-row {
    padding: 12px 12px;
    gap: 8px
  }

  .live-position {
    gap: 5px
  }

  .movement-badge {
    min-width: 35px;
    padding: 4px 5px
  }

  .live-player-info>strong {
    font-size: 15px
  }

  .live-player-info>small {
    font-size: 11px
  }

  .live-total strong {
    font-size: 20px
  }
}

body.tv-mode .global-live-ticker-wrap {
  display: none;
}

@media (prefers-reduced-motion: reduce) {

  .live-ticker-marquee {
    animation: none;
  }
}

@media(max-width:480px) {
  .live-board-toolbar {
    align-items: flex-start
  }

  .live-board-toolbar small {
    font-size: 11px
  }

  .compact-btn {
    padding: 0 11px
  }

  .live-board-head,
  .live-score-row {
    grid-template-columns: 64px minmax(0, 1fr) 62px
  }

  .live-position>strong {
    font-size: 19px
  }

  .movement-badge {
    font-size: 9px;
    min-width: 31px
  }

  .live-board-legend {
    gap: 8px
  }
}


/* Tournament Launch Edition 2.3 */
.tournament-shell {
  padding-bottom: 80px
}

.tournament-hero {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, .55fr);
  align-items: end;
  gap: 44px;
  padding: clamp(34px, 6vw, 72px);
  background: radial-gradient(circle at 92% 5%, rgba(91, 181, 255, .24), transparent 28%), radial-gradient(circle at 5% 100%, rgba(42, 211, 143, .12), transparent 30%), linear-gradient(145deg, #0e2032 0%, #07111c 52%, #05090e 100%)
}

.tournament-hero:after {
  content: "";
  position: absolute;
  right: -120px;
  top: -170px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 55px rgba(255, 255, 255, .018), 0 0 0 110px rgba(255, 255, 255, .012);
  pointer-events: none
}

.hero-main,
.hero-countdown {
  position: relative;
  z-index: 1
}

.hero-live-line {
  display: flex;
  align-items: center;
  gap: 10px
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block
}

.status-dot.green {
  background: #36dc87;
  box-shadow: 0 0 0 6px rgba(54, 220, 135, .10), 0 0 18px rgba(54, 220, 135, .65)
}

.status-dot.blue {
  background: #5dbaff;
  box-shadow: 0 0 0 6px rgba(93, 186, 255, .10)
}

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

.hero-countdown {
  align-self: end;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  background: rgba(3, 8, 14, .54);
  backdrop-filter: blur(22px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28)
}

.hero-countdown small {
  display: block;
  color: #83caff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em
}

.hero-countdown strong {
  display: block;
  margin: 12px 0 8px;
  font-size: clamp(27px, 4vw, 45px);
  letter-spacing: -.04em
}

.hero-countdown span {
  color: var(--muted)
}

.tournament-snapshot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: -32px 28px 26px;
  position: relative;
  z-index: 3
}

.tournament-snapshot article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(8, 17, 28, .88);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22)
}

.snapshot-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #142a40;
  color: #79c9ff;
  font-weight: 900
}

.tournament-snapshot small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  margin-bottom: 5px
}

.tournament-snapshot strong {
  font-size: 14px
}

.tournament-snapshot .ready .snapshot-icon {
  background: rgba(36, 211, 119, .12);
  color: #65ed9d
}

.tournament-snapshot .waiting .snapshot-icon {
  background: rgba(255, 190, 74, .10);
  color: #ffc86a
}

.tournament-hub {
  padding-top: 34px
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px
}

.section-heading h2 {
  margin-bottom: 0
}

.launch-badge {
  padding: 8px 11px;
  border: 1px solid rgba(102, 187, 255, .22);
  border-radius: 999px;
  color: #7fcaff;
  background: rgba(60, 165, 255, .08);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em
}

.view-tabs {
  position: sticky;
  top: 78px;
  z-index: 10;
  padding: 12px 0;
  background: linear-gradient(180deg, var(--panel) 75%, transparent)
}

.view-pill {
  transition: transform .2s, background .2s
}

.view-pill:hover {
  transform: translateY(-1px)
}

.pre-event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  border: 1px solid rgba(102, 187, 255, .16);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(72, 159, 255, .10), rgba(255, 255, 255, .02))
}

.pre-event-orb {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #69c7ff, #287fd2);
  color: #06101a;
  font-size: 28px;
  box-shadow: 0 18px 35px rgba(42, 141, 226, .25)
}

.pre-event-card h3 {
  font-size: 24px;
  margin: 2px 0 6px
}

.pre-event-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
  max-width: 690px
}

.startlist-shell {
  display: grid;
  gap: 20px
}

.tee-group-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px
}

.tee-time-group-card {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(10, 18, 28, .94), rgba(6, 12, 19, .95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  overflow: hidden;
}

.tee-time-group-card.is-next {
  border-color: rgba(104, 188, 255, .24);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .20), inset 0 1px 0 rgba(104, 188, 255, .18);
}

.tee-time-group-card.upcoming {
  border-left: 3px solid rgba(104, 188, 255, .45);
}

.tee-time-group-card.oncourse {
  border-left: 3px solid rgba(67, 209, 110, .45);
}

.tee-time-group-card.finished {
  border-left: 3px solid rgba(255, 135, 135, .38);
}

.tee-time-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 13px;
}

.tee-time-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.startlist-state-pill {
  align-self: flex-start;
  padding: 5px 9px;
  border-radius: 999px;
  color: #f7fbff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: none;
  border: 1px solid rgba(255, 255, 255, .14);
}

.startlist-state-pill.upcoming {
  background: rgba(104, 188, 255, .18);
  color: #8fd3ff;
}

.startlist-state-pill.oncourse {
  background: rgba(79, 219, 124, .18);
  color: #91f2af;
}

.startlist-state-pill.finished {
  background: rgba(255, 135, 135, .16);
  color: #ffb3b3;
}

.tee-time-info strong {
  color: #f7fbff;
  font-size: 18px;
  font-weight: 800;
}

.tee-time-date-inline {
  color: rgba(140, 159, 181, .78);
  font-size: 14px;
  font-weight: 600;
}

.tee-time-subtitle {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.tee-time-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.tee-countdown,
.tee-group-label {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #a9d7ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tee-group-body {
  padding: 0 14px 14px;
}

.tee-players {
  display: grid;
  gap: 10px;
}

.tee-player-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.player-initials {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #13283d;
  color: #8bd1ff;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

.tee-player-copy {
  min-width: 0;
}

.tee-player-name {
  color: #f7fbff;
  font-size: 13px;
  font-weight: 700;
}

.tee-player-name a {
  color: inherit;
  text-decoration: none;
}

.tee-player-name a:hover {
  color: #8fd3ff;
}

.tee-player-copy small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

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

.startlist-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: #c8d6e4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.startlist-filter-pill.active {
  background: linear-gradient(135deg, rgba(104, 188, 255, .18), rgba(255, 255, 255, .07));
  color: #f7fbff;
  border-color: rgba(104, 188, 255, .24);
}

.startlist-filter-badge {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(79, 219, 124, .18);
  color: #91f2af;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.startlist-filter-pill.active .startlist-filter-badge {
  background: rgba(79, 219, 124, .24);
  color: #d7ffe4;
}

.startlist-loading-state {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 4px;
  color: var(--muted);
}

.small-orb {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 18px;
}

.profile-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0
}

.profile-metrics>div {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035)
}

.profile-metrics small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .1em;
  margin-bottom: 8px
}

.profile-metrics strong {
  font-size: 21px
}

.profile-note {
  padding: 18px;
  border-radius: 18px;
  background: rgba(102, 187, 255, .08);
  color: #bdd5e9;
  line-height: 1.5;
  margin-bottom: 20px
}

.full-btn {
  width: 100%
}

body.tv-mode .topbar {
  display: none
}

body.tv-mode .shell {
  max-width: none;
  padding: 22px
}

body.tv-mode .tournament-snapshot {
  margin-top: -20px
}

body.tv-mode .tournament-hub {
  font-size: 1.12em
}

@media(max-width:980px) {
  .tournament-hero {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .hero-countdown {
    max-width: 480px
  }

  .tournament-snapshot {
    grid-template-columns: repeat(2, 1fr)
  }

  .tee-group-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:640px) {
  .tournament-hero {
    padding: 30px 22px 46px
  }

  .tournament-title {
    font-size: clamp(48px, 14vw, 72px)
  }

  .hero-countdown {
    padding: 22px
  }

  .tournament-snapshot {
    grid-template-columns: 1fr;
    margin: -24px 12px 20px
  }

  .tournament-snapshot article {
    min-height: 72px
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column
  }

  .launch-badge {
    display: none
  }

  .view-tabs {
    top: 62px;
    overflow-x: auto;
    flex-wrap: nowrap
  }

  .view-pill {
    white-space: nowrap
  }

  .pre-event-card {
    grid-template-columns: 1fr;
    text-align: left
  }

  .pre-event-orb {
    width: 56px;
    height: 56px
  }

  .tee-time-summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .tee-time-meta {
    align-items: flex-start;
  }

  .tee-time-group-card {
    border-radius: 16px;
  }

  .sheet-card {
    left: 8px;
    right: 8px;
    top: auto;
    bottom: 8px;
    width: auto;
    max-height: 88vh;
    border-radius: 28px;
    animation: sheetUp .32s cubic-bezier(.2, .8, .2, 1)
  }

  @keyframes sheetUp {
    from {
      transform: translateY(40px);
      opacity: 0
    }
  }
}

/* Mobile Tournament UX — 2.5.0 */
@media (max-width: 700px) {

  html,
  body {
    overflow-x: hidden;
  }

  .topbar {
    min-height: 58px;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
    font-size: 12px;
    letter-spacing: .1em;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  nav {
    gap: 8px;
  }

  nav a {
    display: none;
  }

  nav .ghost-btn {
    min-height: 38px;
    padding: 0 13px;
    border-radius: 12px;
    font-size: 13px;
  }

  .shell {
    width: calc(100% - 16px);
    padding: 18px 0 52px;
  }

  .tournament-shell {
    padding-bottom: 48px;
  }

  .tournament-hero {
    min-height: auto;
    padding: 24px 18px 30px;
    gap: 22px;
    border-radius: 24px;
  }

  .tournament-hero:after {
    width: 280px;
    height: 280px;
    right: -120px;
    top: -120px;
  }

  .hero-live-line {
    gap: 8px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .14em;
    margin-bottom: 9px;
  }

  .tournament-title {
    font-size: clamp(38px, 12vw, 54px);
    line-height: .94;
    letter-spacing: -.055em;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 20px;
  }

  .hero-actions .primary-btn,
  .hero-actions .ghost-btn {
    min-width: 0;
    min-height: 46px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero-countdown {
    width: 100%;
    max-width: none;
    padding: 18px;
    border-radius: 19px;
  }

  .hero-countdown small {
    font-size: 9px;
  }

  .hero-countdown strong {
    font-size: 27px;
    margin: 8px 0 4px;
  }

  .hero-countdown span {
    font-size: 13px;
  }

  .tournament-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: -14px 8px 18px;
  }

  .tournament-snapshot article {
    min-height: 78px;
    padding: 12px;
    gap: 9px;
    border-radius: 16px;
  }

  .snapshot-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    flex: 0 0 auto;
  }

  .tournament-snapshot small {
    font-size: 7px;
    letter-spacing: .08em;
  }

  .tournament-snapshot strong {
    font-size: 12px;
    line-height: 1.25;
  }

  .section {
    margin-top: 18px;
  }

  .panel {
    padding: 16px;
    border-radius: 22px;
  }

  .tournament-hub {
    padding-top: 20px;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 6px;
  }

  .section-heading h2 {
    font-size: 27px;
    line-height: 1.05;
  }

  .launch-badge {
    display: none;
  }

  .view-tabs {
    top: 58px;
    margin: 12px -16px 4px;
    padding: 10px 16px;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .view-tabs::-webkit-scrollbar,
  .class-tabs::-webkit-scrollbar {
    display: none;
  }

  .view-pill {
    flex: 0 0 auto;
    padding: 11px 14px;
    border-radius: 12px;
    font-size: 13px;
  }

  .class-tabs {
    margin: 10px -16px 14px;
    padding: 0 16px 2px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .class-pill {
    flex: 0 0 auto;
    padding: 10px 14px;
    font-size: 12px;
  }

  .data-panel {
    padding-top: 14px;
  }

  .players-toolbar {
    gap: 10px;
    margin-bottom: 10px;
  }

  .players-toolbar input {
    min-height: 44px;
    font-size: 14px;
  }

  .player-table {
    border-radius: 15px;
  }

  .player-table-head,
  .player-table-row {
    grid-template-columns: 36px minmax(0, 1fr) 58px;
    column-gap: 7px;
    padding-left: 9px;
    padding-right: 9px;
  }

  .player-table-head {
    min-height: 44px;
  }

  .player-table-head button {
    font-size: 9px;
    letter-spacing: .06em;
    padding: 13px 0;
  }

  .player-table-row {
    min-height: 64px;
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .player-rank {
    width: 31px;
    height: 31px;
    font-size: 13px;
  }

  .player-cell strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .player-name-cell small {
    font-size: 10px;
    margin-top: 3px;
  }

  .player-hcp-cell strong {
    font-size: 16px;
  }

  .live-board-toolbar {
    align-items: flex-start;
    gap: 10px;
  }

  .live-board-toolbar strong {
    font-size: 16px;
  }

  .compact-btn {
    min-height: 38px;
    font-size: 12px;
  }

  .live-board-head,
  .live-score-row {
    grid-template-columns: 58px minmax(0, 1fr) 56px;
  }

  .live-score-row {
    min-height: 70px;
    padding: 10px 9px;
  }

  .live-position>strong {
    font-size: 18px;
  }

  .movement-badge {
    min-width: 28px;
    padding: 3px 4px;
  }

  .live-player-info>strong {
    font-size: 14px;
    line-height: 1.2;
  }

  .live-player-info>small {
    font-size: 10px;
  }

  .live-total strong {
    font-size: 18px;
  }

  .pre-event-card {
    padding: 20px;
    gap: 14px;
    border-radius: 18px;
  }

  .pre-event-card h3 {
    font-size: 22px;
  }

  .pre-event-orb {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 22px;
  }

  .pre-event-card .primary-btn {
    width: 100%;
  }

  .tee-group-card {
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding: 13px;
    border-radius: 17px;
  }

  .tee-time {
    padding-right: 10px;
  }

  .tee-time strong {
    font-size: 20px;
  }

  .tee-players {
    gap: 9px;
  }

  .player-initials {
    width: 31px;
    height: 31px;
    border-radius: 10px;
  }

  .tee-players strong {
    font-size: 13px;
  }

  .sheet-card {
    padding: 26px 20px 22px;
  }

  .profile-avatar {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .sheet-card h2 {
    font-size: 29px;
  }

  .profile-metrics {
    gap: 7px;
    margin: 20px 0;
  }

  .profile-metrics>div {
    padding: 12px 9px;
    border-radius: 14px;
  }

  .profile-metrics strong {
    font-size: 16px;
  }
}

@media (max-width: 380px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .tournament-snapshot {
    grid-template-columns: 1fr;
  }

  .tournament-title {
    font-size: 38px;
  }
}


/* Apple Sports mobile clean-up 2.6 */
.tournament-hero {
  grid-template-columns: 1fr;
  min-height: 360px;
  align-items: end
}

.tournament-hero .hero-main {
  max-width: 900px
}

.tournament-hub {
  margin-top: 6px;
  padding-top: 8px;
}

.tournament-hub .section-heading {
  display: none;
}

.tournament-hub .view-tabs {
  top: 70px;
  padding: 6px 0 8px;
}

.tournament-hub .data-panel {
  border-top: 0;
  padding-top: 6px;
}

@media(max-width:640px) {
  .shell.tournament-shell {
    padding-top: 18px
  }

  .tournament-hero {
    min-height: 330px;
    padding: 28px 20px 30px;
    border-radius: 24px
  }

  .hero-live-line {
    margin-bottom: 4px
  }

  .hero-live-line .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
    letter-spacing: .13em
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 0
  }

  .hero-actions {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .hero-actions .primary-btn,
  .hero-actions .ghost-btn {
    width: 100%;
    min-height: 46px;
    padding: 0 12px
  }

  .tournament-hub {
    margin-top: 8px;
    padding: 10px 12px 16px
  }

  .tournament-hub .section-heading {
    display: none
  }

  .view-tabs {
    position: static;
    padding: 0 0 12px;
    margin: 0;
    gap: 8px;
    background: none
  }

  .view-pill {
    padding: 12px 15px
  }

  .class-tabs {
    margin: 10px 0 16px;
    gap: 8px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px
  }

  .class-pill {
    white-space: nowrap;
    padding: 11px 15px
  }
}

@media(max-width:390px) {
  .hero-actions {
    grid-template-columns: 1fr
  }

  .tournament-hero {
    min-height: 310px
  }
}

/* GKB club identity + tighter mobile hero 2.7 */
.club-logo-badge {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 4px 0 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.club-logo {
  width: 62px;
  height: 62px;
  object-fit: contain;
  display: block
}

@media(max-width:640px) {
  .shell.tournament-shell {
    padding-top: 8px
  }

  .tournament-hero {
    min-height: 0;
    padding: 16px 18px 24px;
    align-items: start;
  }

  .hero-live-line {
    margin: 0 0 6px
  }

  .club-logo-badge {
    width: 72px;
    height: 72px;
    margin: 2px 0 12px;
    border-radius: 21px;
  }

  .club-logo {
    width: 60px;
    height: 60px
  }

  .tournament-title {
    font-size: clamp(42px, 13.2vw, 58px);
    line-height: .92;
    margin-bottom: 14px;
  }

  .hero-copy {
    font-size: 14px;
    line-height: 1.35
  }

  .hero-actions {
    margin-top: 16px
  }
}

@media(max-width:390px) {
  .tournament-hero {
    padding-top: 13px
  }

  .club-logo-badge {
    width: 66px;
    height: 66px
  }

  .club-logo {
    width: 54px;
    height: 54px
  }

  .tournament-title {
    font-size: 40px
  }
}

/* RC7 — Apple Sports Live Leaderboard */
.scoreboard-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 2px 0 14px
}

.scoreboard-statusbar>div {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0
}

.scoreboard-statusbar strong {
  font-size: 12px;
  letter-spacing: .13em
}

.scoreboard-statusbar span:last-child {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.scoreboard-summary {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  padding: 13px 15px;
  border: 1px solid rgba(102, 187, 255, .16);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(102, 187, 255, .09), rgba(255, 255, 255, .025));
  color: #b8c7d5;
  font-size: 12px
}

.scoreboard-summary span {
  display: flex;
  gap: 5px;
  align-items: center
}

.scoreboard-summary span+span:before {
  content: "·";
  margin-right: 5px;
  color: #52667b
}

.scoreboard-summary strong {
  color: #fff
}

.scoreboard-summary.is-waiting {
  opacity: .72
}

.scoreboard-classes {
  margin-top: 14px
}

.scoreboard-empty {
  text-align: center;
  padding: 24px 18px
}

.scoreboard-empty-icon {
  font-size: 30px;
  margin-bottom: 8px
}

.scoreboard-empty h3 {
  font-size: 21px;
  line-height: 1.25;
  margin: 0 0 6px
}

.scoreboard-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-size: 13px
}

.live-board-shell.scoreboard-shell-exit {
  opacity: 0;
  transform: translateY(7px) scale(.995);
  transition: opacity .28s ease, transform .32s ease;
}

.live-board-shell.scoreboard-shell-enter {
  opacity: 0;
  transform: translateY(10px) scale(.996);
}

.live-board-shell.scoreboard-shell-enter.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .38s ease, transform .42s cubic-bezier(.22, 1, .36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .live-board-shell.scoreboard-shell-exit,
  .live-board-shell.scoreboard-shell-enter,
  .live-board-shell.scoreboard-shell-enter.is-visible {
    transition: none;
    transform: none;
  }
}

.live-score-row {
  appearance: none;
  width: 100%;
  color: inherit;
  text-align: left;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  cursor: pointer
}

.live-score-row.is-leader {
  box-shadow: inset 3px 0 0 var(--gold), 0 0 38px rgba(227, 179, 77, .08);
  animation: leaderGlow 3.6s ease-in-out infinite
}

.live-score-row.is-leader .live-position>strong,
.live-score-row.is-leader .live-total>strong {
  color: #ffd978
}

@keyframes leaderGlow {
  50% {
    box-shadow: inset 3px 0 0 var(--gold), 0 0 54px rgba(227, 179, 77, .14)
  }
}

.score-sheet {
  width: min(760px, calc(100% - 36px))
}

.scorecard-scroll {
  overflow-x: auto;
  margin-top: 20px;
  padding-bottom: 8px
}

.scorecard-grid {
  display: grid;
  grid-template-columns: 70px repeat(19, 46px);
  min-width: max-content;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden
}

.scorecard-grid>div {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 13px
}

.scorecard-grid>div:nth-last-child(-n+20) {
  border-bottom: 0
}

.scorecard-total-head,
.scorecard-total-value {
  background: rgba(9, 15, 24, .7);
  font-weight: 800;
}

.scorecard-total-head {
  color: var(--rc22-label);
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.scorecard-label {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #0d1926;
  color: var(--muted);
  font-size: 10px !important;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase
}

.hole-score {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 850
}

.hole-score.birdie {
  background: rgba(255, 59, 87, .28);
  color: #ffd9e1;
  border: 1px solid rgba(255, 96, 123, .58)
}

.hole-score.eagle {
  background: rgba(194, 24, 57, .38);
  color: #ffe5ea;
  border: 1px solid rgba(255, 112, 140, .68)
}

.hole-score.bogey {
  background: rgba(0, 153, 255, .28);
  color: #dff2ff;
  border: 1px solid rgba(94, 199, 255, .58)
}

.hole-score.double {
  background: rgba(118, 63, 205, .42);
  color: #f2eaff;
  border: 1px solid rgba(183, 141, 255, .72)
}

.hole-score.par {
  background: rgba(46, 204, 113, .24);
  color: #dcffe9;
  border: 1px solid rgba(96, 236, 154, .62)
}

.hole-score.empty {
  background: rgba(255, 204, 51, .22);
  color: #ffe9a6;
  border: 1px solid rgba(255, 214, 91, .78);
}

@media(max-width:700px) {
  .scoreboard-statusbar {
    align-items: flex-start
  }

  .scoreboard-statusbar span:last-child {
    font-size: 11px
  }

  .scoreboard-summary {
    gap: 5px 10px;
    padding: 11px 12px;
    font-size: 11px
  }

  .scoreboard-summary span+span:before {
    display: none
  }

  .live-score-row.is-leader {
    box-shadow: inset 3px 0 0 var(--gold), 0 0 26px rgba(227, 179, 77, .08)
  }

  .score-sheet {
    left: 8px;
    right: 8px;
    width: auto
  }

  .scorecard-grid {
    grid-template-columns: 58px repeat(18, 42px)
  }

  .scorecard-grid>div {
    min-height: 44px
  }
}

.heading-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: 10px;
  font-size: 11px;
  letter-spacing: .12em;
  color: #78f0a4;
  vertical-align: middle
}

.heading-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(34, 211, 111, .75)
}

@media(max-width:640px) {
  .tournament-hub .section-heading {
    display: flex;
    flex-direction: row;
    align-items: center
  }

  .tournament-hub .section-heading .eyebrow {
    display: none
  }

  .tournament-hub .section-heading h2 {
    font-size: 22px
  }

  .heading-live {
    font-size: 10px;
    margin-left: 7px
  }
}


/* RC9 — darker secondary text + player initials */
.scoreboard-statusbar span:last-child {
  color: #718399
}

.scoreboard-summary {
  color: #8798aa
}

.live-board-head {
  color: #718399
}

.live-player-info {
  display: flex;
  align-items: center;
  gap: 12px
}

.live-player-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, #17324a, #0d1f30);
  border: 1px solid rgba(120, 194, 255, .18);
  color: #8fd3ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05)
}

.live-player-copy {
  min-width: 0;
  display: block
}

.live-player-copy>strong {
  display: block;
  font-size: 18px
}

.live-player-copy>small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.live-score-row.is-leader .live-player-avatar {
  background: linear-gradient(145deg, #4b3b18, #21190a);
  border-color: rgba(227, 179, 77, .34);
  color: #ffd978;
  box-shadow: 0 0 22px rgba(227, 179, 77, .10)
}

@media(max-width:780px) {
  .live-player-info {
    gap: 9px
  }

  .live-player-avatar {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 11px;
    font-size: 10px
  }

  .live-player-copy>strong {
    font-size: 15px
  }

  .live-player-copy>small {
    font-size: 10px
  }
}

@media(max-width:480px) {
  .live-player-avatar {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
    border-radius: 10px
  }

  .live-player-info {
    gap: 8px
  }
}


/* RC10 inline scorecard accordion */
.live-score-item {
  border-bottom: 1px solid var(--line);
  background: transparent
}

.live-score-item:last-child {
  border-bottom: 0
}

.live-score-item>.live-score-row {
  border-bottom: 0
}

.live-score-item.is-expanded {
  background: linear-gradient(180deg, rgba(102, 187, 255, .055), rgba(255, 255, 255, .018))
}

.score-chevron {
  margin-left: auto;
  color: #6f8296;
  font-size: 20px;
  line-height: 1;
  transition: transform .22s ease, color .22s ease
}

.live-score-item.is-expanded .score-chevron {
  transform: rotate(180deg);
  color: #8fd2ff
}

.inline-scorecard {
  padding: 0 18px 20px 110px;
  animation: inlineScoreOpen .24s ease both
}

.inline-score-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 10px;
  margin: 2px 0 14px
}

.inline-score-summary span {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(3, 9, 15, .42)
}

.inline-score-summary small,
.inline-score-summary strong {
  display: block
}

.inline-score-summary small {
  color: #66798d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  margin-bottom: 5px
}

.inline-score-summary strong {
  font-size: 18px
}

.inline-score-empty {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  color: #708398;
  background: rgba(3, 9, 15, .28);
  line-height: 1.5
}

@keyframes inlineScoreOpen {
  from {
    opacity: 0;
    transform: translateY(-6px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@media(max-width:780px) {
  .inline-scorecard {
    padding: 0 12px 16px
  }

  .inline-score-summary {
    grid-template-columns: repeat(3, 1fr);
    gap: 7px
  }

  .inline-score-summary span {
    padding: 10px
  }

  .inline-score-summary small {
    font-size: 8px
  }

  .inline-score-summary strong {
    font-size: 16px
  }

  .score-chevron {
    font-size: 18px
  }
}

/* RC11 — Apple Sports Polish */
:root {
  --leaderboard-row: #101923;
  --leaderboard-row-alt: #0d1620;
  --leaderboard-row-hover: #152231;
  --leaderboard-row-open: #162433;
  --leaderboard-secondary: #8193a6;
  --leaderboard-label: #91a4b8;
}

.live-leaderboard {
  background: linear-gradient(180deg, rgba(7, 14, 22, .92), rgba(5, 11, 18, .96));
  border-color: rgba(255, 255, 255, .10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 20px 48px rgba(0, 0, 0, .24);
}

.live-score-item {
  background: linear-gradient(180deg, var(--leaderboard-row), var(--leaderboard-row-alt));
  border-bottom-color: rgba(255, 255, 255, .075);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
}

.live-score-item:hover {
  background: linear-gradient(180deg, var(--leaderboard-row-hover), #101b27);
}

.live-score-item.is-expanded {
  background: linear-gradient(180deg, var(--leaderboard-row-open), #101b28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), inset 0 -1px 0 rgba(102, 187, 255, .10);
}

.live-score-row {
  min-height: 88px;
  padding-top: 15px;
  padding-bottom: 15px;
  background: transparent !important;
}

.live-board-head {
  color: var(--leaderboard-label);
  font-weight: 900;
  letter-spacing: .13em;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .5);
}

.live-player-copy>small {
  color: var(--leaderboard-secondary);
  font-weight: 570;
}

.live-round span,
.live-thru span,
.live-total span {
  color: var(--leaderboard-label);
  font-weight: 900;
  letter-spacing: .13em;
}

.live-round strong,
.live-thru strong,
.live-total strong {
  color: #f5f8fb;
}

.live-player-avatar {
  background: linear-gradient(145deg, rgba(47, 102, 143, .88), rgba(11, 31, 48, .96));
  border: 1px solid rgba(139, 209, 255, .28);
  color: #a6dcff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    inset 0 -1px 0 rgba(0, 0, 0, .28),
    0 8px 22px rgba(0, 0, 0, .28),
    0 0 0 1px rgba(70, 153, 211, .055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.live-score-row.is-leader {
  box-shadow: inset 3px 0 0 var(--gold), 0 0 34px rgba(227, 179, 77, .09);
  animation: leaderGlowPolish 4.4s ease-in-out infinite;
}

.live-score-item:has(.live-score-row.is-leader) {
  background: linear-gradient(90deg, rgba(78, 61, 24, .46), rgba(18, 25, 32, .98) 38%, rgba(12, 20, 29, .98));
}

.live-score-row.is-leader .live-player-avatar {
  background: linear-gradient(145deg, rgba(111, 84, 27, .94), rgba(39, 29, 8, .96));
  border-color: rgba(255, 217, 120, .42);
  color: #ffe09a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 10px 28px rgba(0, 0, 0, .3), 0 0 24px rgba(227, 179, 77, .12);
}

@keyframes leaderGlowPolish {

  0%,
  100% {
    box-shadow: inset 3px 0 0 var(--gold), 0 0 30px rgba(227, 179, 77, .075)
  }

  50% {
    box-shadow: inset 3px 0 0 #ffd978, 0 0 48px rgba(227, 179, 77, .14)
  }
}

.inline-scorecard {
  transform-origin: top center;
  animation: inlineScoreOpenPolish .34s cubic-bezier(.2, .8, .2, 1) both;
}

.inline-score-summary span {
  background: linear-gradient(145deg, rgba(14, 29, 43, .88), rgba(7, 17, 27, .92));
  border-color: rgba(255, 255, 255, .09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035);
}

.inline-score-summary small {
  color: #7f93a8
}

.inline-score-empty {
  color: #7e91a5;
  background: rgba(6, 14, 22, .66)
}

.score-chevron {
  color: #8194a8
}

@keyframes inlineScoreOpenPolish {
  from {
    opacity: 0;
    transform: translateY(-10px) scaleY(.975);
    filter: blur(2px)
  }

  to {
    opacity: 1;
    transform: none;
    filter: none
  }
}

@media(max-width:780px) {
  .live-score-row {
    min-height: 76px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .live-player-copy>small {
    color: #7e90a3;
  }

  .live-board-head {
    color: #879aad;
  }

  .summary-hero {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .scoreboard-summary {
    margin-top: 4px;
  }

  .compact-hero {
    padding: 8px;
  }

  .summary-live-pill {
    margin-bottom: 4px;
    padding: 3px 7px;
    font-size: 8px;
  }

  .tournament-center-brand {
    margin-bottom: 3px;
    gap: 5px;
  }

  .summary-hero h2 {
    font-size: clamp(21px, 6vw, 25px);
  }

  .summary-subtitle {
    margin-top: 2px;
    font-size: 12px;
  }

  .summary-updated {
    justify-self: start;
    text-align: left;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-left: 0;
    padding-top: 6px;
  }

  .tournament-center-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-panel {
    min-height: auto;
  }
}


/* RC12 — Premium dark leaderboard + podium position badges */
:root {
  --leaderboard-row: #1a2532;
  --leaderboard-row-alt: #151f2b;
  --leaderboard-row-hover: #223144;
  --leaderboard-row-open: #243548;
  --leaderboard-secondary: #708399;
  --leaderboard-label: #9aadc0;
}

.live-leaderboard {
  background: linear-gradient(180deg, #111a25, #0b131d);
  border: 1px solid rgba(255, 255, 255, .075);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 24px 56px rgba(0, 0, 0, .32);
}

.live-score-item {
  margin: 8px 10px;
  border: 1px solid rgba(255, 255, 255, .065);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--leaderboard-row), var(--leaderboard-row-alt));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 10px 24px rgba(0, 0, 0, .16);
}

.live-score-item:last-child {
  margin-bottom: 10px
}

.live-score-item:hover {
  background: linear-gradient(180deg, var(--leaderboard-row-hover), #192636)
}

.live-score-item.is-expanded {
  background: linear-gradient(180deg, var(--leaderboard-row-open), #182738);
  border-color: rgba(102, 187, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045), 0 16px 36px rgba(0, 0, 0, .26);
}

.live-score-row {
  min-height: 92px;
  padding: 16px 18px
}

.live-player-avatar {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(56, 116, 158, .92), rgba(13, 37, 57, .98));
  border-color: rgba(150, 216, 255, .32);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), inset 0 -1px 0 rgba(0, 0, 0, .3), 0 10px 24px rgba(0, 0, 0, .34), 0 0 22px rgba(74, 164, 225, .06);
}

.live-player-copy>strong {
  font-weight: 760
}

.live-player-copy>small {
  margin-top: 6px;
  color: var(--leaderboard-secondary)
}

.live-position {
  gap: 8px
}

.live-position>strong {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #b8c8d8;
  background: linear-gradient(145deg, #1d3042, #122130);
  border: 1px solid rgba(132, 177, 214, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .055), 0 8px 18px rgba(0, 0, 0, .22);
  font-size: 18px;
}

.live-position.podium-1>strong {
  color: #ffe095;
  background: linear-gradient(145deg, #5a451b, #2c210b);
  border-color: rgba(255, 214, 112, .38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), 0 0 24px rgba(227, 179, 77, .15);
}

.live-position.podium-2>strong {
  color: #e3ebf3;
  background: linear-gradient(145deg, #46515d, #252d36);
  border-color: rgba(222, 234, 245, .28);
}

.live-position.podium-3>strong {
  color: #efb985;
  background: linear-gradient(145deg, #563821, #2d1d12);
  border-color: rgba(226, 151, 85, .3);
}

.live-score-item:has(.live-score-row.is-leader) {
  background: linear-gradient(100deg, rgba(65, 50, 19, .82), rgba(28, 35, 42, .98) 35%, rgba(20, 29, 39, .98));
  border-color: rgba(227, 179, 77, .24);
}

.inline-scorecard {
  animation-duration: .25s
}

@media(max-width:780px) {
  .live-score-item {
    margin: 7px 6px;
    border-radius: 17px
  }

  .live-score-row {
    min-height: 80px;
    padding: 12px 10px
  }

  .live-player-avatar {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
    border-radius: 13px
  }

  .live-position>strong {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 11px;
    font-size: 15px
  }

  .live-position {
    gap: 5px
  }
}

@media(max-width:480px) {
  .live-score-item {
    margin-left: 4px;
    margin-right: 4px
  }

  .live-player-avatar {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 12px
  }

  .live-position>strong {
    width: 31px;
    height: 31px;
    min-width: 31px;
    border-radius: 10px;
    font-size: 14px
  }
}

/* RC22 — Apple Sports x DP World Tour premium live leaderboard */
:root {
  --rc22-card: #121c29;
  --rc22-card-alt: #0f1823;
  --rc22-card-open: #172536;
  --rc22-line: rgba(255, 255, 255, .075);
  --rc22-muted: #8394a7;
  --rc22-label: #9cabbc;
  --rc22-under: #ed1c2e;
  --rc22-even: #243344;
  --rc22-over: #dce4eb;
}

.live-board-shell {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.tournament-center-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.85fr);
  gap: 12px;
}

.tournament-center-grid--compact {
  grid-template-columns: minmax(0, 1fr);
}

.center-column {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.tournament-main {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.tournament-sidebar {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.sidebar-panel {
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(12, 20, 32, .96), rgba(7, 12, 18, .95));
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 20px 50px rgba(0, 0, 0, .20);
  min-height: 280px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.sidebar-panel .premium-panel-head {
  margin-bottom: 14px;
}

.premium-panel-card {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(16, 25, 36, .94), rgba(10, 17, 25, .96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .035), 0 18px 36px rgba(0, 0, 0, .16);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
}

.premium-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.premium-panel-head h3 {
  margin: 0;
  color: #f7fbff;
  font-size: 15px;
  font-weight: 800;
}

.premium-panel-head span {
  color: var(--rc22-label);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.weather-head-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.timeline-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.timeline-item strong {
  display: block;
  color: #f3f6fa;
  font-size: 13px;
}

.timeline-item p {
  margin: 3px 0 0;
  color: var(--rc22-muted);
  font-size: 12px;
  line-height: 1.4;
}

.timeline-item span {
  flex-shrink: 0;
  color: #80bef7;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

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

.stat-pill {
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  background: rgba(8, 14, 21, .7);
}

.stat-pill small {
  display: block;
  margin-bottom: 4px;
  color: var(--rc22-label);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stat-pill strong {
  display: block;
  color: #f7fbff;
  font-size: 14px;
  line-height: 1.3;
}

.course-hole-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.course-hole-card {
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.course-hole-card strong {
  display: block;
  color: #f7fbff;
  font-size: 13px;
}

.course-hole-card small {
  display: block;
  margin-top: 3px;
  color: var(--rc22-label);
  font-size: 11px;
}

.course-hole-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.course-hole-metrics span {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(104, 188, 255, .12);
  color: #a9d7ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
}

.tv-mode-spotlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(44, 86, 127, .24), rgba(10, 17, 25, .96));
}

.tv-mode-pill {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #8fd3ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.tv-mode-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: var(--rc22-muted);
  font-size: 11px;
  font-weight: 700;
}

.tv-mini-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tv-mini-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  background: rgba(255, 255, 255, .025);
}

.tv-mini-row strong {
  color: #ffd978;
  font-size: 13px;
}

.tv-mini-row span {
  color: #f7fbff;
  font-size: 13px;
}

.tv-mini-row em {
  color: #a9d7ff;
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.compact-state {
  padding: 10px 0 2px;
}

.scoreboard-live-header {
  position: sticky;
  top: 0;
  z-index: 60;
  overflow: visible;
  padding: 0 1px 0;
  background: linear-gradient(180deg, rgba(8, 12, 18, .92), rgba(8, 12, 18, .84));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.scoreboard-live-header .compact-tabs {
  margin-top: 2px;
}

.scoreboard-live-header .class-tabs {
  margin: 2px 0 0;
}

.scoreboard-live-header .tournament-center-nav {
  margin-top: 1px;
}

.scoreboard-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  background: rgba(12, 21, 31, .82);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .20);
}

.statusbar-copy {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--rc22-muted);
}

.statusbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.statusbar-weather-control {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 67, 67, .16);
  color: #ff8d8d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.live-pill.finished {
  background: rgba(255, 208, 107, .14);
  color: #ffd978;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff4d57;
  box-shadow: 0 0 0 0 rgba(255, 78, 89, .55);
  animation: pulseLive 1.8s infinite;
}

.live-pill.finished .live-dot {
  background: #ffd978;
  box-shadow: none;
  animation: none;
}

@keyframes pulseLive {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 78, 89, .55)
  }

  70% {
    box-shadow: 0 0 0 8px rgba(255, 78, 89, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 78, 89, 0)
  }
}

.scoreboard-summary {
  margin: 2px 0 0;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, .045);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(9, 14, 20, .94), rgba(7, 11, 16, .97));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .012);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, opacity .25s ease;
}

.compact-hero {
  padding: 5px 7px;
}

.summary-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: start;
}

.summary-hero-copy {
  min-width: 0;
}

.summary-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 3px;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(68, 214, 118, .11);
  color: #98ecb3;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.summary-live-pill .live-dot {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 3px rgba(68, 214, 118, .08), 0 0 8px rgba(68, 214, 118, .24);
}

.summary-eyebrow {
  margin: 0;
}

.tournament-center-brand {
  margin-top: 4px;
  display: inline-flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 5px;
  opacity: .78;
}

.tournament-center-brand .brand-primary {
  color: #b5c2cf;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tournament-center-brand .brand-secondary {
  color: #7f90a3;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: none;
}

.summary-hero h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 31px);
  font-weight: 900;
  line-height: 1.02;
}

.summary-subtitle {
  margin: 1px 0 0;
  color: var(--rc22-muted);
  font-size: 12px;
  line-height: 1.22;
}

.summary-venue,
.summary-dates {
  color: #8a9baf;
}

.summary-updated {
  justify-self: end;
  text-align: right;
  align-self: start;
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, .06);
  margin-top: 1px;
}

.summary-updated small {
  display: block;
  color: #76899d;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.summary-updated strong {
  display: block;
  margin-top: 1px;
  color: #dce6f0;
  font-size: 12px;
  font-weight: 700;
}

.summary-leader-card {
  min-width: 220px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background: rgba(7, 14, 22, .56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.summary-leader-label {
  margin: 0 0 7px;
  color: var(--rc22-label);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.summary-leader {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-leader strong {
  color: #fff9e8;
  font-size: 17px;
  font-weight: 800;
}

.summary-leader span {
  color: #ffd978;
  font-size: 15px;
  font-weight: 800;
}

.summary-metrics {
  display: none;
}

.compact-hero-metrics {
  display: none;
}

.hero-progress-block {
  display: none;
}

.hero-progress-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rc22-muted);
  font-size: 10px;
}

.hero-progress-row strong {
  color: #f7fbff;
  font-size: 11px;
}

.hero-progress-bar {
  margin-top: 0;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  overflow: hidden;
}

.hero-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #29d168, #84f2b1);
}

.hero-progress-block p {
  margin: 0;
  color: var(--rc22-muted);
  font-size: 10px;
  white-space: nowrap;
}

.summary-metric {
  display: none;
}

.summary-metric small {
  display: block;
  margin-bottom: 2px;
  color: var(--rc22-label);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.summary-metric strong {
  display: block;
  color: #f7fbff;
  font-size: 12px;
  line-height: 1.2;
}

.premium-board-head,
.premium-score-row {
  display: grid;
  grid-template-columns: 88px minmax(280px, 1fr) 86px 106px 104px;
  gap: 14px;
  align-items: center;
}

.tournament-center-nav {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  overflow: visible;
  padding-top: 2px;
  scrollbar-width: none;
}

.tournament-center-nav::-webkit-scrollbar {
  display: none;
}
.tournament-center-nav .view-pill {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .08);
  margin-top: 2px;
  min-height: 33px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.05;
  background: rgba(255, 255, 255, .04);
  color: var(--rc22-muted);
}

.tournament-center-nav .view-pill.view-pill--pulse {
  animation: preEventStartlistPulse .82s cubic-bezier(.22, .61, .36, 1) infinite;
  border-color: rgba(126, 255, 168, .96);
  background: linear-gradient(180deg, rgba(54, 182, 118, .62), rgba(22, 116, 70, .74));
  color: #f6fff8;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .34);
  transform-origin: center;
}

@keyframes preEventStartlistPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(126, 255, 168, .40), 0 0 0 0 rgba(126, 255, 168, 0), 0 0 0 rgba(126, 255, 168, 0);
    filter: brightness(1);
    transform: translateY(0) scale(1);
  }

  40% {
    box-shadow: 0 0 0 6px rgba(126, 255, 168, .24), 0 0 22px rgba(126, 255, 168, .48), 0 0 36px rgba(126, 255, 168, .30);
    filter: brightness(1.2);
    transform: translateY(-1px) scale(1.045);
  }

  70% {
    box-shadow: 0 0 0 11px rgba(126, 255, 168, .08), 0 0 30px rgba(126, 255, 168, .56), 0 0 44px rgba(126, 255, 168, .32);
    filter: brightness(1.24);
    transform: translateY(-1px) scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tournament-center-nav .view-pill.view-pill--pulse {
    animation: none;
  }
}

.tournament-center-nav .view-inline-meta {
  margin-left: 16px;
  color: rgba(221, 234, 247, .84);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
  pointer-events: none;
}

.weather-now-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-color: rgba(106, 190, 255, .46);
  background: linear-gradient(180deg, rgba(58, 140, 209, .30), rgba(34, 101, 168, .34));
  color: #dff1ff;
}

.weather-now-pill .weather-wind-logo {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 22px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath d='M4 22h30c9 0 9-14 0-14-7 0-11 5-11 11' fill='none' stroke='%23dff1ff' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M4 32h42c9 0 9-14 0-14-6 0-10 4-10 10' fill='none' stroke='%23dff1ff' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M4 42h26c9 0 9 14 0 14-7 0-11-5-11-11' fill='none' stroke='%23dff1ff' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.weather-now-pill .weather-pill-chevron {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .2s ease;
}

.weather-now-pill[aria-expanded="true"] .weather-pill-chevron {
  transform: rotate(180deg);
}

.weather-now-pill:hover {
  border-color: rgba(138, 207, 255, .7);
  background: linear-gradient(180deg, rgba(65, 155, 229, .38), rgba(38, 114, 189, .40));
  color: #f4fbff;
}

.weather-now-pill:focus-visible {
  outline: 2px solid rgba(142, 207, 255, .72);
  outline-offset: 1px;
}

.weather-now-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: auto;
  left: 0;
  width: min(560px, calc(100vw - 24px));
  z-index: 520;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.statusbar-weather-control .weather-now-dropdown {
  left: 0;
  right: auto;
}

body.route-islandsmot50plus .tournament-hero,
body.route-meistaramot-2026 .tournament-hero {
  position: relative;
  overflow: visible;
  z-index: 620;
}

body.route-islandsmot50plus #tournamentHero {
  position: relative;
  z-index: 620;
}

@media (min-width: 700px) {
  body.route-islandsmot50plus #tournamentHero {
    transition: margin-bottom .18s ease;
  }

  body.route-islandsmot50plus .tournament-hero {
    transition: padding-bottom .18s ease;
  }

  body.route-islandsmot50plus #tournamentHero:has(.weather-now-dropdown.is-open) {
    margin-bottom: 176px;
  }

  body.route-islandsmot50plus #tournamentHero.is-weather-open {
    margin-bottom: 186px !important;
  }

  body.route-islandsmot50plus .tournament-hero:has(.weather-now-dropdown.is-open) {
    padding-bottom: 186px !important;
  }
}

body.route-islandsmot50plus .tournament-hub {
  position: relative;
  z-index: 8;
}

body.route-islandsmot50plus #tournamentHero .hero-status-slot,
body.route-meistaramot-2026 #tournamentHero .hero-status-slot,
body.route-islandsmot50plus #tournamentHero .scoreboard-statusbar,
body.route-meistaramot-2026 #tournamentHero .scoreboard-statusbar,
body.route-islandsmot50plus #tournamentHero .statusbar-weather-control,
body.route-meistaramot-2026 #tournamentHero .statusbar-weather-control {
  position: relative;
  z-index: 510;
}

body.route-islandsmot50plus #tournamentHero .hero-status-slot,
body.route-islandsmot50plus #tournamentHero .scoreboard-statusbar,
body.route-islandsmot50plus #tournamentHero .statusbar-weather-control,
body.route-islandsmot50plus #tournamentHero .statusbar-weather-control .weather-now-dropdown {
  z-index: 3600 !important;
}

.weather-now-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scoreboard-live-header,
.scoreboard-live-header .tournament-center-nav,
body.route-islandsmot50plus .scoreboard-live-header,
body.route-islandsmot50plus .scoreboard-live-header .tournament-center-nav {
  overflow: visible !important;
}

.weather-now-dropdown-body {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(15, 25, 38, .98), rgba(9, 16, 24, .98));
  box-shadow: 0 20px 46px rgba(0, 0, 0, .34);
  backdrop-filter: blur(5px);
}

.weather-grid.weather-grid-dropdown {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .weather-now-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: auto;
    right: 2px;
    width: min(360px, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    margin-top: 0;
    transform: none;
  }

  .statusbar-weather-control {
    width: 100%;
    display: block;
    text-align: right;
  }

  .statusbar-weather-control .weather-now-pill {
    margin-left: auto;
  }

  .weather-now-dropdown.is-open {
    display: block;
  }

  .weather-grid.weather-grid-dropdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.tournament-center-nav .view-pill.active {
  border-color: rgba(95, 215, 140, .28);
  background: rgba(69, 200, 116, .14);
}

.premium-board-head {
  padding: 2px 20px 10px;
  color: rgba(228, 238, 249, .7);
  font-weight: 700;
  letter-spacing: .17em;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  text-transform: uppercase;
}

.premium-board-head span:nth-child(n+3) {
  text-align: right;
}

.live-leaderboard {
  margin-top: 1px;
  font-size: 11px;
  padding: 6px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background: linear-gradient(180deg, #0b131d, #080f17);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025), 0 28px 70px rgba(0, 0, 0, .30);
}

.leaderboard-panel {
  padding: 10px 6px 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.premium-score-item {
  max-width: 100%;
  min-width: 0;
}

.premium-score-item:nth-child(even) {
  background: linear-gradient(180deg, #162230, #111b27);
}

.premium-score-item:hover {
  transform: translateY(-2px);
  border-color: rgba(117, 190, 255, .18);
  background: linear-gradient(180deg, #1a2a3b, #132131);
}

.premium-score-item.is-expanded {
  background: linear-gradient(180deg, var(--rc22-card-open), #111e2c);
  border-color: rgba(104, 188, 255, .20);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 20px 42px rgba(0, 0, 0, .28);
}

.premium-score-item.is-leader {
  border-color: rgba(234, 188, 76, .26);
  background: linear-gradient(180deg, rgba(35, 31, 23, .94), rgba(14, 18, 25, .94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 18px 40px rgba(0, 0, 0, .24), 0 0 24px rgba(220, 172, 70, .08);
}

.premium-score-item.is-leader::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 226, 158, .88), rgba(217, 162, 63, .50));
}

.premium-score-item.is-leader .score-pill {
  color: #fffbe9;
  border: 1px solid rgba(255, 228, 166, .26);
  text-shadow: 0 0 11px rgba(255, 222, 150, .20);
}

.premium-score-item.is-leader .score-pill.under {
  background: linear-gradient(180deg, #ff4658, #de1f33);
}

.premium-score-item.is-leader .score-pill.even {
  background: linear-gradient(180deg, #36475a, #253445);
}

.premium-score-item.is-leader .score-pill.over {
  background: linear-gradient(180deg, #f3f6f9, #dce4eb);
  color: #1b2632;
  text-shadow: none;
}

.premium-score-item.is-expanded {
  border-color: rgba(104, 188, 255, .24);
}

.premium-score-row {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 98px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.premium-score-row.movement-up {
  animation: premiumRowShiftUp 1.25s cubic-bezier(.2, .7, .2, 1) 1;
}

.premium-score-row.movement-down {
  animation: premiumRowShiftDown 1.25s cubic-bezier(.2, .7, .2, 1) 1;
}

@keyframes premiumRowShiftUp {
  0% {
    transform: translateY(5px);
    background: rgba(34, 211, 111, .13);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes premiumRowShiftDown {
  0% {
    transform: translateY(-5px);
    background: rgba(255, 85, 85, .12);
  }

  100% {
    transform: translateY(0);
  }
}

.premium-score-row:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .04);
}

.premium-score-row:focus-visible {
  outline: 2px solid rgba(104, 188, 255, .36);
  outline-offset: -2px;
}

.premium-score-row:hover {
  background: rgba(255, 255, 255, .025);
}

.premium-position {
  display: grid;
  grid-template-columns: 44px;
  grid-template-areas: "rank" "move";
  justify-items: center;
  align-items: center;
  gap: 7px;
}

.premium-position .rank-avatar {
  grid-area: avatar;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: linear-gradient(150deg, #2f3f52, #1a2633);
  color: #e0ecf6;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 18px rgba(0, 0, 0, .24);
}

.premium-position .rank-avatar--podium-1 {
  border-color: rgba(247, 214, 126, .42);
  background: linear-gradient(155deg, #765a23, #4c3716 55%, #2c1f0d);
  color: #ffedbf;
  box-shadow: inset 0 1px 0 rgba(255, 248, 220, .22), inset 0 -1px 0 rgba(0, 0, 0, .22), 0 8px 18px rgba(0, 0, 0, .24), 0 0 14px rgba(224, 175, 71, .12);
}

.premium-position .rank-avatar--podium-2 {
  border-color: rgba(222, 233, 244, .62);
  background: linear-gradient(155deg, #6f7f8f, #3f4d5b 58%, #26313d);
  color: #f5f9fd;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), inset 0 -1px 0 rgba(0, 0, 0, .2), 0 8px 18px rgba(0, 0, 0, .24), 0 0 16px rgba(194, 216, 238, .16);
}

.premium-position .rank-avatar--podium-3 {
  border-color: rgba(219, 161, 109, .46);
  background: linear-gradient(150deg, #3b2f27, #241c18);
  color: #f2dcc6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 18px rgba(0, 0, 0, .24), 0 0 0 1px rgba(219, 161, 109, .2);
}

.premium-position .rank-order {
  grid-area: rank;
  color: #c2d0dc;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: .04em;
}

.premium-position .movement-badge {
  grid-area: move;
  justify-self: center;
  min-width: 34px;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  color: #c6d4de;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
}

.premium-position .movement-badge.up {
  background: rgba(68, 184, 110, .18);
  color: #8ef2bc;
  animation: movementBadgeDecay 1.6s ease-out 1 both;
}

.premium-position .movement-badge.down {
  background: rgba(255, 114, 114, .16);
  color: #ff9ea2;
  animation: movementBadgeDecay 1.6s ease-out 1 both;
}

.premium-position .movement-badge.same {
  background: rgba(255, 255, 255, .06);
  color: #c6d4de
}

@keyframes movementBadgeDecay {
  0% {
    opacity: 0;
    transform: translateY(2px) scale(.92);
  }

  18% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  100% {
    opacity: .46;
    transform: translateY(0) scale(1);
  }
}

.premium-player {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
}

.premium-avatar {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: linear-gradient(160deg, #293746, #141e29);
  color: #deebf6;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .05em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10), inset 0 -1px 0 rgba(0, 0, 0, .28), 0 8px 20px rgba(0, 0, 0, .26);
}

.rank-avatar.has-image,
.premium-avatar.has-image,
.player-initials.has-image {
  overflow: hidden;
  cursor: zoom-in;
}

.rank-avatar.has-image img,
.premium-avatar.has-image img,
.player-initials.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.avatar-lightbox-open {
  overflow: hidden;
}

.avatar-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 24px;
}

.avatar-lightbox[hidden] {
  display: none;
}

.avatar-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 18, .82);
  backdrop-filter: blur(16px);
}

.avatar-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 560px);
  border-radius: 28px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(18, 28, 41, .7), rgba(9, 16, 26, .7));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .48);
  opacity: 0;
  transform: translateY(14px) scale(.965);
  transition: opacity .18s ease, transform .22s ease;
}

.avatar-lightbox.is-open .avatar-lightbox-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.avatar-lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .08);
  color: #f5fbff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.avatar-lightbox-figure {
  margin: 0;
}

.avatar-lightbox-image {
  width: 100%;
  display: block;
  border-radius: 22px;
  background: #0f1c2a;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.avatar-lightbox-copy {
  display: grid;
  gap: 4px;
  justify-items: center;
  margin-top: -2px;
  padding: 12px 14px 10px;
  border-radius: 0 0 20px 20px;
}

.avatar-lightbox-caption {
  margin-top: 14px;
  color: #eef6ff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.avatar-lightbox-subtitle {
  color: rgba(223, 236, 247, .72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.avatar-lightbox-feature {
  max-width: 38ch;
  color: rgba(238, 246, 255, .78);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.avatar-lightbox-stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.avatar-lightbox-score,
.avatar-lightbox-progress {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #eef6ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
}

.premium-score-item.is-leader-transition .premium-avatar::before,
.premium-score-item.is-leader-transition .premium-avatar::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  pointer-events: none;
}

.premium-score-item.is-leader-transition .premium-avatar::before {
  border: 1.5px solid rgba(255, 221, 137, .66);
  opacity: 0;
  transform: scale(.96);
  animation: leaderRingSettle 420ms ease-out 1 forwards;
}

.premium-score-item.is-leader-transition .premium-avatar::after {
  border: 2px solid transparent;
  border-top-color: rgba(255, 226, 154, .95);
  border-right-color: rgba(255, 202, 95, .82);
  opacity: 0;
  transform: rotate(-110deg) scale(.96);
  animation: leaderRingDrawSweep 620ms cubic-bezier(.2, .72, .2, 1) 1;
}

.premium-score-item.is-leader .premium-avatar {
  border-color: rgba(255, 218, 123, .38);
  background: linear-gradient(145deg, #6d5420, #2f240c);
  color: #ffe19a;
}

.premium-avatar.avatar-tone-green {
  background: linear-gradient(155deg, #2a4b3a, #182a20);
  color: #d9f3e5;
}

.premium-avatar.avatar-tone-navy {
  background: linear-gradient(155deg, #283d59, #162436);
  color: #d9e8f7;
}

.premium-avatar.avatar-tone-teal {
  background: linear-gradient(155deg, #22535a, #143136);
  color: #d5eff2;
}

.premium-avatar.avatar-tone-gold {
  background: linear-gradient(155deg, #5a4927, #33280f);
  color: #f6e7be;
}

.premium-avatar.avatar-tone-slate {
  background: linear-gradient(155deg, #3d4a58, #232b34);
  color: #e1e9f1;
}

.premium-avatar.avatar-tone-purple {
  background: linear-gradient(155deg, #443a58, #281f38);
  color: #e8def8;
}

.inline-avatar {
  width: 36px;
  height: 36px;
  flex-basis: 36px;
  font-size: 12px;
}

.premium-avatar.has-flag {
  font-size: 18px;
  letter-spacing: 0;
}

.inline-avatar.has-flag {
  font-size: 16px;
}

.premium-player-copy {
  min-width: 0;
  display: block;
  flex: 1;
}

.player-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.premium-player-copy>strong {
  display: block;
  overflow: hidden;
  color: #f7f9fb;
  font-size: 18px;
  font-weight: 780;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.leader-pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 212, 92, .16);
  color: #ffd978;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.premium-score-item.is-leader-transition .leader-pill,
.leader-pill.leader-pill--reveal {
  animation: leaderPillReveal 150ms ease-out 1 both;
}

.premium-score-item.is-leader-transition .premium-total .score-pill,
.score-pill.score-pill--leader-flash {
  animation: leaderScoreFlash 1000ms ease-out 1;
}

@keyframes leaderRingDrawSweep {
  0% {
    opacity: 0;
    transform: rotate(-110deg) scale(.96);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: rotate(220deg) scale(1.02);
  }
}

@keyframes leaderRingSettle {
  0% {
    opacity: 0;
    transform: scale(.94);
  }

  65% {
    opacity: .95;
  }

  100% {
    opacity: .62;
    transform: scale(1);
  }
}

@keyframes leaderPillReveal {
  0% {
    opacity: 0;
    transform: translateY(1px) scale(.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes leaderScoreFlash {
  0% {
    box-shadow: 0 0 0 rgba(255, 220, 131, 0);
    filter: brightness(1);
  }

  28% {
    box-shadow: 0 0 16px rgba(255, 214, 112, .44), 0 0 28px rgba(255, 173, 72, .22);
    filter: brightness(1.05);
  }

  100% {
    box-shadow: 0 0 0 rgba(255, 220, 131, 0);
    filter: brightness(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .premium-score-item.is-leader-transition .premium-avatar::before,
  .premium-score-item.is-leader-transition .premium-avatar::after,
  .premium-score-item.is-leader-transition .leader-pill,
  .leader-pill.leader-pill--reveal,
  .premium-score-item.is-leader-transition .premium-total .score-pill,
  .score-pill.score-pill--leader-flash {
    animation: none;
  }
}

.premium-player-copy>small {
  display: block;
  margin-top: 5px;
  overflow: hidden;
  color: var(--rc22-muted);
  font-size: 12px;
  font-weight: 570;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.player-move-hint {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.player-move-hint.up {
  color: #8ef2bc;
}

.player-move-hint.down {
  color: #ff9ea2;
}

.premium-today,
.premium-thru,
.premium-total {
  text-align: right;
}

.premium-today>span,
.premium-thru>span,
.premium-total>span {
  display: block;
  margin-bottom: 6px;
  color: var(--rc22-label);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.premium-thru>strong {
  color: #edf3f8;
  font-size: 15px;
}

.mini-score {
  font-size: 17px;
  font-weight: 900;
}

.mini-score.unknown {
  color: rgba(160, 174, 188, .8);
}

.mini-score.under {
  color: #ff7d88
}

.mini-score.even {
  color: #e9eef3
}

.mini-score.over {
  color: #c5d0db
}

.score-pill {
  min-width: 76px;
  min-height: 50px;
  padding: 10px 15px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px 16px 16px 6px;
  font-size: 20px;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 10px 24px rgba(0, 0, 0, .24);
}

.score-pill.under {
  background: linear-gradient(180deg, #f12536, #d61023);
  color: #fff;
}

.score-pill.even {
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(180deg, #2d3e50, #1f2e3d);
  color: #fff;
}

.score-pill.over {
  background: linear-gradient(180deg, #eef2f5, #d4dde5);
  color: #172230;
}

.score-pill.unknown {
  border: 1px solid rgba(255, 255, 255, .06);
  background: rgba(18, 28, 39, .94);
  color: rgba(174, 188, 202, .78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 8px 18px rgba(0, 0, 0, .18);
}

.premium-player .score-chevron {
  flex: 0 0 auto;
  transition: transform .25s ease, color .25s ease;
}

.premium-score-item.is-expanded .score-chevron {
  transform: rotate(180deg);
  color: #90d3ff;
}

.premium-score-item .inline-scorecard {
  padding: 0 18px 22px 108px;
  animation: rc22ScoreOpen .25s cubic-bezier(.2, .8, .2, 1) both;
  max-width: 100%;
  min-width: 0;
}

.premium-score-item.is-expanded {
  animation: cardExpand .25s ease both;
}

@keyframes cardExpand {
  from {
    transform: scale(0.995);
    opacity: 0.96;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.inline-scorecard {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-score-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 10px;
}

.inline-score-summary span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 14px;
  background: rgba(8, 15, 24, .55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.inline-score-summary small {
  display: block;
  margin-bottom: 4px;
  color: var(--rc22-label);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.inline-score-summary strong {
  display: block;
  color: #f6f9fc;
  font-size: 16px;
  font-weight: 800;
}

.inline-scorecard-panel {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 18px;
  background: rgba(5, 11, 18, .46);
  max-width: 100%;
}

.inline-scorecard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--rc22-label);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.inline-scorecard-player {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inline-scorecard-player-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inline-scorecard-player-copy strong {
  overflow: hidden;
  color: #f3f8fd;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.inline-scorecard-player-copy span {
  overflow: hidden;
  color: var(--rc22-muted);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.inline-scorecard-label {
  flex: 0 0 auto;
}

.scorecard-scroll {
  overflow-x: auto;
  padding-bottom: 6px;
  max-width: 100%;
}

.scorecard-segments {
  display: grid;
  gap: 10px;
}

.scorecard-grid {
  display: grid;
  grid-template-columns: 72px repeat(19, 44px);
  min-width: max-content;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, .02);
}

.scorecard-grid>div {
  min-height: 44px;
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: #dfe6ec;
  font-size: 12px;
}

.scorecard-grid>div:nth-last-child(-n+20) {
  border-bottom: 0
}

.scorecard-grid.scorecard-grid--nine {
  grid-template-columns: 72px repeat(10, 44px);
}

.scorecard-grid.scorecard-grid--nine>div:nth-last-child(-n+20) {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.scorecard-grid.scorecard-grid--nine>div:nth-last-child(-n+11) {
  border-bottom: 0;
}

.scorecard-label {
  position: sticky;
  left: 0;
  z-index: 1;
  background: rgba(9, 15, 24, .96);
  color: var(--rc22-muted);
  font-size: 10px !important;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hole-score {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.team-members-board {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .02);
  overflow: hidden;
}

.team-members-head,
.team-members-row {
  display: grid;
  grid-template-columns: minmax(190px, 1fr) 68px 62px 82px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
}

.team-members-board.is-simple .team-members-head,
.team-members-board.is-simple .team-members-row {
  grid-template-columns: minmax(190px, 1fr) 62px 96px;
}

.team-members-board.is-simple .team-members-head > span:not(:first-child) {
  justify-self: center;
  text-align: center;
}

.team-members-board.is-simple .team-member-thru,
.team-members-board.is-simple .team-member-total,
.team-members-board.is-simple .team-member-today {
  justify-self: center;
}

.team-members-board.is-simple.has-today .team-members-head,
.team-members-board.is-simple.has-today .team-members-row {
  grid-template-columns: minmax(190px, 1fr) 56px 62px 96px;
}

.team-members-board.is-simple.has-today .team-members-head > span:nth-child(2),
.team-members-board.is-simple.has-today .team-members-head > span:nth-child(3),
.team-members-board.is-simple.has-today .team-members-head > span:nth-child(4) {
  justify-self: center;
  text-align: center;
}

.team-members-board.is-simple.has-today .team-member-total {
  justify-self: center;
}

.team-members-board.is-simple .team-member-total {
  justify-self: end;
}

.team-members-item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.team-members-item:first-of-type {
  border-top: 0;
}

.team-members-item > .team-members-row {
  grid-column: 2;
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
}

.team-members-row.is-clickable {
  cursor: pointer;
}

.team-members-row.is-clickable:hover {
  background: rgba(255, 255, 255, .03);
}

.team-member-thru {
  justify-self: center;
  color: #d9e4ee;
  font-size: 12px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
}

.team-member-today {
  justify-self: center;
  font-size: 12px;
  font-weight: 760;
  font-variant-numeric: tabular-nums;
  color: #d9e4ee;
}

.team-member-today.under {
  color: #ffb7c3;
}

.team-member-today.over {
  color: #f2f6fb;
}

.team-member-today.even {
  color: #d9e4ee;
}

.team-members-item .inline-scorecard {
  grid-column: 1 / -1;
  padding: 0 10px 10px;
}

.team-members-head {
  background: rgba(9, 15, 24, .9);
  color: var(--rc22-label);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.team-members-row {
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: #e6eef5;
  font-size: 12px;
}

.team-members-row:first-of-type {
  border-top: 0;
}

.team-member-name {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-member-name strong {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.team-member-name small {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--rc22-muted);
  font-size: 10px;
}

.team-member-total {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 30px;
  border-radius: 999px;
  font-weight: 860;
  font-variant-numeric: tabular-nums;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
}

.team-member-total.under {
  background: rgba(237, 28, 46, .2);
  color: #ffdbe0;
  border-color: rgba(237, 28, 46, .45);
}

.team-member-total.even {
  background: rgba(36, 51, 68, .46);
  color: #eaf1f7;
}

.team-member-total.over {
  background: rgba(220, 228, 235, .16);
  color: #f8fbff;
}

.team-members-board.has-favorites .team-members-head,
.team-members-board.has-favorites .team-members-row {
  padding-right: 12px;
}

.favorite-toggle--member {
  position: static;
  transform: none;
  z-index: 1;
  width: 19px;
  height: 19px;
  margin-left: 12px;
  border-width: 1px;
  font-size: 11px;
}

.favorite-toggle--member:hover {
  transform: scale(1.04);
}

@media (max-width: 780px) {
  .team-members-head,
  .team-members-row {
    grid-template-columns: minmax(138px, 1fr) 52px 44px 64px;
    gap: 6px;
    padding: 8px 10px;
  }

  .team-members-row {
    font-size: 11px;
  }

  .team-member-total {
    min-width: 44px;
    min-height: 26px;
  }
  .team-member-waiting {
    min-width: 44px;
    min-height: 26px;
  }

  .team-member-waiting-chip {
    min-width: 56px;
    min-height: 26px;
    font-size: 10px;
  }

  .team-members-board.is-simple .team-members-head,
  .team-members-board.is-simple .team-members-row {
    grid-template-columns: minmax(136px, 1fr) 44px 80px;
  }

  .team-members-board.is-simple.has-today .team-members-head,
  .team-members-board.is-simple.has-today .team-members-row {
    grid-template-columns: minmax(118px, 1fr) 42px 44px 72px;
  }

  .team-members-board.is-simple.has-today .team-member-total {
    justify-self: center;
  }

}

.tournament-summary-card {
  width: clamp(180px, 18vw, 220px);
  min-height: 156px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: linear-gradient(180deg, rgba(12, 21, 31, .78), rgba(9, 16, 24, .88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 16px 36px rgba(0, 0, 0, .20);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.tournament-summary-card-label {
  color: #90a1b5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tournament-summary-card-value {
  color: #f7fbff;
  font-size: clamp(40px, 4.1vw, 48px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.04em;
}

.tournament-summary-card-secondary {
  margin: 0;
  color: #d3deea;
  font-size: 15px;
  font-weight: 700;
}

.tournament-summary-card-meta {
  margin: 0;
  color: #8294a8;
  font-size: 12px;
  font-weight: 600;
}

.hole-score.birdie {
  background: rgba(255, 59, 87, .28);
  color: #ffd9e1;
  border: 1px solid rgba(255, 96, 123, .58)
}

.hole-score.eagle {
  background: rgba(194, 24, 57, .38);
  color: #ffe5ea;
  border: 1px solid rgba(255, 112, 140, .68)
}

.hole-score.bogey {
  background: rgba(0, 153, 255, .28);
  color: #dff2ff;
  border: 1px solid rgba(94, 199, 255, .58)
}

.hole-score.double {
  background: rgba(118, 63, 205, .42);
  color: #f2eaff;
  border: 1px solid rgba(183, 141, 255, .72)
}

.hole-score.par {
  background: rgba(46, 204, 113, .24);
  color: #dcffe9;
  border: 1px solid rgba(96, 236, 154, .62)
}

.hole-score.empty {
  background: rgba(255, 204, 51, .22);
  color: #ffe9a6;
  border: 1px solid rgba(255, 214, 91, .78);
}

@keyframes rc22ScoreOpen {
  from {
    opacity: 0;
    transform: translateY(-8px) scaleY(.98)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.scoreboard-classes .class-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  position: relative;
  overflow: hidden;
  --pill-accent: #6b7e94;
  min-height: 60px;
  padding: 16px 18px;
}

.scoreboard-classes .class-pill[data-leaderboard-class="all"] {
  --pill-accent: #36d66a;
}

.scoreboard-classes .class-pill[data-leaderboard-class*="Karlar"] {
  --pill-accent: #5cb8ff;
}

.scoreboard-classes .class-pill[data-leaderboard-class*="Konur"] {
  --pill-accent: #ff72b2;
}

.scoreboard-classes .class-pill[data-leaderboard-class*="Kvenna"] {
  --pill-accent: #ff72b2;
}

.scoreboard-classes .class-pill[data-leaderboard-class="favorites"] {
  --pill-accent: #ffd978;
  border-color: rgba(255, 220, 136, .36);
  background: linear-gradient(180deg, rgba(66, 54, 26, .44), rgba(34, 29, 16, .5));
  color: #f8eac1;
  box-shadow: inset 0 1px 0 rgba(255, 245, 210, .14), 0 0 0 1px rgba(255, 220, 136, .12);
}

.scoreboard-classes .class-pill[data-leaderboard-class="favorites"].active {
  border-color: rgba(255, 220, 136, .75);
  background: linear-gradient(180deg, rgba(255, 213, 108, .78), rgba(194, 137, 39, .72));
  color: #2c1f0a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .24), 0 0 14px rgba(255, 204, 102, .25);
}

.scoreboard-classes .leaderboard-inline-meta {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  color: rgba(221, 234, 247, .84);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  white-space: nowrap;
}

.scoreboard-classes .leaderboard-sort-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(6, 16, 27, .78);
  color: #d8e2ee;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.scoreboard-classes .leaderboard-sort-control select {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(12, 27, 45, .92);
  color: #eef4fb;
  border-radius: 10px;
  min-height: 36px;
  padding: 0 30px 0 10px;
  font-size: 12px;
  font-weight: 700;
}

.scoreboard-classes .leaderboard-sort-control select:focus {
  outline: 2px solid rgba(92, 184, 255, .55);
  outline-offset: 1px;
}

.scoreboard-classes .class-pill[data-leaderboard-class="all"].active,
.class-tabs .class-pill[data-id="all"].active {
  background: linear-gradient(180deg, #36d66a, #24b957);
  color: #04130b;
}

.scoreboard-classes .class-pill[data-leaderboard-class*="Karlar"].active,
.class-tabs .class-pill[data-id*="Karlar"].active {
  background: linear-gradient(180deg, #5cb8ff, #2d91ff);
  color: #06111b;
}

.scoreboard-classes .class-pill[data-leaderboard-class*="Konur"].active,
.class-tabs .class-pill[data-id*="Konur"].active {
  background: linear-gradient(180deg, #ff72b2, #e74891);
  color: #1b0710;
}

.scoreboard-classes .class-pill[data-leaderboard-class*="Kvenna"].active,
.class-tabs .class-pill[data-id*="Kvenna"].active {
  background: linear-gradient(180deg, #ff72b2, #e74891);
  color: #1b0710;
}

@media(max-width:820px) {
  .tournament-center-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-panel {
    display: none;
  }

  .summary-hero {
    gap: 5px;
  }

  .summary-leader-card {
    min-width: 0;
    width: 100%
  }

  .scoreboard-summary {
    padding: 5px 6px;
  }

  .compact-hero {
    padding: 5px 6px;
  }

  .tournament-center-nav {
    padding-bottom: 1px;
  }

  .tournament-center-brand .brand-primary {
    font-size: 8px;
  }

  .tournament-center-brand .brand-secondary {
    font-size: 8px;
  }

  .premium-board-head,
  .premium-score-row {
    grid-template-columns: 72px minmax(0, 1fr) 74px;
    gap: 9px;
  }

  .premium-board-head span:nth-child(3),
  .premium-board-head span:nth-child(4),
  .premium-today,
  .premium-thru {
    display: none
  }

  .premium-board-head span:nth-child(5) {
    grid-column: 3
  }

  .premium-score-row {
    min-height: 78px;
    padding: 11px 10px
  }

  .premium-position {
    grid-template-columns: 33px;
    gap: 4px
  }

  .premium-position .rank-avatar {
    width: 32px;
    height: 32px;
    font-size: 10px
  }

  .premium-position .rank-order {
    font-size: 10px
  }

  .premium-avatar {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
    font-size: 11px
  }

  .inline-avatar {
    width: 33px;
    height: 33px;
    flex-basis: 33px;
    font-size: 10px;
  }

  .premium-player {
    gap: 9px
  }

  .premium-player-copy>strong {
    font-size: 15px
  }

  .premium-player-copy>small {
    font-size: 10px;
    margin-top: 3px
  }

  .score-pill {
    min-width: 60px;
    min-height: 42px;
    padding: 7px 10px;
    font-size: 17px
  }

  .premium-score-item .inline-scorecard {
    padding: 0 10px 15px
  }

  .inline-score-summary {
    grid-template-columns: repeat(3, 1fr)
  }

  .stats-grid,
  .weather-grid,
  .course-hole-grid {
    grid-template-columns: 1fr;
  }

  .scoreboard-classes .leaderboard-sort-control {
    margin-left: 0;
    flex: 0 0 auto;
  }
}

@media(max-width:520px) {
  .scoreboard-statusbar {
    padding: 10px 11px;
    border-radius: 15px
  }

  .statusbar-copy {
    gap: 8px
  }

  .scoreboard-summary {
    padding: 6px;
    border-radius: 11px;
  }

  .compact-hero {
    padding: 6px;
  }

  .summary-hero {
    gap: 4px;
  }

  .summary-live-pill {
    padding: 2px 6px;
    gap: 4px;
  }

  .summary-hero h2 {
    font-size: clamp(21px, 7vw, 24px);
  }

  .summary-subtitle {
    font-size: 10px;
  }

  .tournament-center-nav .view-pill {
    padding-inline: 10px;
    min-height: 32px;
  }

  .tournament-center-nav .view-inline-meta {
    display: none;
  }

  .summary-updated strong {
    font-size: 11px;
  }

  .live-leaderboard {
    padding: 4px;
    border-radius: 19px
  }

  .premium-score-item {
    margin: 5px 2px;
    border-radius: 15px
  }

  .premium-board-head,
  .premium-score-row {
    grid-template-columns: 61px minmax(0, 1fr) 58px;
    gap: 6px
  }

  .premium-board-head {
    padding-left: 8px;
    padding-right: 8px
  }

  body.route-islandsmot50plus .premium-board-head,
  body.route-islandsmot50plus .premium-score-row {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    gap: 5px;
  }

  body.route-islandsmot50plus .premium-board-head {
    padding-left: 26px;
    padding-right: 8px;
  }

  body.route-islandsmot50plus .premium-score-row {
    min-height: 72px;
    padding: 9px 7px;
  }

  .premium-position {
    grid-template-columns: 30px
  }

  .premium-position .rank-avatar {
    width: 28px;
    height: 28px;
    font-size: 10px
  }

  .premium-position .rank-order {
    font-size: 9px
  }

  .premium-position .movement-badge {
    font-size: 8px;
    min-width: 28px;
    padding: 3px 4px
  }

  .premium-avatar {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 11px;
    font-size: 10px
  }

  .premium-player-copy>strong {
    font-size: 14px
  }

  .premium-player-copy>small {
    max-width: 190px
  }

  .score-chevron {
    font-size: 16px
  }

  .score-pill {
    min-width: 52px;
    min-height: 36px;
    padding: 6px 8px;
    border-radius: 10px 10px 10px 4px;
    font-size: 16px
  }

  .inline-score-summary {
    grid-template-columns: 1fr
  }
}

/* Homepage Redesign — RC */
body.home {
  background: radial-gradient(900px 600px at 88% -8%, rgba(40, 170, 112, .11), transparent 64%), linear-gradient(180deg, #05080e 0%, #070b12 58%, #05080d 100%);
}

.home-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  background: rgba(7, 11, 16, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.home-intro-golfball {
  position: fixed;
  top: 24%;
  left: -64px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 0 38%, #eef4fb 64%, #d2dbe5 100%);
  box-shadow: 0 12px 22px rgba(0, 0, 0, .42), inset -2px -2px 4px rgba(0, 0, 0, .12), inset 2px 2px 4px rgba(255, 255, 255, .66);
  pointer-events: none;
  z-index: 120;
  opacity: 0;
  animation: homeGolfballFlyover 2.4s cubic-bezier(.24, .86, .26, 1) .2s 1 both;
}

.home-intro-golfer {
  position: fixed;
  top: calc(24% + 15px);
  left: -108px;
  width: 52px;
  height: 56px;
  pointer-events: none;
  z-index: 119;
  opacity: 0;
  animation: homeGolferChase 2.4s cubic-bezier(.24, .86, .26, 1) .38s 1 both;
}

.home-intro-golfer .head {
  position: absolute;
  top: 4px;
  left: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d7e6f3;
}

.home-intro-golfer .torso {
  position: absolute;
  top: 14px;
  left: 18px;
  width: 16px;
  height: 20px;
  border-radius: 8px 8px 6px 6px;
  background: linear-gradient(180deg, #7bd2ff, #4d9cc8 62%, #3b7ba2);
  transform-origin: top center;
  animation: homeGolferStrideTorso .36s ease-in-out infinite alternate;
}

.home-intro-golfer .leg {
  position: absolute;
  top: 32px;
  width: 6px;
  height: 18px;
  border-radius: 4px;
  background: #9ab6cf;
  transform-origin: top center;
}

.home-intro-golfer .leg.left {
  left: 20px;
  animation: homeGolferStrideLeft .36s ease-in-out infinite alternate;
}

.home-intro-golfer .leg.right {
  left: 28px;
  animation: homeGolferStrideRight .36s ease-in-out infinite alternate;
}

.home-intro-golfer .bag {
  position: absolute;
  top: 18px;
  left: 8px;
  width: 12px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #2d3f57, #1f2d3f);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15);
}

.player-initials.has-image {
  background: #13283d;
}

.home-intro-golfer .club {
  position: absolute;
  top: 6px;
  left: 9px;
  width: 2px;
  height: 18px;
  border-radius: 2px;
  background: #a9bccc;
  transform: rotate(-15deg);
  box-shadow: 4px -2px 0 #a9bccc;
}

@keyframes homeGolfballFlyover {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) scale(.82) rotate(0deg);
  }

  12% {
    opacity: .96;
    transform: translateX(18vw) translateY(3px) scale(1) rotate(130deg);
  }

  48% {
    opacity: .94;
    transform: translateX(57vw) translateY(-9px) scale(1.02) rotate(390deg);
  }

  78% {
    opacity: .9;
    transform: translateX(88vw) translateY(6px) scale(.98) rotate(650deg);
  }

  100% {
    opacity: 0;
    transform: translateX(105vw) translateY(-2px) scale(.9) rotate(760deg);
  }
}

@keyframes homeGolferChase {
  0% {
    opacity: 0;
    transform: translateX(0) translateY(0) scale(.92);
  }

  12% {
    opacity: .95;
    transform: translateX(16vw) translateY(2px) scale(1);
  }

  48% {
    opacity: .95;
    transform: translateX(53vw) translateY(-7px) scale(1.01);
  }

  78% {
    opacity: .9;
    transform: translateX(85vw) translateY(5px) scale(.99);
  }

  100% {
    opacity: 0;
    transform: translateX(102vw) translateY(-2px) scale(.95);
  }
}

@keyframes homeGolferStrideLeft {
  from { transform: rotate(14deg); }
  to { transform: rotate(-10deg); }
}

@keyframes homeGolferStrideRight {
  from { transform: rotate(-10deg); }
  to { transform: rotate(14deg); }
}

@keyframes homeGolferStrideTorso {
  from { transform: rotate(-3deg); }
  to { transform: rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .home-intro-golfball,
  .home-intro-golfer {
    display: none;
    animation: none;
  }
}

.home-nav {
  width: min(1200px, calc(100% - 46px));
  margin: 0 auto;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.home-brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 15px;
  background: linear-gradient(145deg, #e7c372, #a87825);
  color: #07101a;
}

.home-brand-word {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .13em;
  color: #f2f7fc;
}

.home-links {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.home-links a {
  color: #adc0d2;
  font-size: 13px;
  font-weight: 650;
  transition: color .22s ease;
}

.home-links a:hover {
  color: #f5f9fd;
}

.home-nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .03);
  color: #dce6ef;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, color .22s ease;
}

.home-icon-btn:hover {
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .14);
  color: #fff;
}

.home-menu-btn {
  display: none;
}

.home-shell {
  width: min(1200px, calc(100% - 46px));
  margin: 0 auto;
  padding: 14px 0 44px;
  display: grid;
  gap: 12px;
}

.home-section {
  margin: 0;
}

.home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}

.home-section-head h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: clamp(20px, 2.3vw, 29px);
  letter-spacing: -.02em;
}

.home-live-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff5f6e;
  box-shadow: 0 0 0 1px rgba(255, 95, 110, .35), 0 0 14px rgba(255, 95, 110, .3);
  flex: 0 0 auto;
}

.home-eyebrow {
  margin: 0 0 7px;
  color: #74ba94;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-hero {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 16px;
  background: linear-gradient(140deg, rgba(14, 24, 35, .96), rgba(8, 12, 18, .98));
}

.home-hero-main {
  min-width: 0;
}

.home-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7.4vw, 82px);
  line-height: .92;
  letter-spacing: -.05em;
}

.home-hero-copy {
  margin: 8px 0 0;
  max-width: 720px;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.28;
  color: #c1d1de;
}

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

.home-hero-preview-card {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(28, 31, 38, .95), rgba(19, 22, 28, .96));
  box-shadow: 0 16px 34px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .05);
  padding: 12px;
  display: grid;
  gap: 8px;
}

.home-featured-preview {
  min-width: 0;
}

.home-featured-preview .home-hero-preview-card {
  margin-top: 2px;
}

.home-hero-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.home-hero-preview-head strong {
  color: #d7e3ed;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: .01em;
}

.home-preview-class {
  max-width: 58%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
  color: #9eb3c7;
  font-size: 12px;
}

.home-preview-columns {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  gap: 8px;
  padding: 0 8px;
  color: #7f96ab;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-hero-preview-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 5px;
}

.home-hero-preview-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 8px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .03);
  animation: heroPreviewRowIn .2s ease-out both;
}

.home-hero-preview-list li:nth-child(2) {
  animation-delay: .04s;
}

.home-hero-preview-list li:nth-child(3) {
  animation-delay: .08s;
}

.home-hero-preview-list li:first-child {
  border: 1px solid rgba(243, 203, 103, .33);
  background: linear-gradient(100deg, rgba(243, 203, 103, .16), rgba(243, 203, 103, .04) 45%, rgba(255, 255, 255, .03) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 240, 196, .24), 0 0 16px rgba(241, 193, 87, .15);
}

.home-preview-pos {
  color: #e7eef6;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.home-preview-name {
  color: #f4f8fd;
  font-size: 15px;
  font-weight: 680;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-preview-score {
  color: #e9f3ff;
  font-size: 16px;
  font-weight: 860;
  letter-spacing: -.01em;
}

.home-hero-preview-list li:first-child .home-preview-score {
  color: #ffe7ad;
}

@keyframes heroPreviewRowIn {
  0% {
    opacity: .5;
    transform: translateY(4px) scale(.995);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-preview-list li {
    animation: none;
  }
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 14px;
  font-weight: 760;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.home-btn:hover {
  transform: translateY(-1px);
}

.home-btn:focus-visible {
  outline: none;
  border-color: rgba(147, 210, 255, .62);
  box-shadow: 0 0 0 3px rgba(82, 160, 229, .26);
}

.home-btn-primary {
  border-color: rgba(73, 194, 131, .28);
  background: linear-gradient(135deg, rgba(62, 184, 119, .94), rgba(42, 154, 99, .94));
  color: #05110b;
}

.home-btn-ghost {
  border-width: 2px;
  border-color: rgba(73, 194, 131, .34);
  background: rgba(255, 255, 255, .02);
  color: #e9f1f9;
}

.home-btn-ghost:hover {
  border-color: rgba(73, 194, 131, .52);
  background: rgba(255, 255, 255, .05);
}

.home-featured-open-btn {
  min-height: 46px;
  padding: 0 17px;
}

.home-featured {
  display: grid;
}

.home-featured-card,
.home-tournament-card,
.home-panel,
.home-benefit-card {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(15, 24, 35, .94), rgba(8, 13, 20, .98));
}

.home-featured-card {
  padding: 14px;
  display: grid;
  gap: 9px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-featured-card.is-open {
  border-color: rgba(73, 194, 131, .42);
  box-shadow: 0 0 0 1px rgba(73, 194, 131, .16), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.home-featured-card:hover,
.home-featured-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(128, 195, 255, .34);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .28), 0 0 0 1px rgba(121, 184, 241, .14);
}

.home-featured-card:focus-visible {
  outline: none;
}

.home-featured-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.home-featured-card h3,
.home-tournament-card h3,
.home-panel h3,
.home-benefit-card h4 {
  margin: 0;
  letter-spacing: -.02em;
}

.home-featured-card h3 {
  font-size: clamp(24px, 3.1vw, 35px);
}

.home-featured-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-featured-title-row .home-btn {
  flex-shrink: 0;
}

.home-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .11em;

.scorecard-total-score {
  font-weight: 800;
  color: #f0f6fc;
}
  text-transform: uppercase;
}

.home-status.live {
  color: #a3efbf;
  background: rgba(68, 214, 118, .12);
  border: 1px solid rgba(78, 212, 123, .3);
}

.home-status.upcoming {
  color: #ead592;
  background: rgba(231, 186, 86, .11);
  border: 1px solid rgba(231, 186, 86, .29);
}

.home-status.finished {
  color: #c4d0dc;
  background: rgba(151, 172, 194, .1);
  border: 1px solid rgba(151, 172, 194, .3);
}

.home-featured-meta,
.home-tournament-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 3px;
}

.home-featured-meta li,
.home-tournament-meta li,
.home-panel p,
.home-benefit-card p {
  color: #8ca1b4;
  font-size: 13px;
  line-height: 1.35;
}

.home-featured-meta-inline {
  margin: 0;
  color: #8ca1b4;
  font-size: 13px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-featured-live-meta {
  margin: -1px 0 0;
  color: #7c91a6;
  font-size: 12px;
  line-height: 1.35;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}

.home-featured-live-meta span {
  position: relative;
}

.home-featured-live-meta span+span::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(136, 158, 179, .66);
  display: inline-block;
  margin-right: 10px;
  transform: translateY(-1px);
}

.home-card-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.home-tournament-card {
  padding: 14px;
  display: grid;
  gap: 10px;
  min-height: 174px;
  align-content: space-between;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.home-tournament-card:hover,
.home-tournament-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(121, 184, 241, .28);
  box-shadow: 0 10px 20px rgba(0, 0, 0, .24);
}

.home-tournament-card:focus-visible {
  outline: none;
}

.home-tournament-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.home-tournament-card h3 {
  font-size: clamp(19px, 2.1vw, 24px);
}

.home-tournament-title--hvaleyrar {
  color: #b7a15d;
}

.home-panel {
  padding: 14px;
  display: grid;
  gap: 6px;
}

.home-benefit-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.home-benefit-card {
  padding: 12px;
  display: grid;
  gap: 7px;
}

.home-benefit-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1px solid rgba(83, 204, 138, .33);
  color: #95e6b5;
  display: inline-flex;
  position: relative;
}

.home-benefit-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 3px;
  border: 1px solid rgba(149, 230, 181, .9);
}

.home-benefit-icon-live::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #82e3a8;
  top: 7px;
  left: 7px;
}

.home-benefit-icon-times::before {
  inset: 4px 3px 4px 3px;
  border-radius: 999px;
}

.home-benefit-icon-times::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 9px;
  background: rgba(149, 230, 181, .95);
  top: 5px;
  left: 10px;
  transform-origin: bottom center;
  transform: rotate(26deg);
}

.home-benefit-icon-card::before {
  inset: 4px;
  border-radius: 3px;
}

.home-benefit-icon-card::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 8px;
  height: 1px;
  background: rgba(149, 230, 181, .95);
}

.home-benefit-card h4 {
  font-size: 17px;
}

.home-panel p,
.home-benefit-card p,
.home-tournament-meta li,
.home-featured-meta-inline {
  color: #859aac;
  line-height: 1.4;
}

.home-footer {
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin-top: 8px;
}

.home-footer-inner {
  width: min(1200px, calc(100% - 46px));
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #8fa1b2;
  font-size: 13px;
}

.home-footer-inner a {
  color: #b8c7d5;
}

.home-footer-inner a:hover {
  color: #fff;
}

@media (min-width:768px) {
  .home-nav {
    min-height: 66px;
  }

  .home-shell {
    padding-top: 20px;
    gap: 14px;
  }

  .home-hero {
    padding: 20px;
  }

  .home-hero-preview-card {
    padding: 14px;
  }

  .home-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-benefit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width:980px) {
  .home-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(270px, .8fr);
    align-items: end;
    gap: 16px;
  }
}

@media (min-width:1280px) {
  .home-shell {
    gap: 16px;
  }

  .home-hero {
    padding: 22px;
  }

  .home-featured-card {
    gap: 10px;
  }

  .home-featured-head,
  .home-featured-card h3,
  .home-featured-meta,
  .home-featured-meta-inline {
    grid-column: 1;
  }

  .home-featured-preview {
    grid-column: 1;
  }
}

@media (max-width:767px) {
  .home-shell {
    padding-top: 12px;
    gap: 10px;
  }

  .home-hero {
    padding: 14px;
  }

  .home-featured-title-row {
    align-items: flex-start;
    gap: 10px;
  }

  .home-featured-open-btn {
    min-height: 44px;
  }

  .home-links {
    display: none;
  }

  .home-menu-btn {
    display: grid;
  }

  body.home-menu-open .home-links {
    display: grid;
    position: absolute;
    left: 23px;
    right: 23px;
    top: 59px;
    padding: 11px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(10, 16, 24, .98);
    gap: 10px;
  }

  body.home-menu-open .home-links a {
    padding: 6px 4px;
  }
}

/* Mobile Header Cleanup - Islandsmot 50+ */
body.route-islandsmot50plus .tournament-hub .section-heading {
  display: none;
}

body.route-islandsmot50plus .tournament-hub {
  margin-top: 8px;
  padding-top: 8px;
}

body.route-islandsmot50plus .tournament-hero {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 0, 0, .97), rgba(0, 0, 0, .9));
  border: 1px solid rgba(255, 255, 255, .12);
  overflow-x: clip;
  overflow-y: visible;
}

body.route-islandsmot50plus .tournament-hero::before {
  content: none;
}

body.route-islandsmot50plus #tournamentHero .scoreboard-summary,
body.route-islandsmot50plus #tournamentHero .compact-hero {
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.route-islandsmot50plus #tournamentHero .summary-hero {
  position: relative;
  isolation: isolate;
  align-items: start;
  gap: 10px 28px;
}

body.route-islandsmot50plus #tournamentHero .tournament-summary-card {
  margin-top: 14px;
  justify-self: end;
}

body.route-islandsmot50plus #tournamentHero .islandsmot-undri-link {
  display: none;
}

body.route-islandsmot50plus #tournamentHero .islandsmot-undri-link::before {
  content: none;
}

body.route-islandsmot50plus #tournamentHero .islandsmot-undri-link img {
  filter: none;
}

body.route-islandsmot50plus .scoreboard-live-header,
body.route-meistaramot-2026 .scoreboard-live-header {
  position: relative;
  padding: 16px 24px 20px;
  border-radius: 22px;
  border: 1px solid rgba(92, 152, 214, .18);
  background: linear-gradient(180deg, rgba(6, 14, 24, .96), rgba(5, 11, 19, .92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 8px 24px rgba(0, 0, 0, .22);
}

body.route-islandsmot50plus .scoreboard-live-header .class-tabs,
body.route-meistaramot-2026 .scoreboard-live-header .class-tabs {
  margin-top: 8px;
}

body.route-meistaramot-2026 .leaderboard-class-select-wrap {
  display: grid;
  gap: 6px;
  width: min(100%, 520px);
}

body.route-meistaramot-2026 .leaderboard-class-select-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(162, 184, 208, .9);
  font-weight: 800;
}

body.route-meistaramot-2026 .leaderboard-class-select {
  width: 100%;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(111, 170, 230, .34);
  background: linear-gradient(180deg, rgba(14, 32, 52, .94), rgba(10, 24, 40, .96));
  color: #e9f2fc;
  padding: 0 46px 0 14px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 8px 20px rgba(0, 0, 0, .22);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(173, 211, 246, .95) 50%), linear-gradient(135deg, rgba(173, 211, 246, .95) 50%, transparent 50%);
  background-position: calc(100% - 21px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

body.route-meistaramot-2026 .leaderboard-class-select:focus {
  outline: none;
  border-color: rgba(148, 202, 255, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 0 0 3px rgba(90, 165, 234, .22), 0 12px 24px rgba(0, 0, 0, .28);
}

body.route-islandsmot50plus .islandsmot-undri-corner-link,
body.route-meistaramot-2026 .islandsmot-undri-corner-link {
  position: absolute;
  right: 18px;
  top: 12px;
  width: 143px;
  z-index: 4;
  display: block;
  opacity: .96;
  filter: saturate(1.02) contrast(1.02);
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(10, 24, 40, .92), rgba(7, 16, 28, .92));
  border: 1px solid rgba(106, 186, 255, .26);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .05);
}

body.route-islandsmot50plus .islandsmot-undri-corner-link img,
body.route-meistaramot-2026 .islandsmot-undri-corner-link img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(84, 181, 255, .62));
}

body.route-islandsmot50plus .tournament-hero,
body.route-meistaramot-2026 .tournament-hero {
  align-items: start;
  padding-top: 12px;
}

body.route-islandsmot50plus .tournament-hero {
  min-height: 0;
  padding: 18px 20px 18px;
}

body.route-islandsmot50plus #tournamentHero .summary-hero-copy,
body.route-meistaramot-2026 #tournamentHero .summary-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 8px;
  padding-left: 12px;
}

body.route-islandsmot50plus #tournamentHero .summary-hero h2,
body.route-meistaramot-2026 #tournamentHero .summary-hero h2 {
  font-size: clamp(40px, 5.1vw, 60px);
  line-height: .94;
  letter-spacing: -.04em;
}

body.route-hvaleyrarbikarinn2026 #tournamentHero .summary-hero h2 {
  color: #b7a15d;
}

body.route-islandsmot50plus #tournamentHero .summary-subtitle,
body.route-meistaramot-2026 #tournamentHero .summary-subtitle {
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.24;
  margin-top: 2px;
}

body.route-islandsmot50plus #tournamentHero .summary-venue {
  font-size: clamp(13.3px, 1.19vw, 16.8px);
  font-weight: 700;
  color: #fff;
}

body.route-islandsmot50plus #tournamentHero .summary-meta {
  margin-top: 6px;
  color: rgba(222, 233, 244, .72);
  font-size: clamp(12px, 1.1vw, 14px);
}

body.route-islandsmot50plus #tournamentHero .summary-meta {
  margin-top: 6px;
  color: rgba(222, 233, 244, .72);
  font-size: clamp(12px, 1.1vw, 14px);
}

body.route-islandsmot50plus #tournamentHero .summary-dates,
body.route-meistaramot-2026 #tournamentHero .summary-dates {
  margin-top: 4px;
}

body.route-islandsmot50plus #tournamentHero .summary-live-pill {
  font-size: 9px;
  padding: 4px 10px;
}

body.route-islandsmot50plus #tournamentHero .summary-updated {
  border-left-color: rgba(255, 255, 255, .12);
}

body.route-islandsmot50plus #tournamentHero .summary-updated small {
  font-size: 9px;
}

body.route-islandsmot50plus #tournamentHero .summary-updated strong {
  font-size: 24px;
}

body.route-islandsmot50plus #tournamentHero .hero-status-slot,
body.route-meistaramot-2026 #tournamentHero .hero-status-slot {
  margin-top: 8px;
  max-width: min(100%, 700px);
}

body.route-islandsmot50plus #tournamentHero .weather-now-pill {
  min-height: 40px;
  padding: 0 14px;
  border-color: rgba(106, 190, 255, .34);
  background: linear-gradient(180deg, rgba(58, 140, 209, .24), rgba(34, 101, 168, .28));
  color: rgba(223, 241, 255, .92);
}

body.route-islandsmot50plus #tournamentHero .weather-now-pill:hover {
  border-color: rgba(138, 207, 255, .56);
  background: linear-gradient(180deg, rgba(65, 155, 229, .30), rgba(38, 114, 189, .34));
  color: #f4fbff;
}

body.route-islandsmot50plus .weather-now-dropdown {
  display: none;
}

body.route-islandsmot50plus .weather-now-dropdown.is-open {
  display: block;
}

body.route-islandsmot50plus .tournament-hero,
body.route-islandsmot50plus #tournamentHero .hero-status-slot,
body.route-islandsmot50plus #tournamentHero .scoreboard-statusbar,
body.route-islandsmot50plus #tournamentHero .statusbar-weather-control {
  position: relative;
}

body.route-islandsmot50plus #tournamentHero .statusbar-weather-control .weather-now-dropdown {
  z-index: 3200;
}

body.route-esga55 .tournament-hero {
  align-items: start;
  min-height: 0;
  padding: 18px 20px 18px;
}

body.route-esga55 #tournamentHero .scoreboard-summary,
body.route-esga55 #tournamentHero .compact-hero {
  overflow: visible;
}

body.route-esga55 #tournamentHero .summary-hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 8px;
  padding-left: 12px;
}

body.route-esga55 #tournamentHero .summary-hero h2 {
  font-size: clamp(40px, 5.1vw, 60px);
  line-height: .94;
  letter-spacing: -.04em;
}

body.route-esga55 #tournamentHero .summary-subtitle {
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.24;
  margin-top: 2px;
}

body.route-esga55 #tournamentHero .summary-venue {
  font-size: clamp(13.3px, 1.19vw, 16.8px);
  font-weight: 700;
  color: #fff;
}

body.route-esga55 #tournamentHero .summary-meta {
  margin-top: 6px;
  color: rgba(222, 233, 244, .72);
  font-size: clamp(12px, 1.1vw, 14px);
}

body.route-esga55 #tournamentHero .hero-status-slot {
  margin-top: 8px;
  max-width: min(100%, 700px);
}

body.route-esga55 #tournamentHero .weather-now-pill {
  min-height: 40px;
  padding: 0 14px;
  border-color: rgba(106, 190, 255, .34);
  background: linear-gradient(180deg, rgba(58, 140, 209, .24), rgba(34, 101, 168, .28));
  color: rgba(223, 241, 255, .92);
}

body.route-esga55 #tournamentHero .weather-now-pill:hover {
  border-color: rgba(138, 207, 255, .56);
  background: linear-gradient(180deg, rgba(65, 155, 229, .30), rgba(38, 114, 189, .34));
  color: #f4fbff;
}

body.route-esga55 .tournament-hero,
body.route-esga55 #tournamentHero .hero-status-slot,
body.route-esga55 #tournamentHero .scoreboard-statusbar,
body.route-esga55 #tournamentHero .statusbar-weather-control {
  position: relative;
}

body.route-esga55 .tournament-hero {
  z-index: 120;
  overflow: visible;
}

body.route-esga55 #tournamentHero .hero-status-slot,
body.route-esga55 #tournamentHero .scoreboard-statusbar,
body.route-esga55 #tournamentHero .statusbar-weather-control {
  z-index: 510;
}

body.route-esga55 #tournamentHero .statusbar-weather-control .weather-now-dropdown {
  z-index: 3200;
}

body.route-esga55 .team-members-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 6px;
}

body.route-esga55 .team-members-item > .team-members-row {
  grid-column: 2;
}

body.route-esga55 .team-members-item > .inline-scorecard {
  grid-column: 1 / -1;
}

body.route-esga55 .team-members-board.has-favorites .team-members-head,
body.route-esga55 .team-members-board.has-favorites .team-members-row {
  padding-right: 12px;
}

body.route-esga55 .favorite-toggle--member {
  position: static;
  transform: none;
  z-index: 1;
  width: 19px;
  height: 19px;
  margin-left: 10px;
  font-size: 11px;
}

body.route-esga55 .favorite-toggle--member:hover {
  transform: scale(1.04);
}

@media (max-width: 820px) {
  body.route-esga55 .tournament-hero {
    min-height: 0;
    padding: 8px 10px 10px;
    gap: 4px;
    border-radius: 16px;
  }

  body.route-esga55 #tournamentHero .summary-hero h2 {
    font-size: clamp(23px, 7.8vw, 28px);
    line-height: 1;
    margin: 0;
  }

  body.route-esga55 #tournamentHero .summary-subtitle {
    margin: 2px 0 0;
    font-size: 11px;
    line-height: 1.32;
  }

  body.route-esga55 #tournamentHero .summary-meta {
    font-size: 10px;
    line-height: 1.25;
    margin-top: 4px;
  }

  body.route-esga55 #tournamentHero .hero-status-slot {
    margin-top: 8px;
    width: 100%;
    max-width: 100%;
  }

  body.route-esga55 .scoreboard-statusbar .compact-btn,
  body.route-esga55 .scoreboard-statusbar .weather-now-pill {
    min-height: 30px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 11px;
  }

  body.route-esga55 .scoreboard-statusbar .weather-now-pill .weather-wind-logo {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background-size: 16px 16px;
  }

  body.route-esga55 .team-members-item .inline-scorecard {
    padding: 0 6px 8px;
  }

  body.route-esga55 .favorite-toggle--member {
    width: 18px;
    height: 18px;
    margin-left: 6px;
    font-size: 10px;
  }

  body.route-esga55 .scorecard-segments {
    gap: 8px;
  }

  body.route-esga55 .scorecard-scroll {
    overflow-x: visible;
    padding-bottom: 0;
  }

  body.route-esga55 .scorecard-grid.scorecard-grid--nine {
    width: 100%;
    min-width: 0;
    grid-template-columns: 44px repeat(10, minmax(0, 1fr));
    border-radius: 12px;
  }

  body.route-esga55 .scorecard-grid.scorecard-grid--nine > div {
    min-height: 34px;
    font-size: 10px;
    padding: 0 1px;
  }

  body.route-esga55 .scorecard-label {
    font-size: 9px !important;
    letter-spacing: .06em;
  }

  body.route-esga55 .scorecard-total-head {
    font-size: 9px;
    letter-spacing: .04em;
  }

  body.route-esga55 .scorecard-total-value,
  body.route-esga55 .scorecard-total-score {
    font-size: 11px;
    font-weight: 780;
  }

  body.route-esga55 .hole-score {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
}

@media (max-width: 980px) {
  body.route-islandsmot50plus #tournamentHero .summary-hero,
  body.route-meistaramot-2026 #tournamentHero .summary-hero {
    gap: 12px 24px;
  }

  body.route-islandsmot50plus #tournamentHero .tournament-summary-card {
    width: clamp(170px, 26vw, 196px);
    min-height: 146px;
    padding: 16px 16px 14px;
  }

  body.route-islandsmot50plus #tournamentHero .tournament-summary-card-value {
    font-size: clamp(34px, 5vw, 42px);
  }
}

body.route-islandsmot50plus #tournamentHero .leaderboard-hero-statusbar {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

body.route-islandsmot50plus #tournamentHero .statusbar-actions {
  margin-left: 0;
}

body.route-islandsmot50plus .statusbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  flex-wrap: wrap;
  min-width: 0;
}

body.route-islandsmot50plus .scoreboard-statusbar {
  width: 100%;
  max-width: 100%;
  overflow: visible;
  justify-content: flex-end;
}

body.route-islandsmot50plus .scoreboard-live-header {
  margin-top: 14px;
  padding-inline: 20px;
}

body.route-islandsmot50plus .scoreboard-live-header .tournament-center-nav {
  gap: 12px;
}

body.route-islandsmot50plus .scoreboard-live-header .tournament-center-nav .view-pill {
  border-color: rgba(255, 255, 255, .14);
  background: linear-gradient(180deg, rgba(19, 36, 57, .94), rgba(14, 28, 46, .94));
  color: #d2deed;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 10px 22px rgba(4, 12, 22, .28);
}

body.route-islandsmot50plus .scoreboard-live-header .tournament-center-nav .view-pill:hover {
  border-color: rgba(255, 255, 255, .22);
  background: linear-gradient(180deg, rgba(24, 46, 71, .96), rgba(17, 33, 54, .96));
  color: #eef5ff;
}

body.route-islandsmot50plus .scoreboard-live-header .tournament-center-nav .view-pill.active {
  border-color: rgba(124, 244, 170, .74);
  background: linear-gradient(180deg, rgba(72, 182, 120, .66), rgba(41, 126, 77, .62));
  color: #f8fffb;
}

.scoreboard-classes .class-pill {
  min-height: 53px;
  padding: 11px 14px 8px;
  border-radius: 16px;
  font-size: 14px;
}

body.route-islandsmot50plus .leaderboard-panel {
  padding: 4px;
  overflow-x: clip;
  overflow-y: visible;
}

body.route-islandsmot50plus .premium-board-head {
  margin: 0 14px;
  padding: 0 44px 4px 12px;
  font-size: 11px;
}

body.route-islandsmot50plus .premium-score-item {
  margin: 2px 6px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 6px;
  border-radius: 16px;
  border-color: rgba(128, 165, 198, .24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 14px 28px rgba(0, 0, 0, .3);
}

body.route-islandsmot50plus .premium-score-item:nth-child(odd) {
  background: linear-gradient(180deg, #071120, #050d18);
}

body.route-islandsmot50plus .premium-score-item:nth-child(even) {
  background: linear-gradient(180deg, #11263d, #0b1a2b);
}

body.route-islandsmot50plus .premium-score-row {
  min-height: 60px;
  grid-column: 2;
  padding: 6px 12px;
}

body.route-islandsmot50plus .premium-score-item .inline-scorecard {
  grid-column: 1 / -1;
}

body.route-islandsmot50plus .premium-score-item > .favorite-toggle {
  position: static;
  transform: none;
  width: 19px;
  height: 19px;
  margin-left: 8px;
  font-size: 11px;
}

body.route-islandsmot50plus .premium-score-item > .favorite-toggle:hover {
  transform: scale(1.04);
}

body.route-islandsmot50plus .premium-position {
  grid-template-columns: 42px;
  gap: 4px;
}

body.route-islandsmot50plus .premium-position .rank-avatar {
  width: 34px;
  height: 34px;
  font-size: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), inset 0 -1px 0 rgba(0, 0, 0, .26), 0 10px 20px rgba(0, 0, 0, .28);
}

body.route-islandsmot50plus .premium-position .rank-order {
  font-size: 14px;
}

body.route-islandsmot50plus .premium-position .movement-badge {
  min-width: 30px;
  padding: 2px 5px;
  font-size: 8px;
}

body.route-islandsmot50plus .premium-player {
  gap: 10px;
}

body.route-islandsmot50plus .premium-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  font-size: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), inset 0 -1px 0 rgba(0, 0, 0, .30), 0 10px 22px rgba(0, 0, 0, .30);
}

body.route-islandsmot50plus .premium-score-item:not(.podium-1):not(.podium-2):not(.podium-3) .premium-position .rank-avatar,
body.route-islandsmot50plus .premium-score-item:not(.podium-1):not(.podium-2):not(.podium-3) .premium-avatar {
  border-color: rgba(144, 177, 208, .46);
  background: linear-gradient(155deg, #355474, #1f3246);
  color: #e7f2ff;
}

body.route-islandsmot50plus .premium-player-copy .player-name-row strong {
  font-size: 17px;
}

body.route-islandsmot50plus .premium-player-copy > small {
  margin-top: 2px;
  font-size: 11px;
}

body.route-islandsmot50plus .premium-today > span,
body.route-islandsmot50plus .premium-thru > span,
body.route-islandsmot50plus .premium-total > span {
  margin-bottom: 2px;
  font-size: 8px;
}

body.route-islandsmot50plus .score-pill {
  min-width: 62px;
  min-height: 38px;
  padding: 6px 11px;
  border-radius: 14px;
  font-size: 15px;
}

body.route-meistaramot-2026 .leaderboard-panel {
  padding: 4px;
}

body.route-meistaramot-2026 .premium-board-head {
  margin: 0 14px;
  padding: 0 44px 4px 12px;
  font-size: 11px;
}

body.route-meistaramot-2026 .premium-score-item {
  margin: 3px 6px;
  border-radius: 16px;
}

body.route-meistaramot-2026 .premium-score-row {
  min-height: 66px;
  padding: 8px 44px 8px 12px;
}

body.route-meistaramot-2026 .premium-position {
  grid-template-columns: 42px;
  gap: 4px;
}

body.route-meistaramot-2026 .premium-position .rank-avatar {
  width: 36px;
  height: 36px;
  font-size: 12px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), inset 0 -1px 0 rgba(0, 0, 0, .26), 0 10px 20px rgba(0, 0, 0, .28);
}

body.route-meistaramot-2026 .premium-position .rank-order {
  font-size: 14px;
}

body.route-meistaramot-2026 .premium-position .movement-badge {
  min-width: 30px;
  padding: 2px 5px;
  font-size: 8px;
}

body.route-meistaramot-2026 .premium-player {
  gap: 10px;
}

body.route-meistaramot-2026 .premium-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  font-size: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), inset 0 -1px 0 rgba(0, 0, 0, .30), 0 10px 22px rgba(0, 0, 0, .30);
}

body.route-meistaramot-2026 .premium-player-copy > strong {
  font-size: 16px;
}

body.route-meistaramot-2026 .premium-player-copy > small {
  margin-top: 2px;
  font-size: 11px;
}

body.route-meistaramot-2026 .premium-today > span,
body.route-meistaramot-2026 .premium-thru > span,
body.route-meistaramot-2026 .premium-total > span {
  margin-bottom: 2px;
  font-size: 8px;
}

body.route-meistaramot-2026 .score-pill {
  min-width: 66px;
  min-height: 42px;
  padding: 7px 12px;
  border-radius: 14px;
  font-size: 16px;
}

@media (max-width: 700px) {
  body.route-islandsmot50plus .topbar {
    min-height: 50px;
    padding: 7px 11px;
  }

  body.route-islandsmot50plus .brand {
    gap: 8px;
    font-size: 12px;
    letter-spacing: .1em;
  }

  body.route-islandsmot50plus .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  body.route-islandsmot50plus nav {
    gap: 8px;
  }

  body.route-islandsmot50plus nav a {
    display: none;
  }

  body.route-islandsmot50plus nav .ghost-btn {
    min-height: 32px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 11px;
  }

  body.route-islandsmot50plus .shell.tournament-shell {
    width: calc(100% - 14px);
    padding-top: 4px;
    padding-bottom: 34px;
  }

  body.route-islandsmot50plus .tournament-hero {
    min-height: 0;
    padding: 8px 10px 10px;
    gap: 4px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .97), rgba(0, 0, 0, .9));
    border: 1px solid rgba(255, 255, 255, .12);
  }

  body.route-islandsmot50plus .tournament-hero::before {
    content: none;
  }

  body.route-islandsmot50plus .tournament-hero:after {
    width: 104px;
    height: 104px;
    right: 12px;
    top: 12px;
    opacity: .14;
    box-shadow: 0 0 0 18px rgba(255, 255, 255, .011), 0 0 0 34px rgba(255, 255, 255, .006);
  }

  body.route-islandsmot50plus #tournamentHero .scoreboard-summary,
  body.route-islandsmot50plus #tournamentHero .compact-hero {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.route-islandsmot50plus #tournamentHero .summary-hero {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "live updated"
      "title title"
      "venue venue"
      "dates dates"
      "card card";
    align-items: center;
    gap: 2px 22px;
  }

  body.route-islandsmot50plus .statusbar-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    width: 100%;
  }

  body.route-islandsmot50plus #tournamentHero .summary-hero-copy {
    display: contents;
  }

  body.route-islandsmot50plus #tournamentHero .summary-hero {
    padding-left: 10px;
    padding-top: 10px;
  }

  body.route-islandsmot50plus #tournamentHero .tournament-summary-card {
    grid-area: card;
    justify-self: center;
    width: min(176px, calc(100% - 72px));
    min-height: 112px;
    margin-top: 8px;
    padding: 12px 14px 11px;
    text-align: center;
    align-items: center;
    gap: 5px;
  }

  body.route-islandsmot50plus #tournamentHero .tournament-summary-card-label {
    font-size: 9px;
  }

  body.route-islandsmot50plus #tournamentHero .tournament-summary-card-value {
    font-size: 30px;
  }

  body.route-islandsmot50plus #tournamentHero .tournament-summary-card-secondary {
    font-size: 12px;
  }

  body.route-islandsmot50plus #tournamentHero .tournament-summary-card-meta {
    font-size: 10px;
  }

  body.route-islandsmot50plus #tournamentHero .islandsmot-undri-link {
    display: none;
  }

  body.route-islandsmot50plus #tournamentHero .islandsmot-undri-link::before {
    content: none;
  }

  body.route-islandsmot50plus #tournamentHero .islandsmot-undri-link img {
    filter: none;
  }

  body.route-islandsmot50plus .islandsmot-undri-corner-link,
  body.route-meistaramot-2026 .islandsmot-undri-corner-link {
    display: none;
  }

  body.route-islandsmot50plus #tournamentHero .summary-live-pill {
    grid-area: live;
    margin: 0;
    padding: 2px 5px;
    font-size: 7px;
    align-self: center;
  }

  body.route-islandsmot50plus #tournamentHero .summary-hero h2,
  body.route-meistaramot-2026 #tournamentHero .summary-hero h2 {
    grid-area: title;
    font-size: clamp(23px, 7.8vw, 28px);
    line-height: 1;
    margin: 0;
  }

  body.route-islandsmot50plus #tournamentHero .summary-venue,
  body.route-meistaramot-2026 #tournamentHero .summary-venue {
    grid-area: venue;
  }

  body.route-islandsmot50plus #tournamentHero .summary-venue {
    font-size: 8px;
    font-weight: 700;
    color: #fff;
  }

  body.route-islandsmot50plus #tournamentHero .summary-dates,
  body.route-meistaramot-2026 #tournamentHero .summary-dates {
    grid-area: dates;
  }

  body.route-islandsmot50plus #tournamentHero .summary-subtitle,
  body.route-meistaramot-2026 #tournamentHero .summary-subtitle {
    margin: 2px 0 0;
    font-size: 11px;
    line-height: 1.32;
  }

  body.route-islandsmot50plus #tournamentHero .summary-meta {
    font-size: 10px;
    line-height: 1.25;
    margin-top: 4px;
  }

  body.route-islandsmot50plus #tournamentHero .summary-dates,
  body.route-meistaramot-2026 #tournamentHero .summary-dates {
    margin-top: 3px;
  }

  body.route-islandsmot50plus #tournamentHero .summary-updated {
    grid-area: updated;
    justify-self: end;
    text-align: right;
    border: 0;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
  }

  body.route-islandsmot50plus #tournamentHero .summary-updated small {
    display: inline;
    font-size: 8px;
    letter-spacing: .08em;
  }

  body.route-islandsmot50plus #tournamentHero .summary-updated strong {
    display: inline;
    font-size: 11px;
    margin: 0;
  }

  body.route-islandsmot50plus #tournamentHero .hero-status-slot,
  body.route-meistaramot-2026 #tournamentHero .hero-status-slot {
    margin-top: 8px;
    width: 100%;
    max-width: 100%;
  }

  body.route-islandsmot50plus #tournamentHero .weather-now-pill {
    min-height: 30px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 11px;
    gap: 5px;
    opacity: .93;
  }

  body.route-islandsmot50plus #tournamentHero .leaderboard-hero-statusbar,
  body.route-meistaramot-2026 #tournamentHero .leaderboard-hero-statusbar {
    width: 100%;
  }

  body.route-islandsmot50plus .scoreboard-live-header {
    position: static;
    margin-top: 8px;
    padding: 0 16px;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  body.route-islandsmot50plus .scoreboard-live-header .tournament-center-nav {
    margin: 0 0 2px;
    padding-top: 0;
    gap: 8px;
  }

  body.route-islandsmot50plus .scoreboard-classes {
    margin-top: 6px;
  }

  body.route-islandsmot50plus .scoreboard-live-header .tournament-center-nav .view-pill {
    min-height: 28px;
    padding: 0 9px;
    border-radius: 9px;
    font-size: 10px;
  }

  body.route-islandsmot50plus .scoreboard-statusbar {
    padding: 4px 7px;
    border-radius: 10px;
    margin-bottom: 3px;
    gap: 7px;
  }

  body.route-islandsmot50plus #leaderboardUpdateStatus {
    flex: 1 1 100%;
    min-width: 0;
  }

  body.route-islandsmot50plus .statusbar-copy {
    gap: 5px;
  }

  body.route-islandsmot50plus .live-pill {
    padding: 2px 5px;
    font-size: 8px;
    letter-spacing: .1em;
    opacity: .72;
  }

  body.route-islandsmot50plus #leaderboardUpdateStatus {
    font-size: 10px;
    opacity: .9;
  }

  body.route-islandsmot50plus .scoreboard-statusbar .compact-btn {
    min-height: 30px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 11px;
  }

  body.route-islandsmot50plus .scoreboard-statusbar .weather-now-pill {
    min-height: 30px;
    padding: 0 8px;
    border-radius: 8px;
    font-size: 11px;
    gap: 5px;
  }

  body.route-islandsmot50plus .statusbar-weather-control {
    margin-left: auto;
  }

  body.route-islandsmot50plus .scoreboard-statusbar .weather-now-pill .weather-wind-logo {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background-size: 16px 16px;
  }

  body.route-islandsmot50plus .scoreboard-classes {
    margin-top: 0;
    margin-bottom: 4px;
    padding: 0 0 2px;
    overflow: visible;
    flex-wrap: wrap;
  }

  .scoreboard-classes .class-pill {
    flex: 0 1 auto;
    min-height: 43px;
    padding: 9px 12px;
    border-radius: 13px;
    font-size: 13px;
  }

  body.route-islandsmot50plus .scoreboard-classes .leaderboard-inline-meta {
    display: none;
  }

  body.route-islandsmot50plus .premium-score-item {
    margin: 2px 4px;
  }

  body.route-islandsmot50plus .premium-board-head {
    margin: 0 10px;
    padding: 0 8px 4px 30px;
  }

  body.route-islandsmot50plus .premium-board-head,
  body.route-islandsmot50plus .premium-score-row {
    grid-template-columns: 68px minmax(0, 1fr) 74px;
    gap: 8px;
  }

  body.route-islandsmot50plus .premium-score-row {
    min-height: 74px;
    padding: 9px 8px;
  }

  body.route-islandsmot50plus .premium-score-item {
    column-gap: 6px;
  }

  body.route-islandsmot50plus .premium-score-item > .favorite-toggle {
    width: 18px;
    height: 18px;
    margin-left: 6px;
    font-size: 10px;
  }

  body.route-islandsmot50plus .premium-position {
    grid-template-columns: 36px;
    gap: 3px;
  }

  body.route-islandsmot50plus .premium-position .rank-avatar {
    width: 31px;
    height: 31px;
    font-size: 11px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13), inset 0 -1px 0 rgba(0, 0, 0, .24), 0 7px 14px rgba(0, 0, 0, .24);
  }

  body.route-islandsmot50plus .premium-avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    font-size: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), inset 0 -1px 0 rgba(0, 0, 0, .28), 0 8px 16px rgba(0, 0, 0, .26);
  }

  body.route-islandsmot50plus .premium-player-copy .player-name-row strong {
    font-size: 15px;
  }

  body.route-islandsmot50plus .premium-player-copy > small {
    font-size: 10px;
  }

  body.route-islandsmot50plus .score-pill {
    min-width: 56px;
    min-height: 36px;
    padding: 5px 10px;
    font-size: 14px;
  }

  body.route-meistaramot-2026 .premium-score-item {
    margin: 2px 4px;
  }

  body.route-meistaramot-2026 .premium-board-head {
    margin: 0 10px;
    padding: 0 38px 4px 10px;
  }

  body.route-meistaramot-2026 .premium-score-row {
    min-height: 60px;
    padding: 7px 38px 7px 10px;
  }

  body.route-meistaramot-2026 .premium-position {
    grid-template-columns: 36px;
    gap: 3px;
  }

  body.route-meistaramot-2026 .premium-position .rank-avatar {
    width: 31px;
    height: 31px;
    font-size: 11px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .13), inset 0 -1px 0 rgba(0, 0, 0, .24), 0 7px 14px rgba(0, 0, 0, .24);
  }

  body.route-meistaramot-2026 .premium-avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    font-size: 12px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14), inset 0 -1px 0 rgba(0, 0, 0, .28), 0 8px 16px rgba(0, 0, 0, .26);
  }

  body.route-meistaramot-2026 .premium-player-copy > strong {
    font-size: 14px;
  }

  body.route-meistaramot-2026 .premium-player-copy > small {
    font-size: 10px;
  }

  body.route-meistaramot-2026 .score-pill {
    min-width: 56px;
    min-height: 36px;
    padding: 5px 10px;
    font-size: 14px;
  }

  body.route-islandsmot50plus .leaderboard-panel {
    padding-top: 4px;
  }

  body.route-islandsmot50plus .live-leaderboard {
    margin-top: 0;
  }

  body.route-islandsmot50plus,
  body.route-islandsmot50plus .shell,
  body.route-islandsmot50plus .tournament-hub,
  body.route-islandsmot50plus .data-panel {
    overflow-x: clip;
  }
}

@media (max-width: 980px) and (max-height: 520px) and (orientation: landscape) {
  body.route-islandsmot50plus .topbar {
    min-height: 46px;
    padding: 6px 10px;
  }

  body.route-islandsmot50plus .shell.tournament-shell {
    width: calc(100% - 12px);
    padding-top: 4px;
  }

  body.route-islandsmot50plus .scoreboard-live-header {
    margin-top: 6px;
    padding: 0 12px;
  }

  body.route-islandsmot50plus .premium-score-item {
    margin: 2px 3px;
    column-gap: 5px;
  }

  body.route-islandsmot50plus .premium-board-head {
    margin: 0 8px;
    padding: 0 8px 4px 26px;
  }

  body.route-islandsmot50plus .premium-board-head,
  body.route-islandsmot50plus .premium-score-row {
    grid-template-columns: 58px minmax(0, 1fr) 58px;
    gap: 5px;
  }

  body.route-islandsmot50plus .premium-board-head span:nth-child(3),
  body.route-islandsmot50plus .premium-board-head span:nth-child(4),
  body.route-islandsmot50plus .premium-today,
  body.route-islandsmot50plus .premium-thru {
    display: none;
  }

  body.route-islandsmot50plus .premium-board-head span:nth-child(5) {
    grid-column: 3;
  }

  body.route-islandsmot50plus .premium-score-row {
    min-height: 68px;
    padding: 8px 7px;
  }

  body.route-islandsmot50plus .premium-score-item > .favorite-toggle {
    width: 18px;
    height: 18px;
    margin-left: 5px;
    font-size: 10px;
  }
}

@media (min-width: 701px) {
  body.route-islandsmot50plus nav a {
    display: inline-flex;
  }
}

/* RC2 Design Polish - Premium Leaderboard */
:root {
  --rc2-radius-card: 22px;
  --rc2-radius-row: 18px;
  --rc2-border-soft: rgba(255, 255, 255, .08);
  --rc2-shadow-soft: 0 14px 30px rgba(0, 0, 0, .22);
  --rc2-shadow-strong: 0 20px 42px rgba(0, 0, 0, .28);
  --rc2-motion: 200ms cubic-bezier(.2, .8, .2, 1);
}

.shell.tournament-shell {
  padding-top: 14px;
  padding-bottom: 56px;
}

.tournament-hero {
  min-height: 234px;
  padding: 18px 22px 20px;
  gap: 16px;
  border-radius: 22px;
}

.tournament-hub {
  margin-top: 0;
  padding-top: 2px;
}

.live-board-shell {
  gap: 6px;
}

.scoreboard-live-header {
  padding: 0;
}

.scoreboard-statusbar {
  padding: 7px 11px;
  border-radius: 14px;
  border-color: var(--rc2-border-soft);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .20);
}

.compact-btn {
  min-height: 38px;
  border-radius: 11px;
  transition: transform var(--rc2-motion), background-color var(--rc2-motion), border-color var(--rc2-motion), box-shadow var(--rc2-motion);
}

.compact-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
}

.compact-btn:active {
  transform: translateY(0);
}

.compact-btn.is-loading .refresh-icon {
  animation-duration: .72s;
}

.scoreboard-summary,
.compact-hero {
  margin: 0;
  padding: 3px 6px;
  border-radius: 12px;
}

.summary-hero {
  gap: 6px;
}

.summary-live-pill {
  margin-bottom: 2px;
}

.summary-hero h2 {
  font-size: clamp(21px, 1.9vw, 26px);
  line-height: 1.02;
}

.summary-subtitle {
  margin-top: 0;
  font-size: 11px;
  line-height: 1.2;
}

.summary-updated {
  margin-top: 0;
  padding-left: 8px;
}

.summary-updated small {
  font-size: 7px;
}

.summary-updated strong {
  font-size: 11px;
}

.scoreboard-classes {
  margin-top: 8px;
}

.scoreboard-classes .class-pill,
.tournament-center-nav .view-pill {
  transition: transform var(--rc2-motion), background-color var(--rc2-motion), border-color var(--rc2-motion), color var(--rc2-motion), box-shadow var(--rc2-motion);
}

.scoreboard-classes .class-pill:hover,
.tournament-center-nav .view-pill:hover {
  transform: translateY(-1px);
}

.leaderboard-panel {
  padding: 6px 5px;
  border-radius: var(--rc2-radius-card);
}

.premium-board-head {
  padding: 0 48px 5px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  color: rgba(242, 247, 255, .7);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.live-leaderboard {
  border-radius: var(--rc2-radius-card);
}

.premium-score-item {
  margin: 4px 7px;
  position: relative;
  border-radius: var(--rc2-radius-row);
  border: 1px solid rgba(255, 255, 255, .065);
  box-shadow: var(--rc2-shadow-soft);
  transition: transform var(--rc2-motion), background var(--rc2-motion), border-color var(--rc2-motion), box-shadow var(--rc2-motion), opacity var(--rc2-motion);
}

.favorite-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(9, 16, 24, .78);
  color: #9fb0c1;
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: transform var(--rc2-motion), background-color var(--rc2-motion), border-color var(--rc2-motion), color var(--rc2-motion);
}

.favorite-toggle:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(255, 225, 150, .36);
  color: #ffe2a5;
}

.favorite-toggle.is-active {
  border-color: rgba(255, 219, 128, .52);
  background: linear-gradient(180deg, rgba(137, 102, 34, .42), rgba(65, 46, 12, .46));
  color: #ffd786;
}

.favorite-toggle:focus-visible {
  outline: 2px solid rgba(120, 201, 255, .5);
  outline-offset: 1px;
}

.premium-score-item:hover {
  transform: translateY(-1px);
}

.premium-score-item.is-expanded {
  box-shadow: var(--rc2-shadow-strong);
}

.premium-score-item.is-leader {
  position: relative;
  border-color: rgba(232, 188, 86, .24);
  border-radius: 20px;
  box-shadow: 0 20px 46px rgba(0, 0, 0, .32), 0 0 0 1px rgba(232, 188, 86, .10);
  background: linear-gradient(180deg, rgba(29, 35, 44, .97), rgba(18, 25, 34, .97));
}

.premium-score-item.is-leader::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(232, 188, 86, .10), rgba(232, 188, 86, .02) 38%, rgba(232, 188, 86, 0) 65%);
}

.premium-score-item.is-leader::before {
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 225, 150, .92), rgba(230, 177, 75, .66));
}

.premium-score-row {
  min-height: 76px;
  padding: 10px 48px 10px 14px;
  transition: background-color var(--rc2-motion), transform var(--rc2-motion);
}

.premium-score-row:hover {
  background: rgba(255, 255, 255, .03);
}

.rank-avatar,
.premium-avatar,
.score-pill,
.movement-badge {
  transition: transform var(--rc2-motion), box-shadow var(--rc2-motion), background-color var(--rc2-motion), border-color var(--rc2-motion), color var(--rc2-motion);
}

.premium-score-row:hover .score-pill {
  transform: translateY(-1px);
}

.premium-position .rank-avatar,
.premium-avatar {
  border-radius: 999px;
}

.premium-position .rank-avatar--podium-1,
.premium-score-item.is-leader .premium-avatar,
.premium-score-item.podium-1 .premium-avatar {
  border-color: rgba(246, 209, 114, .46);
  background: linear-gradient(155deg, #7d6026, #4d3812 55%, #2c1f0a);
  color: #ffe6a9;
}

.premium-score-item.podium-2 .premium-avatar,
.premium-position .rank-avatar--podium-2 {
  border-color: rgba(222, 233, 244, .64);
  background: linear-gradient(155deg, #728394, #465564 58%, #273340);
  color: #f5f9fd;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), inset 0 -1px 0 rgba(0, 0, 0, .2), 0 8px 20px rgba(0, 0, 0, .24), 0 0 18px rgba(194, 216, 238, .18);
}

.premium-score-item.podium-3 .premium-avatar,
.premium-position .rank-avatar--podium-3 {
  border-color: rgba(218, 163, 114, .48);
  background: linear-gradient(155deg, #3a2f28, #221c18);
  color: #f1d9c2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), 0 8px 20px rgba(0, 0, 0, .24), 0 0 0 1px rgba(218, 163, 114, .24);
}

.premium-score-item.podium-2 .premium-score-row {
  box-shadow: inset 2px 0 0 rgba(222, 233, 244, .62), 0 0 0 1px rgba(182, 208, 232, .1);
}

.premium-score-item.podium-2 .score-pill {
  border-color: rgba(213, 227, 241, .7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 0 14px rgba(194, 216, 238, .14);
}

.premium-score-item.podium-3 .premium-score-row {
  box-shadow: inset 2px 0 0 rgba(218, 163, 114, .44);
}

.premium-score-item.podium-1 .premium-score-row {
  box-shadow: inset 2px 0 0 rgba(246, 209, 114, .86), 0 0 0 1px rgba(239, 199, 105, .18), 0 12px 24px rgba(20, 12, 2, .24);
  background: linear-gradient(115deg, rgba(255, 221, 140, .14), rgba(255, 221, 140, .04) 36%, rgba(12, 19, 29, .9) 100%);
}

.premium-score-item.is-leader-takeover {
  animation: leaderTakeoverRise .38s cubic-bezier(.18, .9, .22, 1) both;
}

.premium-score-item.is-leader-takeover .premium-score-row {
  box-shadow: inset 3px 0 0 rgba(250, 215, 125, .95), 0 0 0 1px rgba(242, 206, 117, .3), 0 18px 30px rgba(28, 16, 2, .32);
}

.premium-score-item.is-leader-takeover::before {
  animation: leaderFrameSweep .42s cubic-bezier(.16, .88, .22, 1) both;
}

.premium-score-item.podium-2 .premium-score-row {
  background: linear-gradient(115deg, rgba(218, 233, 247, .12), rgba(218, 233, 247, .03) 34%, rgba(12, 19, 29, .9) 100%);
}

.premium-score-item.podium-3 .premium-score-row {
  box-shadow: inset 2px 0 0 rgba(218, 163, 114, .6), 0 0 0 1px rgba(180, 123, 74, .13);
  background: linear-gradient(115deg, rgba(217, 166, 120, .11), rgba(217, 166, 120, .03) 34%, rgba(12, 19, 29, .9) 100%);
}

.premium-position.podium-1 .rank-order,
.premium-position.podium-2 .rank-order,
.premium-position.podium-3 .rank-order {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.premium-position.podium-1 .rank-order {
  color: #ffe6ab;
}

.premium-position.podium-2 .rank-order {
  color: #e7f1fb;
}

.premium-position.podium-3 .rank-order {
  color: #f0dac6;
}

.rank-medal {
  font-size: 12px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, .25));
}

.player-name-row .podium-medal {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 1px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .26), 0 5px 10px rgba(0, 0, 0, .22);
}

.player-name-row .podium-medal-1 {
  background: linear-gradient(160deg, rgba(255, 226, 144, .34), rgba(200, 149, 49, .26));
}

.player-name-row .podium-medal-2 {
  background: linear-gradient(160deg, rgba(233, 244, 255, .32), rgba(138, 165, 190, .24));
}

.player-name-row .podium-medal-3 {
  background: linear-gradient(160deg, rgba(232, 183, 145, .31), rgba(142, 91, 59, .23));
}

.premium-score-item.podium-1,
.premium-score-item.podium-2,
.premium-score-item.podium-3 {
  animation: podiumEntrance .26s cubic-bezier(.2, .8, .2, 1) both;
}

.premium-score-item.podium-1 {
  animation-delay: .02s;
}

.premium-score-item.podium-2 {
  animation-delay: .08s;
}

.premium-score-item.podium-3 {
  animation-delay: .14s;
}

.premium-score-item.podium-1 .podium-medal,
.premium-score-item.podium-2 .podium-medal,
.premium-score-item.podium-3 .podium-medal {
  animation: podiumMedalPop .3s cubic-bezier(.22, 1.18, .42, 1) both;
}

.podium-medal--takeover {
  animation: podiumMedalTakeover .2s ease-out 1 both;
}

.premium-score-item.podium-1 .podium-medal {
  animation-delay: .1s;
}

.premium-score-item.podium-2 .podium-medal {
  animation-delay: .14s;
}

.premium-score-item.podium-3 .podium-medal {
  animation-delay: .18s;
}

@keyframes podiumEntrance {
  0% {
    opacity: .55;
    transform: translateY(6px) scale(.992);
    filter: saturate(.9);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
}

@keyframes leaderTakeoverRise {
  0% {
    transform: translateY(10px) scale(.994);
    opacity: .82;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes leaderFrameSweep {
  0% {
    opacity: .25;
    transform: translateY(10px);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  72% {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 0 14px rgba(248, 206, 96, .26);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes podiumMedalPop {
  0% {
    transform: scale(.72);
    opacity: .2;
  }

  72% {
    transform: scale(1.12);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes podiumMedalTakeover {
  0% {
    opacity: 0;
    transform: translateY(2px) scale(.86);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {

  .premium-score-item.podium-1,
  .premium-score-item.podium-2,
  .premium-score-item.podium-3,
  .premium-score-item.is-leader-takeover,
  .premium-score-item.podium-1 .podium-medal,
  .premium-score-item.podium-2 .podium-medal,
  .premium-score-item.podium-3 .podium-medal,
  .podium-medal--takeover,
  .premium-score-item.is-leader-takeover::before {
    animation: none;
  }
}

.score-pill--pulse-up {
  animation: scorePillBlinkUp .3s ease-out 1;
}

.score-pill--pulse-down {
  animation: scorePillBlinkDown .3s ease-out 1;
}

@keyframes scorePillBlinkUp {
  0% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    filter: brightness(1);
  }

  55% {
    box-shadow: 0 0 12px rgba(80, 226, 145, .4);
    filter: brightness(1.07);
  }
}

@keyframes scorePillBlinkDown {
  0% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    filter: brightness(1);
  }

  55% {
    box-shadow: 0 0 12px rgba(255, 125, 125, .36);
    filter: brightness(1.07);
  }
}

.premium-avatar {
  background: linear-gradient(155deg, #294362, #18293c);
  color: #dceaf7;
}

.premium-player {
  gap: 11px;
}

.player-name-row {
  gap: 6px;
}

.premium-player-copy>strong {
  font-size: 19px;
  font-weight: 820;
  letter-spacing: -.01em;
}

.premium-player-copy>small {
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.2;
  color: #8194a8;
}

.player-club-meta {
  color: #7f90a2;
}

.player-category-meta {
  margin-left: 6px;
  color: #9fb2c5;
}

.player-country-meta {
  color: #b7c8d9;
  letter-spacing: 0;
}

.player-hcp-meta {
  margin-left: 6px;
  color: #9fb2c5;
}

.player-category-meta::before {
  content: "·";
  margin-right: 6px;
  color: #6f8195;
}

.player-hcp-meta::before {
  content: "·";
  margin-right: 6px;
  color: #6f8195;
}

.premium-today>span,
.premium-thru>span,
.premium-total>span {
  margin-bottom: 3px;
}

.score-pill {
  border-radius: 14px;
}

.premium-score-item .inline-scorecard {
  padding: 0 16px 16px 98px;
  animation-duration: var(--rc2-motion);
}

.inline-scorecard {
  gap: 10px;
}

.inline-score-summary.compact-inline-summary {
  grid-template-columns: repeat(3, minmax(0, 84px));
  justify-content: start;
  gap: 8px;
}

.inline-score-summary.compact-inline-summary span {
  padding: 7px 10px;
  border-radius: 12px;
}

.inline-score-summary.compact-inline-summary strong {
  font-size: 15px;
  font-weight: 860;
  letter-spacing: .01em;
}

.inline-score-summary.compact-inline-summary small {
  display: none;
}

.inline-scorecard-panel {
  border-radius: 16px;
}

.premium-score-item.is-expanded,
.premium-score-item .inline-scorecard,
.score-chevron,
.tournament-center-grid,
.center-column,
.leaderboard-panel {
  transition: all var(--rc2-motion);
}

body.tv-mode .scoreboard-summary,
body.tv-mode .compact-hero {
  padding: 5px 7px;
}

body.tv-mode .premium-score-row {
  min-height: 70px;
  padding: 8px 48px 8px 14px;
}

body.tv-mode .leaderboard-panel .live-leaderboard > .premium-score-item:first-child {
  position: sticky;
  top: 8px;
  z-index: 6;
}

body.tv-mode .scoreboard-live-header .tournament-center-nav,
body.tv-mode .scoreboard-empty {
  display: none;
}

body.tv-mode .scoreboard-live-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding-top: 10px;
}

body.tv-mode .scoreboard-classes .class-pill[data-leaderboard-class="favorites"] {
  display: none;
}

body.tv-mode .scoreboard-classes .class-pill {
  min-height: 37px;
  padding: 8px 12px 6px;
  font-size: 13px;
  border-radius: 14px;
}

body.page-naestumot {
  background:
    radial-gradient(circle at top left, rgba(76, 150, 255, .14), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 114, 178, .08), transparent 30%),
    linear-gradient(180deg, #060a10 0%, #070d14 42%, #05080d 100%);
  color: #eef4fb;
}

body.page-naestumot .naestumot-topbar {
  padding: 18px 18px 0;
}

body.page-naestumot .naestumot-topbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background: rgba(8, 16, 26, .76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 18px 40px rgba(0, 0, 0, .24);
  backdrop-filter: blur(18px);
}

body.page-naestumot .naestumot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f7fbff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
}

body.page-naestumot .naestumot-brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #6abfff, #2d8dff);
  color: #08111c;
  box-shadow: 0 10px 22px rgba(45, 141, 255, .28);
}

body.page-naestumot .naestumot-brand-word {
  white-space: nowrap;
}

body.page-naestumot .naestumot-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.page-naestumot .naestumot-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .04);
  color: rgba(237, 244, 250, .9);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

body.page-naestumot .naestumot-nav a.active {
  border-color: rgba(92, 184, 255, .55);
  background: linear-gradient(180deg, rgba(92, 184, 255, .32), rgba(33, 111, 201, .38));
  color: #f9fcff;
}

body.page-naestumot .naestumot-shell {
  max-width: 1160px;
  margin: 0 auto;
  padding: 24px 18px 56px;
  display: grid;
  gap: 18px;
}

body.page-naestumot .naestumot-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(13, 24, 39, .92), rgba(9, 17, 28, .94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04), 0 20px 40px rgba(0, 0, 0, .25);
}

body.page-naestumot .naestumot-hero-copy {
  display: grid;
  gap: 10px;
}

body.page-naestumot .naestumot-kicker {
  margin: 0;
  color: rgba(221, 234, 247, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

body.page-naestumot .naestumot-hero h1 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: .98;
  letter-spacing: -.05em;
}

body.page-naestumot .naestumot-intro {
  margin: 0;
  max-width: 64ch;
  color: rgba(221, 234, 247, .82);
  font-size: 15px;
  line-height: 1.6;
}

body.page-naestumot .naestumot-hero-actions {
  display: grid;
  gap: 12px;
  justify-items: end;
}

body.page-naestumot .naestumot-sort {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: rgba(221, 234, 247, .72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

body.page-naestumot .naestumot-sort select {
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(12, 22, 34, .92);
  color: #eef4fb;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
}

body.page-naestumot .naestumot-sort select:focus {
  outline: 2px solid rgba(92, 184, 255, .55);
  outline-offset: 2px;
}

body.page-naestumot .naestumot-hero-meta {
  display: grid;
  gap: 4px;
  text-align: right;
  color: rgba(221, 234, 247, .76);
  font-size: 13px;
  font-weight: 700;
}

body.page-naestumot .naestumot-action-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

body.page-naestumot .naestumot-status {
  min-height: 20px;
  color: rgba(221, 234, 247, .72);
  font-size: 13px;
  font-weight: 700;
}

body.page-naestumot .naestumot-status.is-loading {
  color: rgba(138, 196, 255, .95);
}

body.page-naestumot .naestumot-status.is-ready {
  color: rgba(144, 223, 168, .95);
}

body.page-naestumot .naestumot-status.is-error {
  color: rgba(255, 142, 168, .95);
}

body.page-naestumot .naestumot-controls {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  margin-top: -2px;
}

body.page-naestumot .naestumot-list {
  display: grid;
  gap: 16px;
}

body.page-naestumot .naestumot-day {
  padding: 0;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(9, 16, 26, .76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 18px 36px rgba(0, 0, 0, .22);
}

body.page-naestumot .naestumot-day-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 18px;
  cursor: pointer;
  list-style: none;
}

body.page-naestumot .naestumot-day-head::-webkit-details-marker {
  display: none;
}

body.page-naestumot .naestumot-day[open] .naestumot-day-head {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

body.page-naestumot .naestumot-day-head h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing: -.04em;
}

body.page-naestumot .naestumot-day-head span {
  color: rgba(221, 234, 247, .64);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.page-naestumot .naestumot-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 18px;
}

body.page-naestumot .naestumot-card {
  display: block;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: linear-gradient(180deg, rgba(16, 26, 39, .96), rgba(11, 18, 28, .96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03);
  color: inherit;
  text-decoration: none;
  transition: transform var(--rc2-motion), border-color var(--rc2-motion), background-color var(--rc2-motion), box-shadow var(--rc2-motion);
}

body.page-naestumot .naestumot-card:hover {
  transform: translateY(-1px);
  border-color: rgba(92, 184, 255, .22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 12px 24px rgba(0, 0, 0, .18);
}

body.page-naestumot .naestumot-card:focus-visible {
  outline: 2px solid rgba(92, 184, 255, .55);
  outline-offset: 2px;
}

body.page-naestumot .naestumot-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  color: rgba(221, 234, 247, .66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

body.page-naestumot .naestumot-card-badge {
  color: #8bc5ff;
}

body.page-naestumot .naestumot-card-id {
  color: rgba(221, 234, 247, .5);
}

body.page-naestumot .naestumot-card h3 {
  margin: 0;
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.15;
  letter-spacing: -.03em;
}

body.page-naestumot .naestumot-card-venue {
  margin: 8px 0 0;
  color: rgba(221, 234, 247, .7);
  font-size: 14px;
}

body.page-naestumot .naestumot-empty {
  padding: 32px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(9, 16, 26, .76);
}

body.page-naestumot .naestumot-empty h3 {
  margin: 0 0 8px;
}

body.page-naestumot .naestumot-empty p {
  margin: 0;
  color: rgba(221, 234, 247, .7);
}

body.page-naestumot .naestumot-footer {
  padding: 0 18px 28px;
  color: rgba(221, 234, 247, .56);
}

body.page-naestumot .naestumot-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

body.page-naestumot .naestumot-footer a {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 820px) {
  .shell.tournament-shell {
    padding-top: 10px;
  }

  body.page-naestumot .naestumot-topbar {
    padding: 10px 10px 0;
  }

  body.page-naestumot .naestumot-topbar-inner,
  body.page-naestumot .naestumot-hero,
  body.page-naestumot .naestumot-day {
    border-radius: 20px;
  }

  body.page-naestumot .naestumot-topbar-inner,
  body.page-naestumot .naestumot-hero {
    padding: 16px;
  }

  body.page-naestumot .naestumot-hero,
  body.page-naestumot .naestumot-topbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  body.page-naestumot .naestumot-hero-actions,
  body.page-naestumot .naestumot-hero-meta,
  body.page-naestumot .naestumot-action-row,
  body.page-naestumot .naestumot-sort,
  body.page-naestumot .naestumot-controls {
    justify-items: start;
    justify-content: flex-start;
    text-align: left;
  }

  body.page-naestumot .naestumot-grid {
    grid-template-columns: 1fr;
  }

  .tournament-hero {
    min-height: 204px;
    padding: 16px 16px 18px;
    border-radius: 20px;
  }

  .scoreboard-statusbar {
    padding: 8px 10px;
  }

  .premium-board-head,
  .premium-score-row {
    grid-template-columns: 70px minmax(0, 1fr) 72px;
    gap: 8px;
  }

  .premium-score-row {
    min-height: 74px;
    padding: 10px 42px 10px 9px;
  }

  .premium-player-copy>strong {
    font-size: 16px;
  }

  .premium-score-item .inline-scorecard {
    padding: 0 10px 13px;
  }

  .inline-score-summary.compact-inline-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .shell.tournament-shell {
    padding-top: 8px;
  }

  .tournament-hero {
    min-height: 184px;
    padding: 14px 14px 16px;
    gap: 12px;
  }

  .summary-hero h2 {
    font-size: clamp(20px, 6.8vw, 23px);
  }

  .summary-subtitle {
    font-size: 10px;
  }

  .premium-score-item {
    margin: 4px 2px;
    border-radius: 15px;
  }

  .premium-score-row {
    min-height: 68px;
    padding: 8px 38px 8px 7px;
  }

  .favorite-toggle {
    right: 6px;
    width: 27px;
    height: 27px;
    font-size: 14px;
  }

  .premium-player {
    gap: 8px;
  }

  .premium-player-copy>strong {
    font-size: 14px;
  }

  .premium-player-copy>small {
    font-size: 10px;
  }

  .inline-score-summary.compact-inline-summary strong {
    font-size: 14px;
  }
}

