:root {
  --bg: #f4efe7;
  --bg-strong: #ede5d8;
  --surface: rgba(255, 252, 247, 0.88);
  --surface-strong: #fffdf9;
  --surface-muted: #f7f0e3;
  --border: rgba(43, 35, 29, 0.12);
  --border-strong: rgba(43, 35, 29, 0.2);
  --text: #18130f;
  --text-soft: #5f554c;
  --text-faint: #8b8075;
  --accent: #d95c3d;
  --accent-soft: rgba(217, 92, 61, 0.14);
  --accent-2: #0f7b73;
  --accent-2-soft: rgba(15, 123, 115, 0.12);
  --gold: #ad7d1c;
  --gold-soft: rgba(173, 125, 28, 0.14);
  --green: #257b56;
  --green-soft: rgba(37, 123, 86, 0.12);
  --danger: #bd4036;
  --danger-soft: rgba(189, 64, 54, 0.12);
  --shadow-sm: 0 10px 24px rgba(53, 35, 21, 0.07);
  --shadow-md: 0 18px 48px rgba(53, 35, 21, 0.11);
  --shadow-lg: 0 28px 80px rgba(53, 35, 21, 0.14);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --page-width: min(1280px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family:
    "Avenir Next",
    "Segoe UI",
    "PingFang SC",
    "Hiragino Sans GB",
    "Noto Sans CJK SC",
    sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217, 92, 61, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 123, 115, 0.08), transparent 30%),
    linear-gradient(180deg, #f7f2ea 0%, #f4efe7 42%, #ece3d6 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto auto 0 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 42vw;
  height: 42vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(15, 123, 115, 0.08), transparent 68%);
  transform: translate(-18%, 18%);
}

body::after {
  right: -12vw;
  left: auto;
  bottom: auto;
  top: -8vw;
  width: 34vw;
  height: 34vw;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 92, 61, 0.1), transparent 70%);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4,
.logo-brand,
.page-kicker {
  font-family:
    "Iowan Old Style",
    "Palatino Linotype",
    "Hiragino Mincho ProN",
    "Yu Mincho",
    serif;
}

.ticker-lbl,
.market-btn,
.type-btn,
.type-sep,
.header-nav a,
.areas-label,
.section-kicker,
.drop-count,
.tag,
.price-drop,
.market-meta,
.run-meta,
.filter-group-label,
.status-line,
.footer-note,
.coverage-label,
.pager-status,
.pagination-meta,
.logo-badge {
  font-family:
    ui-monospace,
    "SFMono-Regular",
    "Cascadia Code",
    "JetBrains Mono",
    monospace;
}

.ticker-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  width: 100%;
  min-height: 54px;
  border-bottom: 1px solid rgba(24, 19, 15, 0.08);
  background: rgba(247, 242, 234, 0.8);
  backdrop-filter: blur(18px);
}

.ticker-section {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  overflow: hidden;
}

.ticker-section::before,
.ticker-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 1;
  pointer-events: none;
}

.ticker-section::before {
  left: 0;
  background: linear-gradient(90deg, rgba(247, 242, 234, 0.98), transparent);
}

.ticker-section::after {
  right: 0;
  background: linear-gradient(270deg, rgba(247, 242, 234, 0.98), transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  min-width: max-content;
  white-space: nowrap;
  animation: ticker-scroll 38s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  color: var(--text-soft);
  font-size: 12px;
}

.ticker-dot,
.ticker-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex-shrink: 0;
}

.ticker-dot {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(217, 92, 61, 0.12);
}

.ticker-live-dot {
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(15, 123, 115, 0.12);
}

.ticker-area,
.ticker-price {
  color: var(--text);
  font-weight: 700;
}

.ticker-time {
  color: var(--text-faint);
  font-size: 11px;
}

.ticker-stats {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex: 0 0 360px;
  padding: 8px 20px 8px 12px;
  border-left: 1px solid rgba(24, 19, 15, 0.08);
}

.ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.86);
}

.ticker-pill.live-pill {
  background: rgba(255, 253, 249, 0.94);
  border-color: rgba(15, 123, 115, 0.18);
}

.ticker-val {
  font-size: 12px;
  font-weight: 700;
}

.ticker-val.pink {
  color: var(--accent);
}

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

.ticker-val.cyan {
  color: var(--accent-2);
}

.ticker-lbl {
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header {
  position: relative;
}

.header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(24, 19, 15, 0.12), transparent);
}

.header-row-top,
.header-row-bottom,
.container {
  width: var(--page-width);
  margin: 0 auto;
}

.header-row-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 14px;
}

.logo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.logo-lockup {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.logo-meta {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.logo-topline {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: var(--text);
}

.logo-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(15, 123, 115, 0.18);
  background: rgba(15, 123, 115, 0.08);
  color: var(--accent-2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.logo-note {
  max-width: 620px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.market-switch,
.listing-type-switch,
.header-nav,
.area-pills,
.filters,
.filters-adv,
.pagination-actions {
  display: flex;
  align-items: center;
}

.market-switch,
.listing-type-switch {
  gap: 8px;
}

.market-btn,
.type-btn,
.header-nav a,
.area-pill,
.hiw-toggle,
.filter-btn,
.area-dropdown-btn {
  text-decoration: none;
}

.market-btn,
.type-btn,
.type-sep,
.header-nav a {
  font-size: 12px;
}

.market-btn,
.type-sep,
.header-nav a {
  color: var(--text-faint);
}

.market-btn.is-active,
.type-btn.active {
  color: var(--text);
}

.type-btn {
  padding: 0;
  border: none;
  background: transparent;
  color: var(--text-faint);
  cursor: pointer;
}

.type-btn:hover,
.header-nav a:hover {
  color: var(--accent);
}

.header-nav {
  gap: 18px;
  justify-content: flex-end;
}

.header-nav a {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-row-bottom {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 0 26px;
  overflow-x: auto;
}

.areas-label {
  flex: 0 0 auto;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.area-pills {
  gap: 10px;
  flex-wrap: nowrap;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  color: var(--text-soft);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.area-pill:hover,
.area-pill.active {
  transform: translateY(-1px);
  border-color: rgba(217, 92, 61, 0.26);
  box-shadow: var(--shadow-sm);
  color: var(--text);
}

.area-name {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
}

.drop-count {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(24, 19, 15, 0.06);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
}

.container {
  padding: 8px 0 56px;
}

.page-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.86);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.page-h1 {
  margin-top: 18px;
  font-size: clamp(54px, 9vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.tagline {
  width: min(760px, 100%);
  margin-top: 18px;
  color: var(--text-soft);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.seo-landing {
  width: min(980px, 100%);
  margin-top: 18px;
  color: var(--text-faint);
  font-size: 14px;
  line-height: 1.8;
}

.hiw-bar,
.filters,
.filters-adv,
.list-shell,
.panel-card,
.footer-links {
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.hiw-bar {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hiw-toggle {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hiw-toggle:hover,
.hiw-toggle.active {
  background: rgba(24, 19, 15, 0.03);
}

.hiw-arrow {
  color: var(--accent);
}

.hiw-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease, padding 0.24s ease;
}

.hiw-body[hidden] {
  display: none;
}

.hiw-bar.open .hiw-body {
  max-height: 360px;
  padding: 0 20px 20px;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hiw-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(24, 19, 15, 0.03);
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.hiw-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.filters,
.filters-adv {
  gap: 10px;
  flex-wrap: wrap;
  border-radius: var(--radius-lg);
  margin-top: 16px;
  padding: 14px 16px;
}

.filters-adv {
  margin-top: 12px;
  padding-top: 12px;
}

.filter-btn,
.sort-select,
.bed-toggle,
.price-input,
.area-select,
.area-panel-action {
  font-size: 12px;
}

.filter-btn,
.bed-toggle,
.area-dropdown-btn,
.sort-select,
.price-input,
.area-select,
.area-panel-action {
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--text);
}

.filter-btn,
.bed-toggle,
.area-dropdown-btn,
.area-panel-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  cursor: pointer;
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.filter-btn:hover,
.bed-toggle:hover,
.area-dropdown-btn:hover,
.area-panel-action:hover {
  transform: translateY(-1px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.filter-btn.active {
  background: var(--text);
  border-color: var(--text);
  color: #fffdf9;
}

.quick-filter.active {
  background: var(--accent);
  border-color: var(--accent);
}

.property-filter.active[data-property-type="used-condo"],
.property-filter.active[data-property-type="all"] {
  background: var(--text);
  border-color: var(--text);
}

.property-filter.active[data-property-type="new-condo"] {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.property-filter.active[data-property-type="used-house"] {
  background: var(--gold);
  border-color: var(--gold);
}

.property-filter.active[data-property-type="new-house"] {
  background: var(--green);
  border-color: var(--green);
}

.filter-sep {
  width: 1px;
  height: 24px;
  background: rgba(24, 19, 15, 0.08);
}

.sort-select,
.price-input,
.area-select {
  padding: 0 16px;
  outline: none;
}

.sort-select {
  cursor: pointer;
}

.filters .sort-select {
  margin-left: auto;
}

.filters .sort-select + .sort-select {
  margin-left: 0;
}

.sort-select:focus,
.price-input:focus,
.area-select:focus {
  border-color: rgba(15, 123, 115, 0.35);
  box-shadow: 0 0 0 4px rgba(15, 123, 115, 0.08);
}

.price-input::placeholder,
.search-input::placeholder {
  color: var(--text-faint);
}

.price-input {
  width: 140px;
}

.search-group {
  min-width: 0;
}

.search-input {
  width: 280px;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-group-label {
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.filter-inline-sep {
  color: var(--text-faint);
}

.status-line {
  margin-left: auto;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.area-dropdown {
  position: relative;
}

.area-dropdown-btn {
  gap: 8px;
  padding: 0 16px;
  font-weight: 600;
}

.area-dropdown-btn.active,
.area-dropdown-btn.has-filter {
  border-color: rgba(15, 123, 115, 0.22);
  background: rgba(15, 123, 115, 0.08);
  color: var(--accent-2);
}

.area-dropdown-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.area-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 40;
  width: 300px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: var(--shadow-lg);
}

.area-dropdown-panel.open {
  display: grid;
  gap: 12px;
}

.area-panel-field {
  display: grid;
  gap: 8px;
}

.area-panel-field span {
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.area-panel-action {
  background: rgba(217, 92, 61, 0.08);
  border-color: rgba(217, 92, 61, 0.2);
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.game-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.game-card {
  position: relative;
  padding: 18px 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.game-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
}

.game-card.fire::before {
  background: linear-gradient(90deg, var(--accent), #ee9f67);
}

.game-card.trophy::before {
  background: linear-gradient(90deg, var(--accent-2), #73b4ae);
}

.game-card.trend::before {
  background: linear-gradient(90deg, var(--gold), #e4be73);
}

.game-card.streak::before {
  background: linear-gradient(90deg, #37312c, #8b8075);
}

.game-icon {
  font-size: 18px;
}

.game-title {
  margin-top: 12px;
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.game-value {
  margin-top: 10px;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.game-value.pink {
  color: var(--accent);
}

.game-value.yellow {
  color: var(--accent-2);
}

.game-value.blue,
.game-value.cyan {
  color: var(--gold);
}

.game-sub {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.list-shell {
  margin-top: 20px;
  padding: 24px;
  border-radius: 32px;
}

.list-head,
.panel-headline,
.market-row-head,
.run-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.section-kicker {
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feed-meta {
  color: var(--text-faint);
  font-size: 11px;
  text-align: right;
}

.drops-list,
.coverage-grid,
.market-bars,
.run-list {
  display: grid;
  gap: 12px;
}

.drops-list {
  margin-top: 18px;
}

.drop-card {
  width: 100%;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(220px, 0.34fr) 72px;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--text);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.drop-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 92, 61, 0.22);
  box-shadow: var(--shadow-md);
}

.drop-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(24, 19, 15, 0.05);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.drop-info {
  min-width: 0;
}

.drop-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.28;
}

.drop-location {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.drop-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(24, 19, 15, 0.08);
  background: rgba(24, 19, 15, 0.04);
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag.signal {
  background: var(--accent-soft);
  border-color: rgba(217, 92, 61, 0.18);
  color: var(--accent);
}

.tag.update {
  background: var(--accent-2-soft);
  border-color: rgba(15, 123, 115, 0.18);
  color: var(--accent-2);
}

.tag.meta {
  background: rgba(24, 19, 15, 0.04);
  color: var(--text-soft);
}

.tag.track {
  background: var(--gold-soft);
  border-color: rgba(173, 125, 28, 0.16);
  color: var(--gold);
}

.drop-prices {
  display: grid;
  gap: 10px;
}

.current-price {
  font-size: clamp(26px, 2.7vw, 36px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.drop-detail {
  display: grid;
  gap: 6px;
}

.price-drop {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-drop.big {
  color: var(--danger);
  background: var(--danger-soft);
}

.price-drop.medium {
  color: var(--accent);
  background: var(--accent-soft);
}

.price-drop.small {
  color: var(--accent-2);
  background: var(--accent-2-soft);
}

.price-drop.neutral {
  color: var(--text-soft);
  background: rgba(24, 19, 15, 0.05);
}

.drop-abs {
  color: var(--text-faint);
  font-size: 12px;
  line-height: 1.45;
}

.row-cta {
  display: inline-grid;
  place-items: center;
  align-self: stretch;
  border-radius: 18px;
  border: 1px solid rgba(24, 19, 15, 0.08);
  background: rgba(24, 19, 15, 0.04);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 24px;
  border: 1px dashed rgba(24, 19, 15, 0.14);
  border-radius: 24px;
  color: var(--text-faint);
  text-align: center;
  line-height: 1.7;
}

.list-pagination {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
}

.pagination-meta,
.pager-status {
  color: var(--text-faint);
  font-size: 11px;
}

.pagination-actions {
  gap: 10px;
}

.pager-btn {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-strong);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.pager-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

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

.panel-headline {
  margin-bottom: 18px;
}

.panel-headline h3 {
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.1;
}

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

.coverage-card,
.market-row,
.run-item {
  border: 1px solid rgba(24, 19, 15, 0.08);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.82);
}

.coverage-card {
  padding: 16px;
}

.coverage-label {
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coverage-value {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.coverage-sub {
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.market-row,
.run-item {
  padding: 16px;
}

.market-meta,
.run-meta {
  color: var(--text-faint);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.market-name,
.run-title {
  font-size: 16px;
  font-weight: 700;
}

.bar-track {
  height: 8px;
  margin-top: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(24, 19, 15, 0.08);
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.run-sub {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
  padding: 24px;
  border-radius: 28px;
}

.footer-section h4 {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-section ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-section li {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.55;
}

.footer-note {
  margin-top: 18px;
  color: var(--text-faint);
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pink {
  color: var(--accent);
}

.yellow {
  color: var(--gold);
}

.cyan {
  color: var(--accent-2);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1200px) {
  .game-bar,
  .analytics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .drop-card {
    grid-template-columns: 58px minmax(0, 1fr) minmax(180px, 0.34fr);
  }

  .row-cta {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --page-width: min(100vw - 24px, 1280px);
  }

  .ticker-bar {
    min-height: auto;
    flex-direction: column;
  }

  .ticker-section {
    width: 100%;
  }

  .ticker-item {
    padding: 0 14px;
    font-size: 11px;
  }

  .ticker-stats {
    flex: 1 1 auto;
    width: 100%;
    justify-content: flex-start;
    padding: 8px 12px 12px;
    border-top: 1px solid rgba(24, 19, 15, 0.08);
    border-left: none;
  }

  .header-row-top {
    padding-top: 20px;
  }

  .logo {
    flex-direction: column;
    gap: 16px;
  }

  .logo-meta {
    justify-items: start;
  }

  .header-nav {
    display: none;
  }

  .hiw-steps,
  .coverage-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .filters,
  .filters-adv,
  .area-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .filters::-webkit-scrollbar,
  .filters-adv::-webkit-scrollbar,
  .area-pills::-webkit-scrollbar {
    display: none;
  }

  .filters > *,
  .filters-adv > *,
  .area-pill {
    flex: 0 0 auto;
  }

  .filters .sort-select {
    margin-left: 0;
  }

  .area-dropdown-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 16px;
    top: auto;
    width: auto;
    max-height: 70vh;
    overflow-y: auto;
  }

  .game-bar,
  .analytics-grid {
    grid-template-columns: 1fr;
  }

  .list-head,
  .panel-headline,
  .list-pagination,
  .market-row-head,
  .run-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .feed-meta {
    text-align: left;
  }

  .drop-card {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .drop-rank {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    font-size: 12px;
  }

  .drop-title {
    font-size: 16px;
  }

  .drop-location {
    font-size: 13px;
  }

  .drop-prices {
    min-width: 96px;
    justify-items: end;
  }

  .current-price {
    font-size: 22px;
    text-align: right;
  }

  .drop-detail {
    justify-items: end;
  }

  .drop-abs {
    max-width: 110px;
    text-align: right;
  }

  .pagination-actions {
    width: 100%;
    justify-content: space-between;
  }

  .pager-btn {
    flex: 1 1 0;
  }

  .status-line {
    margin-left: 0;
    min-width: max-content;
  }
}

@media (max-width: 640px) {
  :root {
    --page-width: min(100vw - 16px, 1280px);
  }

  .container {
    padding-bottom: 40px;
  }

  .page-kicker {
    font-size: 11px;
  }

  .page-h1 {
    font-size: 44px;
  }

  .tagline {
    font-size: 17px;
  }

  .seo-landing {
    font-size: 13px;
    line-height: 1.7;
  }

  .hiw-bar,
  .filters,
  .filters-adv,
  .list-shell,
  .panel-card,
  .footer-links {
    border-radius: 22px;
  }

  .filters,
  .filters-adv {
    width: calc(100% + 8px);
    margin-left: -4px;
    padding: 12px 8px;
  }

  .filter-sep {
    display: none;
  }

  .price-input {
    width: 124px;
  }

  .search-input {
    width: 220px;
  }

  .drop-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .drop-rank {
    width: fit-content;
    min-width: 38px;
    height: 34px;
    padding: 0 10px;
  }

  .drop-prices {
    width: 100%;
    justify-items: start;
  }

  .current-price,
  .drop-abs {
    text-align: left;
  }

  .drop-detail {
    justify-items: start;
  }

  .row-cta {
    display: none;
  }

  #sourceSelect {
    display: none;
  }

  .footer-note {
    font-size: 10px;
  }
}
