:root {
  --bg: #0b0d12;
  --bg-elev: #12151c;
  --bg-card: #171a22;
  --line: rgba(244, 241, 234, 0.1);
  --text: #f4f1ea;
  --muted: #9b9588;
  --accent: #e8b86d;
  --accent-2: #7dd3c7;
  --danger: #f07178;
  --radius: 16px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  --header-h: 68px;
  --max: 1280px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Outfit, system-ui, sans-serif;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); }
button, input, select, textarea { font: inherit; color: inherit; }
select, input { max-width: 100%; }

body.drawer-open { overflow: hidden; }

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip-link:focus {
  position: absolute;
  z-index: 80;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  background: var(--accent);
  color: #1a1208;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 10px 16px;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
  background: rgba(11, 13, 18, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-nav, .header-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.header-nav .btn, .header-actions .btn { white-space: nowrap; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand img { width: 40px; height: 40px; border-radius: 12px; }
.brand strong {
  display: block;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
}
.brand small { color: var(--muted); font-size: 0.75rem; }

.header-nav, .header-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.header-nav a {
  height: 40px;
  padding: 0 14px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.header-nav a[aria-current="page"],
.header-nav a:hover {
  background: var(--text);
  color: #1a1208;
}

.search { position: relative; width: 100%; }
.search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
}
.search input {
  width: 100%;
  height: 44px;
  padding: 0 16px 0 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  outline: none;
  font-size: 16px;
}
.search input:focus {
  border-color: color-mix(in srgb, var(--accent) 60%, transparent);
}
.search kbd {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 2px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.72rem;
}

.feed-search { margin: 0; }

.feed-toolbar,
.search-row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
  min-width: 0;
}

.feed-toolbar .sort-wrap {
  flex: 1;
  min-width: 0;
  margin: 0;
}
.feed-toolbar .sort-wrap select { width: 100%; }
.feed-toolbar .side-fav {
  width: auto;
  height: 44px;
  flex: 0 0 auto;
}
#cat-drawer-btn { display: none; }

.search-row .search { flex: 1; min-width: 0; }
.surprise-btn { flex: 0 0 auto; white-space: nowrap; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 34;
  background: rgba(0, 0, 0, 0.5);
}

.btn {
  height: 40px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1208;
  font-weight: 600;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn.ghost.on,
.side-fav.on {
  background: color-mix(in srgb, var(--danger) 18%, transparent);
  border-color: color-mix(in srgb, var(--danger) 50%, transparent);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 280px;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero.compact { min-height: 220px; }
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 13, 18, 0.92) 0%, rgba(11, 13, 18, 0.5) 55%, rgba(11, 13, 18, 0.2)),
    linear-gradient(180deg, transparent 20%, rgba(11, 13, 18, 0.96));
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px 32px;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
}
.hero h1 {
  max-width: 18ch;
  margin: 0 0 10px;
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}
.hero-copy p { max-width: 54ch; color: #d9d2c6; line-height: 1.5; }

.shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr) 300px;
  gap: 24px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 16px 24px 80px;
}

main { min-width: 0; }

.cat-rail {
  position: sticky;
  top: calc(var(--header-h) + 12px);
  align-self: start;
  display: grid;
  gap: 10px;
  max-height: calc(100vh - var(--header-h) - 24px);
  overflow: auto;
  padding-right: 4px;
}

.side-fav {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--danger) 45%, var(--line));
  background: rgba(240, 113, 120, 0.08);
  cursor: pointer;
  font-weight: 600;
}
.side-fav span { color: var(--danger); }
.side-fav em {
  margin-left: auto;
  font-style: normal;
  color: var(--muted);
}

.sort-wrap {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
}
.sort-wrap select {
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}

.side-label {
  margin: 10px 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.cat-list { display: grid; gap: 2px; }

.cat-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 7px 8px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--text);
}
.cat-item em { font-style: normal; color: var(--muted); font-size: 0.82rem; }
.cat-item.on { background: rgba(255, 255, 255, 0.06); }
.cat-item.on em { color: var(--text); }

.cat-glyph {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #111;
  font-size: 0.78rem;
  font-weight: 700;
}

.daily-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 22px;
}

.sell-cta {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, var(--line));
  background: linear-gradient(160deg, rgba(232, 184, 109, 0.14), var(--bg-card));
  color: inherit;
  text-decoration: none;
}
.sell-cta h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
}
.sell-cta p { margin: 0; color: var(--muted); }
.sell-cta .btn { margin-top: 10px; width: max-content; }

.empty-feature {
  margin: 0 0 18px;
  padding: 16px;
  border-radius: 14px;
  border: 1px dashed var(--line);
  color: var(--muted);
}

.feed-card {
  position: relative;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--line);
  content-visibility: auto;
  contain-intrinsic-size: 140px;
}
.feed-card.gotd-card {
  border-color: var(--accent-2);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent-2) 35%, transparent);
}

.gotd-label,
.sponsor-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.gotd-label { color: var(--accent-2); }
.sponsor-label { color: var(--muted); }

.feed-link {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.feed-card .cover {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 12px;
  overflow: hidden;
}
.feed-card.gotd-card .cover {
  width: 148px;
  height: 148px;
}
.feed-card.gotd-card .feed-link {
  grid-template-columns: 148px minmax(0, 1fr);
}

.cover-art {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 18%, hsl(var(--h) 72% 62% / 0.95), transparent 42%),
    linear-gradient(160deg, hsl(var(--h) 38% 18%), hsl(calc(var(--h) + 24) 42% 9%));
}
.cover-preview {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.cover-preview.on { opacity: 1; }
.cover:has(.cover-preview.on) .cover-mark { opacity: 0; }
.cover-mark {
  position: absolute;
  left: 8px;
  bottom: 8px;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.6rem;
  color: #fff;
}
.cover-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4);
  padding: 3px;
}
.feed-card .desc { display: none; }

.feed-copy { min-width: 0; }
.feed-copy h3 { margin: 0 0 6px; font-size: 1.12rem; }
.feed-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.feed-title { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }

.cat-tag {
  padding: 3px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cat) 22%, transparent);
  color: var(--cat);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.feed-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}
.rating span { margin-left: 8px; color: var(--muted); font-size: 0.8rem; }
.star {
  border: 0;
  background: transparent;
  color: #4b5563;
  cursor: pointer;
  font-size: 1.05rem;
  padding: 0 1px;
}
.star.on { color: #fbbf24; }

.feed-card .fav {
  position: static;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
}
.feed-card .fav.on {
  color: var(--danger);
  background: rgba(244, 241, 234, 0.92);
}

.result-meta, .fine-print, .section-head p { color: var(--muted); }
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 12px;
}
.section-head h2 {
  margin: 0;
  font-family: Fraunces, Georgia, serif;
}

.ad-slot {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin: 16px 0;
}
.ad-label {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ad-frame {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 970px;
  border: 1px dashed color-mix(in srgb, var(--accent) 35%, var(--line));
  border-radius: 12px;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 10px, rgba(255,255,255,.04) 10px 20px);
  color: var(--muted);
  text-align: center;
}
.ad-frame.live {
  border: 0;
  background: transparent;
  padding: 0;
  min-height: 0;
}
.ad-frame.live.leaderboard { min-height: 90px; }
.ad-frame.live.rectangle,
.ad-frame.live.skyscraper { aspect-ratio: auto; }
.ad-frame.leaderboard { min-height: 90px; width: 100%; }
.ad-frame.rectangle { width: min(300px, 100%); aspect-ratio: 300 / 250; height: auto; }
.ad-frame.skyscraper { width: min(300px, 100%); aspect-ratio: 300 / 600; height: auto; }
.ad-frame.mobile-banner { width: min(320px, 100%); height: 50px; }
.ad-leaderboard { max-width: 1440px; margin: 16px auto 4px; padding: 0 24px; }
.ad-rail { display: grid; align-content: start; gap: 20px; padding-top: 8px; }
.ad-rail .ad-slot, .cat-rail .ad-slot { margin: 12px 0 0; }
.ad-mobile-sticky {
  display: none;
  position: sticky;
  bottom: 0;
  z-index: 30;
  margin: 0;
  padding: 8px;
  background: rgba(11, 13, 18, 0.92);
  border-top: 1px solid var(--line);
}

.empty { padding: 48px 12px; text-align: center; color: var(--muted); }

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 24px 96px;
  border-top: 1px solid var(--line);
}
.site-footer p { max-width: 68ch; line-height: 1.5; }

.sheet {
  width: min(460px, calc(100% - 24px));
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-elev);
  color: var(--text);
  padding: 22px;
}
.sheet::backdrop { background: rgba(0, 0, 0, 0.55); }
.sheet h2 { font-family: Fraunces, Georgia, serif; margin-top: 0; }
.sheet textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg);
}
.dialog-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 90;
  transform: translateX(-50%) translateY(20px);
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--text);
  color: #1a1208;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.submit-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.plans { display: grid; gap: 12px; margin: 18px 0; }
.plan {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  text-align: left;
  cursor: pointer;
}
.plan.on { border-color: var(--accent); }
.plan b { font-size: 1.4rem; font-family: Fraunces, Georgia, serif; }
.form-grid { display: grid; gap: 12px; }
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
}

@media (max-width: 1180px) {
  .shell { grid-template-columns: 220px minmax(0, 1fr); padding: 16px; }
  .ad-rail { display: none; }
  .daily-strip { grid-template-columns: 1fr; }
  .hero-copy { padding: 40px 16px 28px; }
  .article-grid.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  .site-header { gap: 8px; }
  .brand small { display: none; }
  .header-actions .btn { height: 36px; padding: 0 12px; font-size: 0.88rem; }
  .hero.compact { min-height: 0; }
  .hero-copy { padding: 24px 16px 18px; }
  .hero h1 { max-width: none; font-size: 1.55rem; }
  .ad-leaderboard { padding: 0 16px; margin: 12px auto; }
  .ad-frame.leaderboard { min-height: 50px; }
  #cat-drawer-btn { display: inline-grid; }
  .feed-toolbar .side-fav .fav-label { display: none; }
  .cat-rail {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(320px, 88vw);
    z-index: 36;
    padding: 20px 16px;
    padding-top: calc(var(--header-h) + 12px);
    background: var(--bg);
    border-right: 1px solid var(--line);
    transform: translateX(-110%);
    transition: transform 0.2s ease;
    max-height: none;
  }
  .cat-rail.open { transform: none; }
  .shell { grid-template-columns: 1fr; padding: 12px 12px 100px; }
  .daily-strip { grid-template-columns: 1fr; }
  .feed-card.gotd-card .feed-link,
  .feed-link { grid-template-columns: 76px minmax(0, 1fr); gap: 10px; }
  .feed-card .cover,
  .feed-card.gotd-card .cover { width: 76px; height: 76px; }
  .feed-copy h3 { font-size: 1rem; }
  .section-head { flex-direction: column; align-items: start; }
  .ad-mobile-sticky {
    display: grid;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }
  .toast { bottom: 72px; }
  .search kbd { display: none; }
  .surprise-btn { padding: 0 10px; }
  .site-footer { padding: 24px 16px 96px; }
}

.blog-wrap,
.article-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
.blog-wrap h1,
.article-head h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.12;
  margin: 0 0 12px;
}
.lede { color: var(--muted); line-height: 1.5; max-width: 58ch; }
.blog-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 20px;
}
.chip {
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-elev);
  color: inherit;
  text-decoration: none;
  display: inline-grid;
  place-items: center;
}
.chip.on,
.chip:hover {
  background: var(--text);
  color: #1a1208;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.article-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.post-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  min-width: 0;
}
.post-cover {
  padding: 18px 16px;
  background: linear-gradient(160deg, hsl(var(--h) 45% 28%), hsl(calc(var(--h) + 24) 40% 12%));
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.post-copy { padding: 14px 16px 16px; }
.post-copy h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.3;
}
.post-copy p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.post-meta { margin: 0 0 6px; color: var(--muted); font-size: 0.78rem; }
.article-body { line-height: 1.65; }
.article-body h2 {
  font-family: Fraunces, Georgia, serif;
  margin: 1.6em 0 0.6em;
}
.article-body p,
.article-body li { color: #ddd6c8; }
.article-games {
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.article-cta { margin-top: 28px; }
.related { margin-top: 48px; }
.related h2 { font-family: Fraunces, Georgia, serif; }
.blog-tease { margin: 8px 0 28px; }

.jump {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  padding: 14px 16px;
  margin: 8px 0 28px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.jump p {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.jump ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.jump a { color: inherit; }

.pick {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 18px;
  margin: 28px 0;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
.pick-cover { color: inherit; text-decoration: none; min-width: 0; }
.pick .cover {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
}
.pick .cover .desc { display: none; }
.pick-copy { min-width: 0; }
.pick-copy h3,
.pick-copy h2 {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-family: Fraunces, Georgia, serif;
}
.pick-copy h3 a,
.pick-copy h2 a { color: inherit; text-decoration: none; }
.pick-copy h3 a:hover,
.pick-copy h2 a:hover { text-decoration: underline; }
.pick-hook {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.92rem;
}
.pick-meta {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.8rem;
}
.pick-copy .btn { margin-top: 8px; }
.pick-list .pick { margin: 16px 0; }

.board-score {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 0.9rem;
}
.board-score-stars {
  position: relative;
  display: inline-block;
  color: #4b5563;
  letter-spacing: 1px;
  line-height: 1;
}
.board-score-stars::after {
  content: "★★★★★";
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--score) / 5 * 100%);
  overflow: hidden;
  color: #fbbf24;
  white-space: nowrap;
}
.board-score span { color: var(--muted); }

.faq h3 {
  font-size: 1.05rem;
  margin: 1.4em 0 0.4em;
}
.article-body a { color: #f2d7a4; }

@media (max-width: 860px) {
  .article-grid,
  .article-grid.compact { grid-template-columns: 1fr; }
  .pick { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .header-actions .btn { font-size: 0.8rem; padding: 0 10px; }
  .rating span { width: 100%; margin-left: 0; }
  .feed-card { padding: 12px; }
  .plans { grid-template-columns: 1fr; }
  .surprise-btn { padding: 0 10px; font-size: 0.85rem; }
}
