:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --text: #111111;
  --muted: #5f5f5f;
  --faint: #8a8a8a;
  --red: #cc0000;
  --red-press: #a80000;
  --red-soft: #f7d4d4;
  --line: #cc0000;
  --radius: 10px;
  --max: 860px;
  --font: "Roboto", "Segoe UI", Helvetica, Arial, sans-serif;
  --gap: 18px;
  --surface: #ffffff;
  --inset: #f8ecec;
}
html[data-theme="dark"] {
  --bg: #1c1212;
  --paper: #2a1c1c;
  --text: #f4ecec;
  --muted: #c9b8b8;
  --faint: #9a8888;
  --red: #ef4444;
  --red-press: #dc2626;
  --red-soft: #3a2020;
  --line: #ef4444;
  --surface: #2a1c1c;
  --inset: #211616;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  background: #fff;
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}
html[data-theme="dark"] body {
  background-color: #1a1010;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -5%, rgba(239, 68, 68, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 28% at 100% 15%, rgba(180, 40, 40, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 35% 25% at 0% 90%, rgba(140, 30, 30, 0.06) 0%, transparent 45%),
    linear-gradient(180deg, #221616 0%, #1c1212 50%, #160e0e 100%);
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
button, input, select { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.stats-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px 24px;
  padding: 12px 24px 0;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--text);
}
.site-brand:hover {
  text-decoration: none;
  opacity: 0.92;
}
.site-logo {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  flex-shrink: 0;
}
.site-logo svg {
  width: 18px;
  height: 18px;
}
.site-name {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: end;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}
.site-nav a.active {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.theme-btn {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.theme-btn:hover { color: var(--text); }
.theme-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.theme-btn .icon-sun { display: none; }
html[data-theme="dark"] .theme-btn .icon-moon { display: none; }
html[data-theme="dark"] .theme-btn .icon-sun { display: block; }

.hero { padding: 20px 0 4px; }
.hero h1 {
  margin: 0 0 24px;
  text-align: center;
  font-family: "Oswald", var(--font);
  font-size: clamp(30px, 6.2vw, 62px);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
}
.hero-sticker {
  color: #fff;
  background: linear-gradient(165deg, #ff2222 0%, #cc0000 52%, #a80000 100%);
  padding: 0.04em 0.32em 0.02em;
  border-radius: 14px;
  display: inline-block;
  font-family: "Rowdies", var(--font);
  font-weight: 700;
  font-style: italic;
  transform: rotate(-5deg);
  box-shadow:
    0 5px 0 #7a0000,
    0 10px 22px rgba(204, 0, 0, 0.28);
  margin-right: 0.1em;
  position: relative;
  top: -0.02em;
}
.hero-rest {
  font-family: "Oswald", var(--font);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.02em;
}

.take-spot {
  text-align: center;
  margin: 0 0 10px;
  padding: 4px 0 2px;
}
.take-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 20px;
}
.take-label {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(20px, 3.2vw, 28px);
  font-style: normal;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--text);
}
.take-label span {
  display: inline-block;
  margin-right: 0.35em;
  padding: 0.14em 0.58em 0.12em;
  color: var(--red);
  background: var(--surface);
  border: 2px solid var(--red);
  border-radius: 999px;
  font-family: "Oswald", var(--font);
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transform: none;
  box-shadow: none;
  vertical-align: middle;
}
.take-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.take-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--red-soft);
  color: var(--red);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  box-shadow: none;
}
.take-btn:hover {
  background: #f3c4c4;
}
.take-btn:active {
  transform: scale(0.94);
  box-shadow: none;
}
.take-amt {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  width: fit-content;
  font-family: "Oswald", var(--font);
  font-size: clamp(34px, 6.2vw, 52px);
  font-weight: 700;
  font-style: italic;
  color: var(--red);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.take-amt input {
  width: 1ch;
  min-width: 1ch;
  max-width: 8ch;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  outline: 0;
  font: inherit;
  font-style: italic;
  color: inherit;
  text-align: left;
  appearance: textfield;
}
.take-amt input::-webkit-outer-spin-button,
.take-amt input::-webkit-inner-spin-button {
  appearance: none;
}
.take-hint {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.take-hint b {
  color: var(--red);
  font-weight: 700;
}

.claim {
  background: var(--surface);
  border: 0;
  border-radius: 22px;
  padding: 16px 18px 12px;
  margin: 0;
  box-shadow: 0 12px 32px rgba(160, 30, 30, 0.08);
}
.claim-row {
  display: grid;
  grid-template-columns: 1fr minmax(176px, 220px) auto;
  gap: 12px;
  align-items: stretch;
}
.field-link {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}
.field-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  line-height: 0;
}
.field-ico svg {
  width: 16px;
  height: 16px;
  display: block;
}
.field-link input {
  flex: 1;
  width: auto;
  min-width: 0;
}
.pick {
  position: relative;
  min-width: 0;
}
.pick-btn {
  width: 100%;
  height: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 8px 12px;
  background: var(--inset);
  border: 0;
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
}
.pick-btn:hover {
  background: #fff6f6;
}
html[data-theme="dark"] .pick-btn:hover {
  background: #2f1e1e;
}
.pick.open .pick-btn,
.pick-btn:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--red);
  background: #fff6f6;
}
html[data-theme="dark"] .pick.open .pick-btn,
html[data-theme="dark"] .pick-btn:focus-visible {
  background: #2f1e1e;
}
.pick-ico {
  width: 28px;
  height: 28px;
  border-radius: 0;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--muted);
  background: transparent;
}
.pick-ico svg,
.pick-ico i svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke-width: 1.75;
}
.pick-copy {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pick-name {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pick-hint {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pick-caret {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  margin-right: 2px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.15s ease;
}
.pick.open .pick-caret {
  transform: rotate(225deg) translateY(-2px);
}
.pick-menu {
  position: absolute;
  z-index: 40;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  padding: 6px;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  max-height: 320px;
  overflow: auto;
}
html[data-theme="dark"] .pick-menu {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}
.pick-opt {
  width: 100%;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  margin: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: inherit;
}
.pick-opt-placeholder {
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
}
.pick-opt-placeholder .pick-opt-name {
  font-weight: 500;
  color: var(--muted);
}
.pick-opt:hover,
.pick-opt.is-active {
  background: var(--inset);
}
.pick-opt-ico {
  width: 28px;
  height: 28px;
  border-radius: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: transparent;
}
.pick-opt-ico svg,
.pick-opt-ico i svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke-width: 1.75;
  color: var(--muted);
  stroke: currentColor;
}
.pick-opt.is-active .pick-opt-ico,
.pick-opt.is-active .pick-opt-ico svg {
  color: var(--text);
}
.pick-opt-copy {
  min-width: 0;
}
.pick-opt-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
.pick-opt-fmt {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--muted);
}
.pick-check {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
  opacity: 0;
}
.pick-opt.is-active .pick-check {
  opacity: 1;
}
.field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  margin: 0;
  background: var(--inset);
  border: 0;
  border-radius: 16px;
  padding: 10px 14px;
  cursor: text;
}
.field.field-link {
  flex-direction: row;
  align-items: center;
}
.field:focus-within {
  background: #fff6f6;
  box-shadow: inset 0 0 0 2px var(--red);
}
.field span:not(.field-ico),
.field label {
  display: block;
  font-family: "Oswald", var(--font);
  font-size: 11px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 0;
}
.field input, .field select {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  padding: 0;
  font-size: 16px;
  min-height: 24px;
  border-radius: 0;
  color: var(--text);
}
.field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23cc0000' d='M1.2 1.4L6 6.2l4.8-4.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 18px;
}
.field input::placeholder { color: #b0b0b0; }

.pair {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 14px;
}

.row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: stretch;
}
.row-claim {
  grid-template-columns: 1fr 1.45fr auto;
  align-items: stretch;
  gap: 12px;
}

.btn {
  border: 0;
  border-radius: 16px;
  background: var(--red);
  color: #fff;
  padding: 0 26px;
  min-height: 58px;
  height: auto;
  font-family: "Oswald", var(--font);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: none;
}
.btn:hover { background: var(--red-press); }
.btn:active {
  transform: translateY(1px);
  box-shadow: none;
}

.stepper {
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 8px;
  overflow: hidden;
  min-width: 200px;
}
.stepper button {
  width: 44px;
  height: 52px;
  border: 0;
  background: var(--red-soft);
  color: var(--red);
  cursor: pointer;
  font-size: 18px;
}
.stepper button:hover { background: #f3c4c4; }
.stepper .amt {
  flex: 1;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
}

.btn.ghost {
  background: var(--surface);
  border: 2px solid var(--red);
  color: var(--red);
  box-shadow: none;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}
.btn.ghost:hover { background: var(--red-soft); }

.hint {
  margin: 10px 0 0;
  text-align: center;
  color: var(--faint);
  font-size: 12px;
  font-style: normal;
}
.claim-preview {
  margin: 12px 0 0;
  text-align: center;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}
.claim-preview b {
  color: var(--red);
  font-weight: 700;
}
.claim-preview.warn {
  color: var(--red);
}

.cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 28px 0;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--red);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 6px 16px 6px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}
.chip-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--red);
}
.chip-ico svg {
  width: 14px;
  height: 14px;
}
.chip:hover { border-color: var(--red); color: var(--red); }
.chip:hover .chip-ico { color: var(--red); }
.chip.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.chip.active .chip-ico { color: #fff; }

.board {
  display: grid;
  gap: 10px;
  padding: 0 0 80px;
}
.rank-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 8px 0 4px;
}
.rank-divider::before,
.rank-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: var(--red-soft);
}
.rank-divider span {
  flex-shrink: 0;
  padding: 5px 16px;
  border: 2px solid var(--red);
  border-radius: 999px;
  background: var(--surface);
  font-family: "Oswald", var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  text-transform: uppercase;
}
html[data-theme="dark"] .rank-divider::before,
html[data-theme="dark"] .rank-divider::after {
  background: #4a3030;
}
html[data-theme="dark"] .rank-divider span {
  background: var(--paper);
  border-color: var(--red);
  color: var(--red);
}
.card {
  display: grid;
  grid-template-columns: 72px 80px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: var(--card-h, 102px);
  padding: 12px 20px;
  background: var(--paper);
  border: 2px solid #e07a7a;
  border-radius: 20px;
  cursor: pointer;
}
.card:nth-child(2n) { border-color: #cc0000; }
.card:nth-child(3n) { border-color: #d44a3a; }
.card:nth-child(4n) { border-color: #b42318; }
.card:hover { background: var(--inset); }
.card.top {
  border-width: 2px;
  padding: 12px 20px;
  background: var(--surface);
}
.card.top .rank { font-size: 36px; color: var(--text); }

.board .card.gold,
.board .card.silver,
.board .card.bronze {
  border-width: 2px;
}
.board .card.gold {
  border-color: #cc0000;
  background: linear-gradient(135deg, #ffc8c8 0%, #fff0f0 68%);
  box-shadow: none;
}
.board .card.silver {
  border-color: #d44a3a;
  background: linear-gradient(135deg, #ffe0e0 0%, #fff5f5 72%);
  box-shadow: none;
}
.board .card.bronze {
  border-color: #e07a7a;
  background: linear-gradient(135deg, #fff0f0 0%, #ffffff 78%);
  box-shadow: none;
}
.board .card.gold:hover {
  background: linear-gradient(135deg, #ffb8b8 0%, #ffe8e8 68%);
}
.board .card.silver:hover {
  background: linear-gradient(135deg, #ffd6d6 0%, #fff2f2 72%);
}
.board .card.bronze:hover {
  background: linear-gradient(135deg, #ffe8e8 0%, #fff8f8 78%);
}

html[data-theme="dark"] .board .card.gold,
html[data-theme="dark"] .board .card.silver,
html[data-theme="dark"] .board .card.bronze,
html[data-theme="dark"] .board .card.gold:hover,
html[data-theme="dark"] .board .card.silver:hover,
html[data-theme="dark"] .board .card.bronze:hover,
html[data-theme="dark"] .card.top {
  background: var(--paper);
}


.rank {
  font-family: "Oswald", var(--font);
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--red);
}
.thumb {
  width: 80px;
  height: 48px;
  border-radius: 6px;
  background: #fce8e8;
  border: 1px solid #f0c8c8;
  overflow: hidden;
  position: relative;
}
.thumb.sq { width: 40px; height: 40px; border-radius: 8px; }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.play i {
  width: 22px;
  height: 16px;
  background: var(--red);
  border-radius: 3px;
  position: relative;
}
.play i::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
}
.meta h3 {
  margin: 0;
  font-family: "Syne", var(--font);
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.meta-cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.meta-cat svg,
.meta-cat i svg {
  width: 13px;
  height: 13px;
  stroke-width: 2;
  color: var(--muted);
  flex-shrink: 0;
}
.meta p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.badge {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 4px;
  padding: 1px 5px;
  vertical-align: middle;
}
.stats { text-align: right; white-space: nowrap; }
.stats .money {
  font-family: "Oswald", var(--font);
  font-weight: 700;
  font-size: 28px;
  font-style: normal;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: var(--red);
}
.stats .clicks { color: var(--muted); font-size: 13px; }

.empty {
  padding: 48px 0;
  text-align: center;
  color: var(--muted);
  background: #fff;
  border: 2px solid #e07a7a;
  border-radius: 10px;
}

.back {
  display: inline-block;
  margin: 28px 0 8px;
  color: var(--red);
  font-size: 14px;
}
.page { padding: 0 0 80px; }
.page h1 { margin: 12px 0 16px; letter-spacing: -0.03em; }
.page h2 { margin: 28px 0 10px; font-size: 20px; }
.page p, .page li { color: var(--muted); }
.page ul { padding-left: 18px; }
.page li { margin: 8px 0; }

.doc .cat-hero p {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.55;
  max-width: 640px;
}
.doc h2 {
  margin: 36px 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.doc ul {
  margin: 0;
  padding-left: 1.2em;
}
.doc li {
  margin: 12px 0;
  line-height: 1.55;
}
.doc a { color: var(--red); }

.rules-body .stats-head {
  grid-template-columns: 1fr auto;
}
.rules-title {
  margin: 28px 0 16px;
  font-family: var(--font);
  font-size: clamp(36px, 6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  font-style: normal;
  text-transform: none;
  white-space: normal;
  color: var(--text);
}
.rules-lead {
  margin: 0 0 8px;
  max-width: 640px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}
.rules-doc h2 {
  margin: 40px 0 14px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.rules-doc ul {
  margin: 0;
  padding-left: 1.2em;
  max-width: 680px;
}
.rules-doc li {
  margin: 12px 0;
  line-height: 1.6;
  color: var(--muted);
}
.rules-doc p {
  max-width: 680px;
  line-height: 1.55;
}

.mark {
  font-style: normal;
  color: var(--red);
  font-weight: 500;
}
.about-date {
  color: var(--text) !important;
  font-weight: 500;
  margin: 0 0 18px !important;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 8px 0 28px;
}
.about-stat {
  background: var(--surface);
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 8px 20px rgba(160, 40, 40, 0.06);
}
.about-stat b {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}
.about-stat .ico {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1a9d3c;
  flex-shrink: 0;
}
.about-stat .ico.cash {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--red);
  font-family: "Oswald", var(--font);
  font-size: 22px;
  font-weight: 700;
}
.about-stat span {
  display: block;
  margin-top: 6px;
  color: var(--faint);
  font-size: 13px;
}
.about-foot {
  margin-top: 48px !important;
  font-size: 13px;
}

.why-bid {
  margin-top: 20px;
}

.pitch-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0 0 24px;
}
.pitch-stat {
  text-align: center;
  padding: 20px 14px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid #f0d0d0;
  box-shadow: 0 8px 24px rgba(160, 40, 40, 0.06);
  opacity: 0;
  animation: pitch-in 0.5s ease forwards;
  animation-delay: calc(var(--i) * 0.12s + 0.2s);
}
.pitch-stat b {
  display: block;
  font-family: "Oswald", var(--font);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  font-style: italic;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.pitch-stat span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}
@keyframes pitch-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.pitch-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
}
.pitch-path::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--red-soft), var(--red), var(--red-soft));
  z-index: 0;
}
.pitch-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8px 6px 0;
  opacity: 0;
  animation: pitch-in 0.5s ease forwards;
  animation-delay: calc(var(--i) * 0.12s + 0.5s);
}
.pitch-dot {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: "Oswald", var(--font);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 0 0 5px var(--surface), 0 6px 16px rgba(204, 0, 0, 0.25);
}
.pitch-step strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.pitch-step p {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--muted);
}

html[data-theme="dark"] .pitch-stat {
  border-color: #4a3030;
}
html[data-theme="dark"] .pitch-dot {
  box-shadow: 0 0 0 5px var(--paper), 0 6px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 720px) {
  .pitch-stats {
    grid-template-columns: 1fr;
  }
  .pitch-path {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }
  .pitch-path::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pitch-stat,
  .pitch-step {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

html[data-theme="dark"] .about-stat {
  border-color: #4a3030;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin: 24px 0 32px;
}
.stat {
  background: #fff;
  border: 2px solid #e07a7a;
  border-radius: 10px;
  padding: 16px;
}
.stat:nth-child(2n) { border-color: var(--red); }
.stat:nth-child(3n) { border-color: #d44a3a; }
.stat b { display: block; font-size: 26px; letter-spacing: -0.03em; }
.stat span { color: var(--muted); font-size: 13px; }

.bars { display: grid; gap: 12px; }
.bar-row {
  display: grid;
  grid-template-columns: 28px 1fr 64px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}
.bar {
  height: 8px;
  background: #f7d4d4;
  border-radius: 99px;
  overflow: hidden;
}
.bar i { display: block; height: 100%; background: var(--red); }

.modal {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  display: none;
  place-items: center;
  z-index: 40;
  padding: 20px;
}
.modal.open { display: grid; }
.sheet {
  width: min(440px, 100%);
  background: var(--surface);
  border: 2px solid var(--red);
  border-radius: 12px;
  padding: 22px;
}
.sheet h2 { margin: 0 0 8px; }
.sheet p { color: var(--muted); margin: 0 0 16px; font-size: 14px; }
.pay-box {
  background: #fff;
  border: 2px solid #e07a7a;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 14px;
  font-size: 14px;
}
.pay-box div { display: flex; justify-content: space-between; margin: 6px 0; }
.demo { color: var(--faint); font-size: 12px; margin-bottom: 16px; }
.actions { display: flex; gap: 12px; justify-content: flex-end; }

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border: 2px solid var(--red);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  display: none;
  z-index: 50;
}
.toast.show { display: block; }

.concept-grid { display: grid; gap: 16px; }
.shot {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  background: #fff;
  border: 2px solid #e07a7a;
  border-radius: 10px;
  padding: 16px;
}
.shot:nth-child(2n) { border-color: var(--red); }
.shot b { display: block; margin-bottom: 4px; color: var(--text); }
.timecode { color: var(--red); font-weight: 700; font-size: 13px; }

.wrap.wide {
  width: min(980px, calc(100% - 40px));
}
.cat-hero {
  padding: 28px 0 8px;
}
.cat-hero h1 {
  margin: 0 0 8px;
  font-family: var(--font);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  font-style: normal;
  text-transform: none;
  white-space: normal;
}
.cat-hero p {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 0 80px;
}
.cat-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  color: #2d2d2d;
  text-decoration: none;
  box-shadow: none;
}
.cat-tile:hover {
  border-color: #e8d0cc;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(180, 50, 50, 0.06);
}
html[data-theme="dark"] .cat-tile {
  background: #fff;
  border-color: #eee;
  color: #2d2d2d;
}
.cat-ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff1f0;
  color: #d97767;
}
.cat-ico svg,
.cat-ico [data-lucide] {
  width: 20px;
  height: 20px;
}
.cat-tile b {
  font-size: 15px;
  font-weight: 700;
  color: #2d2d2d;
  letter-spacing: -0.015em;
}

@media (max-width: 720px) {
  .stats-head {
    grid-template-columns: 1fr auto;
  }
  .hero h1 {
    white-space: normal;
    font-size: clamp(24px, 8vw, 40px);
    line-height: 1.12;
  }
  .hero-sticker {
    transform: rotate(-4deg);
  }
  .row, .pair, .row-claim, .claim-row { grid-template-columns: 1fr; }
  .pick-menu { left: auto; right: 0; width: min(320px, 90vw); }
  .take-row { flex-direction: column; gap: 6px; }
  .card { grid-template-columns: 40px 56px 1fr; }
  .stats { grid-column: 2 / -1; text-align: left; }
  .shot { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
}
@media (min-width: 721px) and (max-width: 900px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
}
