:root {
  --bg: #0f0b10;
  --bg2: #1c1520;
  --card: #1f1823;
  --line: #3a2d3f;
  --text: #fbf1f5;
  --muted: #b9a8b4;
  --accent: #ff2e74;
  --accent-2: #ff8fb8;
  --hot: #ff6a2b;
  --grad: linear-gradient(100deg, #ff2e74 0%, #ff4f52 55%, #ff8a2b 100%);
  --sale: #ff3b3b;
  --time: #ffb020;
  --x: #e7e9ea;
  --mf: #ff8a3d;
  --radius: 12px;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(900px 420px at 15% -80px, rgba(255, 46, 116, .22), transparent 70%),
    radial-gradient(700px 380px at 95% -60px, rgba(255, 138, 43, .16), transparent 70%),
    var(--bg);
  background-repeat: no-repeat;
  color: var(--text);
  font: 14px/1.65 system-ui, -apple-system, "Hiragino Sans", "Noto Sans JP", "Yu Gothic UI", sans-serif;
}
html.gated body > :not(.age-gate) { filter: blur(18px); pointer-events: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.muted { color: var(--muted); }
small { font-size: .72em; color: var(--muted); font-weight: 600; margin-left: .5em; }

/* header */
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(15, 11, 16, .92); backdrop-filter: blur(10px); }
.site-header::after { content: ""; display: block; height: 2px; background: var(--grad); }
.head-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 10px; }
.logo { font-weight: 900; font-size: 23px; letter-spacing: .01em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo-sub { font-size: 10.5px; font-weight: 800; color: #fff; margin-left: 8px; background: var(--grad); border-radius: 999px; padding: 2px 8px; vertical-align: 4px; -webkit-text-fill-color: #fff; }
.pr-note { font-size: 11px; color: var(--muted); }
.nav { display: flex; gap: 6px; overflow-x: auto; padding-bottom: 9px; padding-top: 7px; scrollbar-width: none; }
.nav a { flex: none; padding: 6px 14px; border-radius: 999px; color: var(--muted); font-weight: 700; border: 1px solid transparent; }
.nav a:hover { color: var(--text); border-color: var(--line); }
.nav a.on { background: var(--grad); color: #fff; box-shadow: 0 4px 14px rgba(255, 46, 116, .35); }
@media (max-width: 719px) {
  .nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; overflow: visible; padding-top: 8px; }
  .nav a { text-align: center; padding: 7px 2px; font-size: 12.5px; white-space: nowrap; background: var(--bg2); border-color: var(--line); border-radius: 10px; }
  .nav a.on { border-color: transparent; }
  .site-header { position: static; }
  .feature { scroll-margin-top: 12px; }
}

/* hero */
.hero {
  position: relative; overflow: hidden;
  margin: 18px 0 8px; padding: 22px 20px 18px;
  border-radius: 18px;
  background:
    radial-gradient(500px 240px at 100% 0%, rgba(255, 138, 43, .35), transparent 70%),
    linear-gradient(135deg, #3a0c24 0%, #25101f 55%, #1a1017 100%);
  border: 1px solid rgba(255, 46, 116, .35);
  box-shadow: 0 10px 40px rgba(255, 46, 116, .15);
}
.hero-kicker { display: inline-flex; align-items: center; gap: 6px; margin: 0 0 10px; padding: 4px 12px; border-radius: 999px; background: rgba(255, 46, 116, .18); color: var(--accent-2); font-weight: 800; font-size: 12px; letter-spacing: .03em; }
.flame { width: 8px; height: 8px; border-radius: 50%; background: var(--hot); box-shadow: 0 0 10px var(--hot); animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.hero h1 { font-size: 23px; line-height: 1.4; margin: 0 0 10px; font-weight: 900; }
.hero h1 em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { color: #e6d6df; margin: 0 0 14px; font-size: 13.5px; max-width: 760px; }
.hero-lead strong { color: #fff; }
.hero-points { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-points li { padding: 6px 12px 6px 28px; position: relative; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); font-size: 12.5px; font-weight: 700; }
.hero-points li::before { content: "✓"; position: absolute; left: 11px; color: var(--accent-2); font-weight: 900; }
.hero-points b { color: var(--accent-2); }
.hero-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin: 0; }
.hero-stats div { background: rgba(0, 0, 0, .28); border-radius: 10px; padding: 8px 10px; }
.hero-stats dt { font-size: 11px; color: var(--muted); font-weight: 700; }
.hero-stats dd { margin: 0; font-size: 20px; font-weight: 900; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats dd.small { font-size: 13px; padding-top: 5px; }
@media (min-width: 720px) { .hero { padding: 30px 32px 24px; } .hero h1 { font-size: 30px; } }
@media (max-width: 719px) {
  .pc { display: none; }
  .hero { padding: 16px 14px 14px; margin-top: 12px; }
  .hero h1 { font-size: 19px; }
  .hero-lead { font-size: 12.5px; margin-bottom: 10px; }
  .hero-points { gap: 6px; margin-bottom: 12px; }
  .hero-points li { font-size: 11.5px; padding: 4px 10px 4px 24px; }
  .hero-points li::before { left: 9px; }
  .hero-stats { gap: 6px; }
  .hero-stats div { padding: 6px 8px; }
  .hero-stats dt { font-size: 10px; }
  .hero-stats dd { font-size: 16px; }
  .hero-stats dd.small { font-size: 11px; padding-top: 3px; }
}
.lead { color: var(--muted); margin: 0 0 14px; }

/* sections */
.sec { margin: 34px 0; }
.sec-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); position: relative; }
.sec-head::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 72px; height: 3px; border-radius: 3px; background: var(--grad); }
.sec-head h1, .sec-head h2 { margin: 0; font-size: 20px; font-weight: 900; display: flex; align-items: center; gap: 8px; }
.ico { display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 10px; background: rgba(255, 46, 116, .15); font-size: 17px; }
.page-head { margin-top: 24px; }
.page-head h1 { font-size: 23px; }
.tabs { display: flex; background: var(--bg2); border: 1px solid var(--line); border-radius: 999px; padding: 3px; }
.tabs a { padding: 5px 14px; border-radius: 999px; color: var(--muted); font-weight: 700; font-size: 13px; }
.tabs a.on { background: var(--grad); color: #fff; box-shadow: 0 3px 12px rgba(255, 46, 116, .35); }
.more { display: block; text-align: center; margin: 18px auto 0; padding: 11px; border-radius: 999px; font-weight: 800; color: #fff; max-width: 340px; background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--grad) border-box; border: 2px solid transparent; }
.more::after { content: " →"; }
.more:hover { background: var(--grad) border-box; }
.empty { color: var(--muted); padding: 24px 0; }

/* grid & card */
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-items: start; }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 960px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } }
.card { background: var(--card); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.player { position: relative; background: #000; cursor: pointer; overflow: hidden; }
.card .player { aspect-ratio: 4 / 5; }
.card .player.is-h img { object-position: center; }
.player img, .player video { width: 100%; height: 100%; object-fit: cover; }
.player video { object-fit: contain; background: #000; }
.play { position: absolute; inset: 0; margin: auto; width: 44px; height: 44px; border-radius: 50%; background: rgba(0,0,0,.55); display: grid; place-items: center; font-size: 16px; padding-left: 3px; pointer-events: none; }
.player.playing .play, .player.playing .badges, .player.playing .likes, .player.playing .rank { display: none; }
.rank { position: absolute; top: 0; left: 0; min-width: 30px; padding: 3px 7px; background: rgba(0,0,0,.72); font-weight: 800; border-bottom-right-radius: 8px; text-align: center; }
.rank.top { background: var(--grad); }
.grid .card:nth-child(1) .rank.top { background: linear-gradient(135deg, #ffe27a, #e6a400); color: #3a2600; }
.grid .card:nth-child(2) .rank.top { background: linear-gradient(135deg, #f1f1f1, #a9adb5); color: #222; }
.grid .card:nth-child(3) .rank.top { background: linear-gradient(135deg, #ffb27a, #b8622d); color: #2d1300; }
.badges { position: absolute; left: 6px; bottom: 6px; display: flex; flex-wrap: wrap; gap: 4px; max-width: calc(100% - 60px); }
.badge { display: inline-block; font-size: 11px; font-weight: 800; padding: 2px 6px; border-radius: 4px; line-height: 1.4; }
.badge.sale { background: var(--sale); color: #fff; }
.badge.time { background: var(--time); color: #1a1200; }
.likes { position: absolute; right: 6px; bottom: 6px; font-size: 11px; background: rgba(0,0,0,.6); padding: 2px 6px; border-radius: 4px; }
.card-body { padding: 8px 10px 10px; display: flex; flex-direction: column; gap: 6px; }
.card-title { font-size: 12.5px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.9em; }
.card-title:hover { color: var(--accent-2); }
.price-row { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; }
.price { font-weight: 800; font-size: 15px; }
.price.sale { color: var(--sale); }
.price.big { font-size: 24px; }
s.list, .price-line s { color: var(--muted); font-size: 12px; }
.dur { font-size: 11px; color: var(--muted); }
.creator { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); min-width: 0; }
.creator img { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; flex: none; }
.creator span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.creator:hover { color: var(--text); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 8px 12px; border-radius: 8px; border: 1px solid var(--line); background: var(--bg2); font-weight: 700; cursor: pointer; color: var(--text); font-size: 13px; }
.btn small { font-size: 10px; border: 1px solid currentColor; border-radius: 3px; padding: 0 3px; margin: 0; color: inherit; opacity: .8; }
.btn.cta { background: var(--accent); border-color: var(--accent); color: #fff; font-size: 12.5px; }
.btn.cta:hover { filter: brightness(1.1); }
.btn.cta.big { width: 100%; font-size: 16px; padding: 13px; margin-top: 10px; }
.btn.primary { background: var(--accent); border-color: var(--accent); color: #fff; }

/* chips / tags */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { padding: 6px 12px; border-radius: 999px; background: var(--bg2); border: 1px solid var(--line); font-size: 13px; }
.chip:hover { border-color: var(--accent); color: var(--accent-2); }
.chip { font-weight: 700; }
.tag-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 720px) { .tag-list { grid-template-columns: repeat(4, 1fr); } }
.tag-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/10; background: var(--card); }
.tag-card img { width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.tag-name { position: absolute; left: 10px; bottom: 26px; font-weight: 800; font-size: 15px; }
.tag-n { position: absolute; left: 10px; bottom: 8px; font-size: 12px; color: var(--muted); }

/* creators table */
.ctable { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.crow { display: grid; grid-template-columns: 36px minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr) 52px 64px; align-items: center; gap: 10px; padding: 8px 12px; border-top: 1px solid var(--line); background: var(--card); }
.crow.chead { border-top: 0; background: var(--bg2); color: var(--muted); font-size: 12px; font-weight: 700; }
.crank { font-weight: 900; font-size: 16px; text-align: center; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cname { display: flex; align-items: center; gap: 8px; min-width: 0; font-weight: 700; }
.cname img, .noavatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex: none; background: var(--bg2); }
.cname span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.acct { font-size: 12.5px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 3px 8px; border-radius: 6px; border: 1px solid var(--line); display: inline-block; max-width: 100%; }
.acct.mf { color: var(--mf); }
.acct.x { color: var(--x); }
.acct.none { border: 0; color: var(--muted); }
.svc { font-size: 10px; font-weight: 700; opacity: .75; margin-right: 5px; letter-spacing: .02em; }
.acct:hover { border-color: currentColor; }
.num { text-align: right; font-variant-numeric: tabular-nums; }
@media (max-width: 719px) {
  .crow { grid-template-columns: 28px minmax(0, 1fr) auto; grid-template-areas: "r n n" "r m x"; row-gap: 6px; }
  .crow.chead { display: none; }
  .crow .crank { grid-area: r; }
  .crow .cname { grid-area: n; }
  .crow .acct.mf { grid-area: m; justify-self: start; }
  .crow .acct.x, .crow .acct.none { grid-area: x; justify-self: end; }
  .crow .num { display: none; }
}

/* creator page / detail */
.creator-head { display: flex; gap: 16px; align-items: center; margin-top: 22px; }
.creator-head img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.creator-head h1 { margin: 0 0 6px; font-size: 20px; }
.accts { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0; }
.detail { display: grid; gap: 20px; margin-top: 20px; }
@media (min-width: 860px) { .detail { grid-template-columns: minmax(0, 1fr) 380px; align-items: start; } }
.player.big { border-radius: var(--radius); max-height: 80vh; margin: 0 auto; width: 100%; }
.detail-body h1 { font-size: 17px; margin: 0 0 12px; line-height: 1.5; }
.price-box { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 14px; margin-bottom: 14px; }
.price-line { margin: 0 0 6px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.deadline { color: var(--time); font-weight: 700; margin: 4px 0; }
.note { font-size: 11px; color: var(--muted); margin: 8px 0 0; }
.summary { white-space: pre-line; color: var(--muted); font-size: 13px; }

/* footer */
.site-footer { margin-top: 48px; border-top: 1px solid var(--line); padding: 20px 0 40px; color: var(--muted); font-size: 12px; }
.foot-nav { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 10px; }
.foot-nav a:hover { color: var(--text); }

/* age gate */
.age-gate { position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,.8); display: grid; place-items: center; padding: 16px; }
.age-gate[hidden] { display: none; }
.age-box { background: var(--bg2); border: 1px solid var(--line); border-radius: 14px; padding: 24px; max-width: 360px; text-align: center; }
.age-title { font-size: 18px; font-weight: 800; margin: 0 0 8px; }
.age-actions { display: flex; gap: 10px; justify-content: center; margin-top: 16px; }

/* contact form */
.contact { display: grid; gap: 14px; max-width: 560px; }
.contact label { display: grid; gap: 6px; font-weight: 700; font-size: 13px; }
.contact input, .contact select, .contact textarea { font: inherit; color: var(--text); background: var(--bg2); border: 1px solid var(--line); border-radius: 8px; padding: 10px; }
.contact button { justify-self: start; padding: 10px 24px; }
.sent { color: var(--accent-2); font-weight: 700; }

/* static pages */
.prose { max-width: 760px; }
.prose h2 { font-size: 16px; margin-top: 24px; }
.prose p, .prose li { color: #d9d2d7; }

/* creator feature */
.feature { margin: 26px 0 38px; padding: 18px 16px 20px; border-radius: 18px; background: linear-gradient(160deg, #22121d 0%, #170f16 60%); border: 1px solid var(--line); scroll-margin-top: 110px; }
.feature-head { display: flex; align-items: center; gap: 12px; }
.feature-rank { flex: none; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-weight: 900; background: var(--grad); color: #fff; }
.feature-avatar { flex: none; width: 60px; height: 60px; border-radius: 50%; object-fit: cover; background: var(--bg2); box-shadow: 0 0 0 2px var(--accent); }
.feature-id { min-width: 0; flex: 1; display: grid; gap: 4px; justify-items: start; }
.feature-id h2 { margin: 0; font-size: 18px; font-weight: 900; line-height: 1.35; }
.feature-id h2 a:hover { color: var(--accent-2); }
.x-follow { flex: none; align-self: flex-start; display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 999px; background: #000; border: 1px solid #444; color: #fff; font-weight: 800; font-size: 12.5px; max-width: 46%; }
.x-follow span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.x-logo { font-size: 15px; }
.x-follow:hover { border-color: #fff; }
@media (max-width: 719px) {
  .x-follow { padding: 0; width: 38px; height: 38px; justify-content: center; }
  .x-follow span:last-child { display: none; }
  .x-logo { font-size: 18px; }
  .feature-avatar { width: 52px; height: 52px; }
  .feature-id h2 { font-size: 16px; }
}
.feature-stats { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 14px 0 4px; }
.feature-stats li { font-size: 11.5px; color: var(--muted); background: rgba(255, 255, 255, .05); border-radius: 8px; padding: 5px 10px; }
.feature-stats b { color: var(--text); font-size: 14px; margin-right: 4px; }
.feature-sub { font-size: 15px; font-weight: 900; margin: 18px 0 10px; padding-left: 10px; border-left: 4px solid var(--accent); }
.hscroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(150px, 46%); gap: 12px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; }
.hs-item { scroll-snap-align: start; }
@media (min-width: 720px) { .hscroll { grid-auto-columns: minmax(180px, 23%); } }
.works { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 720px) { .works { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.work { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.work-thumb { position: relative; aspect-ratio: 16 / 10; background: #000; display: block; }
.work-thumb img { width: 100%; height: 100%; object-fit: cover; }
.noimg { display: grid; place-items: center; height: 100%; color: var(--muted); }
.work-dur { position: absolute; right: 6px; bottom: 6px; font-size: 11px; background: rgba(0, 0, 0, .65); padding: 1px 6px; border-radius: 4px; }
.work-body { padding: 8px 10px 10px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.work-title { margin: 0; font-size: 12.5px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.9em; }
.work-actions { display: flex; gap: 6px; margin-top: auto; }
.work-actions .cta { flex: 1; }
.btn.ghost { background: transparent; font-size: 12px; padding: 8px 10px; }
.feature-index { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 10px; }
.feature-index a { flex: none; display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px 5px 5px; border-radius: 999px; background: var(--bg2); border: 1px solid var(--line); font-size: 12.5px; font-weight: 700; }
.feature-index img { width: 24px; height: 24px; border-radius: 50%; object-fit: cover; }
.feature-index a:hover { border-color: var(--accent); }
.feature-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(130px, 38%); gap: 12px; overflow-x: auto; padding-bottom: 6px; }
@media (min-width: 720px) { .feature-strip { grid-auto-columns: minmax(150px, 18%); } }
.fs-item { display: grid; gap: 6px; }
.fs-thumb { position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; background: #000; }
.fs-thumb img { width: 100%; height: 100%; object-fit: cover; }
.fs-rank { position: absolute; left: 0; top: 0; background: var(--grad); color: #fff; font-weight: 900; padding: 2px 9px; border-bottom-right-radius: 8px; }
.fs-name { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.fs-name img { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; flex: none; }
.feature-metric { display: inline-block; font-size: 11px; font-weight: 800; color: #fff; background: var(--grad); border-radius: 999px; padding: 2px 10px; }
.cr-block { margin-bottom: 18px; }
.cr-head { display: flex; align-items: baseline; gap: 8px; margin-bottom: 10px; }
.cr-label { font-weight: 900; font-size: 15px; padding: 3px 12px; border-radius: 999px; background: var(--bg2); border: 1px solid var(--accent); color: var(--accent-2); }
.cr-sub { font-size: 12px; color: var(--muted); }
.cr-all { margin-left: auto; font-size: 12.5px; font-weight: 800; color: var(--accent-2); }

/* sub tabs (X厳選) / myfans works grid */
.subtabs { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 8px; }
.subtabs a { padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 800; color: var(--muted); background: var(--bg2); border: 1px solid var(--line); }
.subtabs a.on { color: #fff; background: #000; border-color: #fff; }
.subtabs a:hover { color: var(--text); }
.big-tabs a { padding: 7px 20px; font-size: 14px; }
.work-thumb .rank { z-index: 1; }
.work .creator { margin-top: -2px; }
@media (min-width: 960px) { .grid-works { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } }
@media (min-width: 640px) and (max-width: 959px) { .grid-works { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* sale tabs / plan discount */
.sale-tabs { margin: 0 0 10px; flex-wrap: wrap; border-radius: 14px; width: fit-content; max-width: 100%; }
.plan-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 720px) { .plan-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.plan-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.plan-card:hover { border-color: var(--accent); }
.plan-thumb { position: relative; aspect-ratio: 16 / 10; background: #000; display: block; }
.plan-thumb img { width: 100%; height: 100%; object-fit: cover; }
.plan-rate { position: absolute; left: 6px; bottom: 6px; font-size: 12.5px; }
.plan-body { padding: 8px 10px 10px; display: grid; gap: 4px; }
.plan-name { display: flex; align-items: center; gap: 6px; font-size: 13px; min-width: 0; }
.plan-name img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; flex: none; }
.plan-name b { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.plan-meta { font-size: 11.5px; color: var(--muted); }
.sec-head .cr-all { margin-left: auto; }
@media (max-width: 719px) {
  .sale-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; gap: 3px; }
  .sale-tabs a { text-align: center; padding: 7px 2px; font-size: 12px; white-space: nowrap; }
}
.plan-thumb img.avatar-fill { object-fit: contain; background: radial-gradient(circle, #3a1b2c, #120a10); padding: 12%; }
