:root {
  --wc-bg: #f4eddc;
  --wc-panel: rgba(255, 250, 241, 0.92);
  --wc-panel-strong: rgba(18, 53, 45, 0.94);
  --wc-ink: #1d2c25;
  --wc-muted: #66756d;
  --wc-line: rgba(23, 61, 52, 0.12);
  --wc-accent: #d29b34;
  --wc-accent-soft: rgba(210, 155, 52, 0.14);
  --wc-forest: #173d34;
  --wc-forest-soft: rgba(23, 61, 52, 0.08);
  --wc-shadow: 0 18px 40px rgba(23, 61, 52, 0.12);
  --wc-shadow-strong: 0 24px 58px rgba(13, 35, 30, 0.22);
  --wc-best-third-panel-width: clamp(296px, 26vw, 360px);
  --wc-best-third-offset: 20px;
}

* {
  box-sizing: border-box;
}

body.wc-body {
  margin: 0;
  min-height: 100vh;
  color: var(--wc-ink);
  font-family: "Avenir Next", "Optima", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(210, 155, 52, 0.22), transparent 34%),
    radial-gradient(circle at top right, rgba(23, 61, 52, 0.12), transparent 32%),
    linear-gradient(180deg, #fbf7ef 0%, #f4ecdd 48%, #f7f2e9 100%);
}

body.wc-modal-open {
  overflow: hidden;
}

body.wc-no-motion,
body.wc-no-motion *,
body.wc-no-motion *::before,
body.wc-no-motion *::after {
  animation: none !important;
  transition: none !important;
}

body.wc-body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 61, 52, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 61, 52, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
}

.wc-shell {
  position: relative;
  max-width: 1480px;
  margin: 0 auto;
  padding: 34px 24px 64px;
}

.wc-hero {
  position: relative;
  overflow: hidden;
  padding: 34px 36px 38px;
  border-radius: 36px;
  color: #f7f3eb;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(16, 47, 39, 0.98), rgba(27, 70, 59, 0.94));
  border: 1px solid rgba(255, 240, 214, 0.08);
  box-shadow: var(--wc-shadow-strong);
}

.wc-hero::before,
.wc-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.wc-hero::before {
  width: 250px;
  height: 250px;
  top: -120px;
  right: -40px;
}

.wc-hero::after {
  width: 180px;
  height: 180px;
  bottom: -90px;
  left: -30px;
}

.wc-hero__topline,
.wc-hero__content,
.wc-layout,
.wc-progress,
.wc-dashboard,
.wc-content,
.wc-table-card,
.wc-match-card,
.wc-aside-card,
.wc-stat-card,
.wc-nav-btn,
.wc-filter-btn,
.wc-primary-btn,
.wc-secondary-btn,
.wc-pick-btn,
.wc-link-chip {
  animation: wc-rise 0.42s ease;
}

.wc-hero__topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.wc-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: rgba(247, 243, 235, 0.76);
}

.wc-hero__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.wc-link-chip {
  text-decoration: none;
  color: #f7f3eb;
  border: 1px solid rgba(247, 243, 235, 0.18);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.wc-link-chip--accent {
  color: #152821;
  background: linear-gradient(135deg, #f3cb6a, var(--wc-accent));
  border-color: transparent;
}

.wc-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: stretch;
}

.wc-hero__copy,
.wc-hero__aside {
  display: grid;
  align-content: start;
}

.wc-hero__copy {
  gap: 18px;
}

.wc-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wc-hero__signal {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 244, 223, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 243, 235, 0.84);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.wc-hero__signal--accent {
  color: #172d25;
  background: linear-gradient(135deg, #f7d778, var(--wc-accent));
  border-color: transparent;
  font-weight: 700;
}

.wc-hero__copy h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.02;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  max-width: 10ch;
}

.wc-hero__copy p {
  max-width: 760px;
  margin: 0;
  line-height: 1.72;
  color: rgba(247, 243, 235, 0.84);
}

.wc-hero__lead {
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.wc-hero__subcopy {
  max-width: 640px;
  font-size: 0.98rem;
  color: rgba(247, 243, 235, 0.7);
}

.wc-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.wc-hero__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.wc-hero__summary-card {
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wc-hero__summary-label,
.wc-hero__note-label {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 243, 235, 0.62);
}

.wc-hero__summary-card strong,
.wc-hero__note-card strong {
  font-size: 1.18rem;
  line-height: 1.2;
  color: #fff7e3;
}

.wc-hero__summary-card small {
  color: rgba(247, 243, 235, 0.7);
  line-height: 1.52;
}

.wc-hero__aside {
  gap: 14px;
}

.wc-primary-btn,
.wc-secondary-btn,
.wc-pick-btn,
.wc-nav-btn,
.wc-filter-btn {
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.wc-primary-btn,
.wc-secondary-btn {
  border-radius: 999px;
  padding: 13px 20px;
  font-size: 0.96rem;
}

.wc-primary-btn {
  color: #152821;
  background: linear-gradient(135deg, #f3cb6a, var(--wc-accent));
  box-shadow: 0 12px 28px rgba(210, 155, 52, 0.28);
}

.wc-secondary-btn {
  color: #f7f3eb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.wc-primary-btn:hover,
.wc-secondary-btn:hover,
.wc-pick-btn:hover,
.wc-nav-btn:hover,
.wc-filter-btn:hover,
.wc-link-chip:hover {
  transform: translateY(-1px);
}

.wc-primary-btn:disabled,
.wc-secondary-btn:disabled,
.wc-pick-btn:disabled,
.wc-nav-btn:disabled,
.wc-filter-btn:disabled {
  opacity: 0.54;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.wc-hero__callout {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wc-hero__callout-label {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(210, 155, 52, 0.16);
  color: #f3cb6a;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wc-hero__callout p {
  margin: 0;
  line-height: 1.65;
  color: rgba(247, 243, 235, 0.86);
}

.wc-hero__callout a {
  display: inline-block;
  margin-top: 2px;
  color: #f3cb6a;
  text-decoration: none;
}

.wc-hero__referral {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(243, 203, 106, 0.16), rgba(124, 76, 17, 0.14));
  border: 1px solid rgba(243, 203, 106, 0.26);
}

.wc-hero__note-card {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(10, 31, 27, 0.5);
  border: 1px solid rgba(255, 233, 194, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.wc-hero__note-card p {
  margin: 0;
  line-height: 1.62;
  color: rgba(247, 243, 235, 0.82);
}

.wc-hero__note-footnote {
  padding-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: rgba(255, 232, 192, 0.86);
}

.wc-hero__referral-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff2c6;
  background: rgba(21, 40, 33, 0.32);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wc-hero__referral strong {
  font-size: 1rem;
  line-height: 1.5;
  color: #fff4d1;
}

.wc-hero__referral p {
  margin: 0;
  color: rgba(247, 243, 235, 0.9);
}

.wc-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  margin-top: 28px;
  align-items: start;
}

.wc-sidebar {
  position: sticky;
  top: 24px;
  align-self: start;
  padding: 24px 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(250, 245, 235, 0.84));
  border: 1px solid var(--wc-line);
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 40px rgba(23, 61, 52, 0.1);
}

.wc-sidebar__title {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wc-muted);
  margin-bottom: 12px;
}

.wc-sidebar__nav {
  display: grid;
  gap: 10px;
}

.wc-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
  padding: 15px 16px;
  border-radius: 20px;
  color: var(--wc-ink);
  background: rgba(23, 61, 52, 0.05);
  border: 1px solid rgba(23, 61, 52, 0.04);
}

.wc-nav-btn span {
  font-weight: 700;
}

.wc-nav-btn small {
  color: var(--wc-muted);
}

.wc-nav-btn.is-active {
  color: #f8f4ea;
  background: linear-gradient(135deg, rgba(21, 51, 44, 0.96), rgba(28, 77, 65, 0.94));
  border-color: rgba(210, 155, 52, 0.28);
  box-shadow: 0 14px 28px rgba(23, 61, 52, 0.18);
}

.wc-nav-btn.is-active small {
  color: rgba(248, 244, 234, 0.72);
}

.wc-sidebar__note {
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(210, 155, 52, 0.12), rgba(255, 249, 240, 0.72));
  border: 1px solid rgba(210, 155, 52, 0.14);
  color: var(--wc-muted);
  display: grid;
  gap: 6px;
  line-height: 1.55;
  font-size: 0.92rem;
}

.wc-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.wc-progress,
.wc-content {
  padding: 22px;
  border-radius: 30px;
  background: rgba(255, 251, 244, 0.92);
  border: 1px solid var(--wc-line);
  box-shadow: 0 20px 38px rgba(23, 61, 52, 0.08);
  backdrop-filter: blur(12px);
}

.wc-progress__rail {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.wc-rail-card {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 14px 15px;
  border-radius: 22px;
  background: rgba(23, 61, 52, 0.05);
  border: 1px solid rgba(23, 61, 52, 0.04);
  color: var(--wc-muted);
}

.wc-rail-card strong,
.wc-rail-card small {
  display: block;
}

.wc-rail-card strong {
  color: inherit;
  font-size: 0.94rem;
}

.wc-rail-card small {
  font-size: 0.78rem;
}

.wc-rail-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-weight: 700;
  background: rgba(23, 61, 52, 0.1);
}

.wc-rail-card.is-complete,
.wc-rail-card.is-active {
  color: #f8f4ea;
  background: linear-gradient(135deg, rgba(21, 51, 44, 0.96), rgba(28, 77, 65, 0.94));
}

.wc-rail-card.is-complete .wc-rail-card__index,
.wc-rail-card.is-active .wc-rail-card__index {
  color: #152821;
  background: linear-gradient(135deg, #f3cb6a, var(--wc-accent));
}

.wc-progress__caption {
  margin-top: 14px;
  color: var(--wc-muted);
  line-height: 1.6;
}

.wc-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.wc-pricing {
  padding: 18px 18px 16px;
  border-radius: 30px;
  background: rgba(255, 251, 244, 0.92);
  border: 1px solid var(--wc-line);
  box-shadow: 0 20px 38px rgba(23, 61, 52, 0.08);
  backdrop-filter: blur(12px);
}

.wc-pricing-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.wc-pricing-board--minimal {
  gap: 0;
}

.wc-value-stack {
  display: grid;
  min-width: 0;
  gap: 14px;
  margin: 18px 0 20px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(244, 232, 197, 0.3), rgba(255, 252, 247, 0.92));
  border: 1px solid rgba(23, 61, 52, 0.1);
}

.wc-value-stack__intro {
  display: grid;
  gap: 8px;
  max-width: 860px;
}

.wc-value-stack__intro h3,
.wc-value-card h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
}

.wc-value-stack__intro h3 {
  font-size: clamp(1.28rem, 2vw, 1.78rem);
  line-height: 1.16;
}

.wc-value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.wc-value-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.86);
  border: 1px solid rgba(23, 61, 52, 0.08);
}

.wc-value-card--accent {
  background: linear-gradient(180deg, rgba(255, 247, 225, 0.96), rgba(244, 232, 197, 0.52));
  border-color: rgba(210, 155, 52, 0.28);
}

.wc-value-card__label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wc-muted);
}

.wc-value-card h3 {
  font-size: 1.02rem;
  line-height: 1.22;
}

.wc-value-card__list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--wc-muted);
  line-height: 1.58;
}

.wc-value-card__note {
  margin: auto 0 0;
  color: var(--wc-ink);
  font-size: 0.84rem;
  line-height: 1.48;
}

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

.wc-value-strip span {
  display: flex;
  align-items: center;
  min-height: 100%;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid rgba(23, 61, 52, 0.08);
  color: var(--wc-ink);
  font-size: 0.84rem;
  line-height: 1.48;
}

.wc-pricing-grid,
.wc-bundle-grid {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.wc-pricing-grid--single {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.wc-bundle-grid {
  grid-template-columns: repeat(auto-fit, minmax(184px, 1fr));
  align-items: stretch;
}

.wc-price-card,
.wc-bundle-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.86);
  border: 1px solid rgba(23, 61, 52, 0.08);
}

.wc-anchor-target {
  display: block;
  position: relative;
  top: -10px;
  height: 0;
  visibility: hidden;
}

.wc-price-card__eyebrow,
.wc-pay-modal__summary-label,
.wc-pay-option__meta,
.wc-proof-popup__stats span {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wc-muted);
}

.wc-price-card h3,
.wc-bundle-card h3,
.wc-pay-modal h2,
.wc-proof-popup h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
}

.wc-bundle-card h3 {
  font-size: 1.02rem;
  line-height: 1.16;
}

.wc-price-card strong,
.wc-bundle-card__price {
  font-size: 1.8rem;
  line-height: 1;
}

.wc-price-card small,
.wc-bundle-card__note,
.wc-pay-modal__caption,
.wc-proof-popup__note {
  color: var(--wc-muted);
  line-height: 1.6;
}

.wc-bundle-card__head,
.wc-pay-option__top,
.wc-pay-modal__actions,
.wc-pay-modal__summary,
.wc-proof-popup__stats {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.wc-bundle-card__head {
  gap: 8px;
}

.wc-bundle-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(210, 155, 52, 0.14);
  color: var(--wc-forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wc-bundle-card__meta {
  display: grid;
  gap: 4px;
  color: var(--wc-muted);
  font-size: 0.82rem;
  line-height: 1.32;
}

.wc-bundle-card__select {
  display: grid;
  gap: 5px;
  color: var(--wc-muted);
  font-size: 0.82rem;
  line-height: 1.2;
}

.wc-bundle-card__select select,
.wc-pay-modal__field input {
  width: 100%;
  border: 1px solid rgba(23, 61, 52, 0.12);
  border-radius: 16px;
  padding: 12px 14px;
  font: inherit;
  color: var(--wc-ink);
  background: rgba(255, 255, 255, 0.82);
}

.wc-bundle-card__select select {
  border-radius: 12px;
  padding: 9px 11px;
  font-size: 0.87rem;
}

.wc-bundle-card.is-unlocked,
.wc-lock-block.is-unlocked {
  border-color: rgba(210, 155, 52, 0.34);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(244, 232, 197, 0.36));
}

.wc-bundle-card__actions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.wc-bundle-card__draw-btn {
  min-width: 74px;
  padding: 9px 12px;
  font-size: 0.84rem;
}

.wc-bundle-card__action-price {
  font-size: 1.18rem;
  line-height: 1;
  font-weight: 700;
  color: var(--wc-ink);
}

.wc-bundle-card__note {
  margin: 0;
  font-size: 0.81rem;
  line-height: 1.32;
}

.wc-pay-modal__backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(15, 33, 29, 0.56);
  backdrop-filter: blur(6px);
}

.wc-pay-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 81;
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  transform: translate(-50%, -50%);
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 251, 244, 0.98);
  border: 1px solid rgba(23, 61, 52, 0.12);
  box-shadow: 0 30px 80px rgba(8, 22, 19, 0.28);
}

.wc-pay-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--wc-ink);
  background: rgba(23, 61, 52, 0.08);
}

.wc-pay-modal__field {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.wc-pay-modal__options {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.wc-pay-option {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(23, 61, 52, 0.12);
  cursor: pointer;
  text-align: left;
  color: var(--wc-ink);
  background: rgba(255, 255, 255, 0.86);
}

.wc-pay-option.is-selected {
  border-color: rgba(210, 155, 52, 0.56);
  box-shadow: 0 12px 24px rgba(210, 155, 52, 0.16);
}

.wc-pay-option.is-unlocked {
  background: rgba(210, 155, 52, 0.12);
}

.wc-pay-modal__summary {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(23, 61, 52, 0.05);
}

.wc-pay-modal__helper {
  margin: 10px 0 0;
  color: var(--wc-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.wc-pay-modal__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.wc-pay-modal__trust span {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(23, 61, 52, 0.07);
  color: var(--wc-ink);
  font-size: 0.78rem;
  line-height: 1;
}

.wc-pay-modal__status {
  margin-top: 14px;
  min-height: 24px;
  color: var(--wc-muted);
  line-height: 1.55;
}

.wc-pay-modal__element-wrap {
  margin-top: 14px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 61, 52, 0.08);
}

.wc-pay-modal__actions {
  margin-top: 14px;
}

.wc-pay-modal__actions--footer {
  justify-content: flex-end;
}

.wc-proof-popup {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 70;
  width: min(420px, calc(100vw - 24px));
  padding: 20px 20px 18px;
  border-radius: 24px;
  color: #f8f4ea;
  background: linear-gradient(145deg, rgba(15, 42, 36, 0.98), rgba(27, 69, 59, 0.96));
  border: 1px solid rgba(243, 203, 106, 0.26);
  box-shadow: 0 24px 54px rgba(8, 22, 19, 0.28);
}

.wc-proof-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #f8f4ea;
  background: rgba(255, 255, 255, 0.08);
}

.wc-proof-popup__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.wc-proof-popup__stats div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
}

.wc-proof-popup__stats strong {
  font-size: 1.08rem;
}

.wc-stat-card {
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 251, 244, 0.94);
  border: 1px solid var(--wc-line);
  box-shadow: 0 18px 32px rgba(23, 61, 52, 0.07);
}

.wc-stat-card--wide {
  grid-column: span 4;
}

.wc-stat-card__label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wc-muted);
}

.wc-stat-card strong {
  display: block;
  margin-top: 12px;
  font-size: 1.42rem;
  line-height: 1.18;
}

.wc-stat-card small {
  display: block;
  margin-top: 6px;
  line-height: 1.5;
  color: var(--wc-muted);
}

.wc-section__header,
.wc-group-block__header,
.wc-table-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.wc-section__eyebrow {
  margin: 0 0 6px;
  color: var(--wc-muted);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.wc-section h2,
.wc-group-block h2,
.wc-table-card h3,
.wc-aside-card h3 {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
}

.wc-stage-note {
  margin: 14px 0 0;
  line-height: 1.7;
  color: var(--wc-muted);
}

.wc-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.wc-filter-btn {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--wc-ink);
  background: rgba(23, 61, 52, 0.06);
}

.wc-filter-btn.is-active {
  color: #152821;
  background: linear-gradient(135deg, #f3cb6a, var(--wc-accent));
  box-shadow: 0 10px 24px rgba(210, 155, 52, 0.22);
}

.wc-group-layout {
  position: relative;
  margin-top: 18px;
}

.wc-group-layout__main {
  display: grid;
  gap: 18px;
  transition: padding-right 0.38s ease;
}

.wc-group-layout__side {
  position: fixed;
  top: 50%;
  right: var(--wc-best-third-offset);
  z-index: 36;
  width: min(var(--wc-best-third-panel-width), calc(100vw - (var(--wc-best-third-offset) * 2)));
  max-height: min(78vh, 860px);
  min-width: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0);
  transition: opacity 0.28s ease, transform 0.38s ease, visibility 0s linear;
}

.wc-group-layout__side.is-collapsed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(calc(100% + 28px), -50%, 0);
  transition: opacity 0.24s ease, transform 0.38s ease, visibility 0s linear 0.38s;
}

@media (min-width: 1181px) {
  .wc-group-layout__main {
    padding-right: calc(var(--wc-best-third-panel-width) + 28px);
  }

  .wc-group-layout.has-collapsed-best-third .wc-group-layout__main {
    padding-right: 0;
  }
}

.wc-group-block {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.82), rgba(251, 247, 239, 0.68));
  border: 1px solid rgba(23, 61, 52, 0.09);
  box-shadow: 0 18px 34px rgba(23, 61, 52, 0.06);
  overflow: hidden;
}

.wc-group-block__range {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(23, 61, 52, 0.05);
  border: 1px solid rgba(23, 61, 52, 0.06);
  color: var(--wc-muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.wc-table-card,
.wc-aside-card {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(23, 61, 52, 0.08);
  box-shadow: 0 14px 28px rgba(23, 61, 52, 0.05);
}

.wc-group-block__header {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23, 61, 52, 0.08);
}

.wc-group-block h2 {
  font-size: 1.55rem;
  line-height: 1.08;
}

.wc-table-card {
  display: grid;
  gap: 16px;
}

.wc-table-card__summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.wc-table-card__pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 61, 52, 0.06);
  color: var(--wc-ink);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.wc-table-card__pill--leader {
  background: linear-gradient(135deg, rgba(243, 203, 106, 0.24), rgba(210, 155, 52, 0.2));
}

.wc-table-card__pill--watch {
  background: rgba(210, 155, 52, 0.12);
}

.wc-best-third-shell {
  width: 100%;
  height: 100%;
}

.wc-best-third-board {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: min(78vh, 860px);
  overflow: hidden;
  transform-origin: center right;
  box-shadow: var(--wc-shadow-strong);
  transition: opacity 0.28s ease, transform 0.38s ease, box-shadow 0.28s ease;
}

.wc-best-third-shell.is-collapsed .wc-best-third-board {
  opacity: 0;
  transform: translateX(18px) scale(0.98);
  box-shadow: none;
}

.wc-best-third-board__header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.wc-best-third-board__body {
  flex: 1 1 auto;
  margin-top: 14px;
  opacity: 1;
  transform: translateY(0);
  overflow: auto;
  padding-right: 4px;
  transition: opacity 0.22s ease, transform 0.38s ease;
}

.wc-best-third-shell.is-collapsed .wc-best-third-board__body {
  opacity: 0;
  transform: translateY(-12px);
}

.wc-best-third-toggle {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  background: linear-gradient(135deg, #f3cb6a, var(--wc-accent));
  color: #152821;
  box-shadow: 0 10px 24px rgba(210, 155, 52, 0.2);
}

.wc-best-third-fab {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 144px;
  min-height: 56px;
  padding: 14px 18px 14px 22px;
  border: none;
  border-radius: 999px 0 0 999px;
  cursor: pointer;
  background: linear-gradient(135deg, #f3cb6a, var(--wc-accent));
  color: #152821;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(210, 155, 52, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -50%, 0) scale(0.92);
  transition: opacity 0.24s ease, transform 0.38s ease, box-shadow 0.24s ease, visibility 0s linear 0.38s;
}

.wc-best-third-fab.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0) scale(1);
  transition: opacity 0.24s ease, transform 0.38s ease, box-shadow 0.24s ease, visibility 0s linear;
}

.wc-best-third-fab:hover {
  box-shadow: 0 20px 40px rgba(210, 155, 52, 0.34);
}

.wc-best-third-toggle:hover,
.wc-best-third-fab:hover {
  transform: translateY(-1px);
}

.wc-best-third-toggle:focus-visible,
.wc-best-third-fab:focus-visible {
  outline: 2px solid rgba(23, 61, 52, 0.42);
  outline-offset: 2px;
}

.wc-table-wrap {
  overflow-x: auto;
}

.wc-standings-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin-top: 2px;
  min-width: 680px;
}

.wc-standings-table th,
.wc-standings-table td {
  padding: 13px 12px;
  text-align: left;
  border-bottom: none;
}

.wc-standings-table th {
  color: var(--wc-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 0;
  padding-bottom: 4px;
}

.wc-standings-table tbody tr {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(23, 61, 52, 0.07);
}

.wc-standings-table tbody td:first-child {
  border-radius: 16px 0 0 16px;
  width: 64px;
}

.wc-standings-table tbody td:last-child {
  border-radius: 0 16px 16px 0;
}

.wc-standings-table tr.is-locked {
  background: rgba(242, 248, 246, 0.98);
  box-shadow: inset 0 0 0 1px rgba(23, 61, 52, 0.1);
}

.wc-standings-table tr.is-third {
  background: rgba(255, 247, 230, 0.96);
  box-shadow: inset 0 0 0 1px rgba(210, 155, 52, 0.16);
}

.wc-table-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(23, 61, 52, 0.08);
  color: var(--wc-ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.wc-standings-table__team {
  font-weight: 700;
  color: var(--wc-ink);
}

.wc-standings-table__points {
  font-weight: 800;
  color: var(--wc-forest);
}

.wc-table-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--wc-forest);
  background: rgba(23, 61, 52, 0.08);
}

.wc-table-badge--locked {
  background: rgba(23, 61, 52, 0.1);
}

.wc-table-badge--third {
  background: rgba(210, 155, 52, 0.16);
}

.wc-table-badge--live {
  background: rgba(23, 61, 52, 0.06);
}

.wc-mini-table {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.wc-mini-table__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(23, 61, 52, 0.05);
  color: var(--wc-muted);
}

.wc-mini-table__row.is-qualified {
  color: var(--wc-ink);
  background: rgba(210, 155, 52, 0.12);
}

.wc-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 18px;
}

.wc-match-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(249, 245, 237, 0.94));
  border: 1px solid rgba(23, 61, 52, 0.08);
  box-shadow: 0 14px 30px rgba(23, 61, 52, 0.07);
  overflow: hidden;
  position: relative;
}

.wc-match-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(243, 203, 106, 0.9), rgba(210, 155, 52, 0.18));
}

.wc-match-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.wc-match-card__top h3 {
  margin: 6px 0 0;
  font-size: 1.22rem;
  line-height: 1.16;
}

.wc-match-card__stage,
.wc-time-panel__label,
.wc-read-block__label,
.wc-control-block__label,
.wc-lock-block__head span,
.wc-team-panel__source,
.wc-match-card__id {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wc-muted);
}

.wc-match-card__id {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 61, 52, 0.05);
  border: 1px solid rgba(23, 61, 52, 0.06);
}

.wc-time-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(23, 61, 52, 0.04);
  border: 1px solid rgba(23, 61, 52, 0.06);
}

.wc-time-panel strong {
  display: block;
  margin-top: 6px;
  line-height: 1.5;
}

.wc-team-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.wc-team-panel {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 61, 52, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.wc-team-panel__name {
  font-weight: 700;
  font-size: 1.08rem;
}

.wc-team-panel__placeholder {
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--wc-muted);
}

.wc-team-panel__trait {
  color: var(--wc-muted);
  line-height: 1.5;
  font-size: 0.93rem;
}

.wc-team-panel__read {
  margin: 2px 0 0;
  color: var(--wc-muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.wc-team-panel--knockout {
  align-content: start;
}

.wc-team-panel--pending {
  min-height: 184px;
  place-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.58);
  border-style: dashed;
}

.wc-team-row--draw-layout {
  align-items: stretch;
}

.wc-match-draw-slot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-match-draw-btn {
  min-width: 72px;
  padding: 9px 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 10px 18px rgba(23, 61, 52, 0.08);
}

.wc-vs-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-weight: 700;
  color: #f8f4ea;
  background: linear-gradient(135deg, rgba(21, 51, 44, 0.94), rgba(28, 77, 65, 0.88));
}

.wc-read-block {
  padding: 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(210, 155, 52, 0.12), rgba(255, 251, 243, 0.9));
  border: 1px solid rgba(210, 155, 52, 0.12);
}

.wc-read-block p {
  margin: 8px 0 0;
  line-height: 1.56;
  font-size: 0.92rem;
}

.wc-match-card__resultline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--wc-muted);
  font-size: 0.92rem;
}

.wc-match-card__resultline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(23, 61, 52, 0.05);
  border: 1px solid rgba(23, 61, 52, 0.06);
}

.wc-control-block {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(23, 61, 52, 0.04);
  border: 1px solid rgba(23, 61, 52, 0.06);
}

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

.wc-pick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--wc-ink);
  font-size: 0.92rem;
}

.wc-pick-btn.is-active {
  color: #152821;
  background: linear-gradient(135deg, #f3cb6a, var(--wc-accent));
  box-shadow: 0 10px 20px rgba(210, 155, 52, 0.22);
}

.wc-lock-block {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  color: var(--wc-muted);
  background: linear-gradient(180deg, rgba(23, 61, 52, 0.08), rgba(23, 61, 52, 0.03));
  border: 1px solid rgba(23, 61, 52, 0.08);
}

.wc-lock-block__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.wc-lock-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--wc-forest);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 61, 52, 0.08);
}

.wc-lock-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
}

.wc-lock-row + .wc-lock-row {
  padding-top: 10px;
  border-top: 1px solid rgba(23, 61, 52, 0.08);
}

.wc-lock-row span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wc-lock-row strong {
  line-height: 1.5;
  font-size: 0.92rem;
  color: var(--wc-ink);
}

.wc-lock-blur {
  filter: blur(4px);
  user-select: none;
}

body.wc-body #site-support-assistant {
  right: calc(4px + env(safe-area-inset-right,0px)) !important;
  bottom: calc(10px + env(safe-area-inset-bottom,0px)) !important;
}

body.wc-body #site-support-assistant .site-support-assistant__launcher {
  width: 60px !important;
  height: 60px !important;
}

body.wc-body #site-support-assistant .site-support-assistant__launcher-icon {
  width: 40px !important;
  height: 40px !important;
  border-radius: 14px !important;
}

body.wc-body #site-support-assistant .site-support-assistant__launcher-icon svg {
  width: 28px !important;
  height: 28px !important;
}

body.wc-body #site-support-assistant .site-support-assistant__panel {
  width: min(336px, calc(100vw - 20px)) !important;
}

.wc-lock-block.is-pending .wc-lock-blur {
  filter: none;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .wc-hero__content {
    grid-template-columns: 1fr;
  }

  .wc-hero__copy h1 {
    max-width: none;
  }

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

  .wc-proof-popup__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wc-stat-card--wide {
    grid-column: span 2;
  }

  .wc-group-layout__main {
    padding-right: 0;
  }

  .wc-group-layout__side {
    right: 14px;
    width: min(340px, calc(100vw - 28px));
    max-height: 74vh;
  }
}

@media (max-width: 1040px) {
  .wc-layout {
    grid-template-columns: 1fr;
  }

  .wc-sidebar {
    position: static;
  }

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

  .wc-sidebar__nav {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

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

@media (max-width: 760px) {
  .wc-shell {
    padding: 18px 14px 40px;
  }

  .wc-group-layout__main,
  .wc-group-block,
  .wc-table-card,
  .wc-table-wrap,
  .wc-card-grid,
  .wc-match-card {
    min-width: 0;
    max-width: 100%;
  }

  .wc-group-block,
  .wc-table-card {
    overflow-x: hidden;
  }

  .wc-hero,
  .wc-progress,
  .wc-content,
  .wc-stat-card,
  .wc-sidebar {
    border-radius: 24px;
  }

  .wc-hero {
    padding: 24px 18px 24px;
  }

  .wc-hero__topline,
  .wc-hero__content,
  .wc-section__header,
  .wc-group-block__header,
  .wc-table-card__header,
  .wc-lock-block__head,
  .wc-match-card__top {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .wc-hero__content,
  .wc-dashboard,
  .wc-time-panel,
  .wc-team-row {
    grid-template-columns: 1fr;
  }

  .wc-hero__summary {
    grid-template-columns: 1fr;
  }

  .wc-pricing,
  .wc-pay-modal {
    border-radius: 24px;
  }

  .wc-pay-modal {
    width: min(100vw - 18px, 760px);
    padding: 18px;
  }

  .wc-pay-modal__summary,
  .wc-pay-modal__actions,
  .wc-bundle-card__head,
  .wc-proof-popup__stats {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .wc-proof-popup {
    top: 12px;
    right: 12px;
    width: min(100vw - 24px, 420px);
    padding: 18px 18px 16px;
  }

  .wc-team-row--draw-layout {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
  }

  .wc-team-row--draw-layout .wc-team-panel {
    padding: 12px;
  }

  .wc-team-row--draw-layout .wc-team-panel--pending {
    min-height: 144px;
  }

  .wc-team-row--draw-layout .wc-team-panel__read {
    font-size: 0.84rem;
  }

  .wc-team-row--draw-layout .wc-match-draw-btn {
    min-width: 72px;
    padding: 10px 12px;
  }

  .wc-progress__rail,
  .wc-dashboard,
  .wc-card-grid,
  .wc-value-strip,
  .wc-pricing-grid--single,
  .wc-bundle-grid,
  .wc-proof-popup__stats {
    grid-template-columns: 1fr;
  }

  body.wc-body #site-support-assistant {
    right: calc(6px + env(safe-area-inset-right,0px)) !important;
    bottom: calc(12px + env(safe-area-inset-bottom,0px)) !important;
  }

  body.wc-body #site-support-assistant .site-support-assistant__launcher {
    width: 56px !important;
    height: 56px !important;
  }

  .wc-hero__summary-card,
  .wc-hero__note-card {
    min-height: 0;
  }

  .wc-best-third-board__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .wc-group-layout__side {
    left: 12px;
    right: 12px;
    width: auto;
    max-width: calc(100vw - 24px);
    max-height: 72vh;
  }

  .wc-best-third-fab {
    display: none;
    right: 12px;
    min-width: 132px;
    min-height: 50px;
    max-width: calc(100vw - 24px);
    border-radius: 999px;
    padding: 12px 16px 12px 18px;
    font-size: 0.9rem;
    text-align: center;
    white-space: normal;
  }

  .wc-best-third-fab.is-visible {
    display: inline-flex;
  }

  .wc-stat-card--wide {
    grid-column: span 1;
  }

  .wc-vs-pill {
    width: 100%;
    height: 44px;
    border-radius: 999px;
  }

  .wc-standings-table {
    min-width: 0;
    table-layout: fixed;
  }

  .wc-standings-table th,
  .wc-standings-table td {
    padding: 8px 6px;
    font-size: 0.78rem;
  }

  .wc-standings-table th:nth-child(4),
  .wc-standings-table th:nth-child(5),
  .wc-standings-table th:nth-child(6),
  .wc-standings-table th:nth-child(7),
  .wc-standings-table th:nth-child(8),
  .wc-standings-table th:nth-child(9),
  .wc-standings-table td:nth-child(4),
  .wc-standings-table td:nth-child(5),
  .wc-standings-table td:nth-child(6),
  .wc-standings-table td:nth-child(7),
  .wc-standings-table td:nth-child(8),
  .wc-standings-table td:nth-child(9) {
    display: none;
  }

  .wc-standings-table th:nth-child(1),
  .wc-standings-table td:nth-child(1) {
    width: 12%;
  }

  .wc-standings-table th:nth-child(2),
  .wc-standings-table td:nth-child(2) {
    width: 42%;
  }

  .wc-standings-table th:nth-child(3),
  .wc-standings-table td:nth-child(3) {
    width: 14%;
  }

  .wc-standings-table th:nth-child(10),
  .wc-standings-table td:nth-child(10) {
    width: 32%;
  }

  .wc-table-badge {
    padding: 4px 8px;
    font-size: 0.72rem;
    white-space: normal;
  }

  .wc-mini-table__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (max-width: 540px) {
  .wc-table-card__summary {
    justify-content: flex-start;
  }

  .wc-pick-row,
  .wc-lock-row {
    grid-template-columns: 1fr;
  }

  .wc-lock-row {
    gap: 6px;
  }
}