/* ============================================================
   JUNEA STUDIO — homepage proposal v2 · "The Player"
   Music-app inspired: top bar nav, featured banner with player,
   3+3 worlds grid, playlist-style latest feed.
   ============================================================ */

:root {
  --bg: #0f0d13;
  --panel: #14111a;
  --card: #1d1926;
  --elev: #262031;
  --ink: #f2eff5;
  --dim: #bab4c4;
  --muted: #7d7588;
  --hairline: rgba(242, 239, 245, 0.1);

  --c-neyu: #f487b2;
  --c-neyu-b: #8ec8f5;
  --c-rukami: #e0506c;
  --c-volt: #37a5ec;
  --c-noctelle: #8d81dd;
  --c-iro: #f2853c;
  --grad: linear-gradient(95deg, #f487b2, #8ec8f5, #37a5ec, #8d81dd, #f2853c, #e0506c);

  --font-head: "Outfit", "Noto Sans JP", "Noto Sans KR", sans-serif;
  --font-body: "Instrument Sans", "Noto Sans JP", "Noto Sans KR", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;

  --maxw: 1280px;
  --pad: clamp(18px, 3.5vw, 40px);
  --r: 18px;
  --r-lg: 26px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--ink); color: var(--bg); }

/* accent text: brand gradient instead of serif italic —
   renders identically across EN/KO/JA (CJK has no italic serif) */
.serif-i {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ---------- top bar ---------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--panel) 84%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}
.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  height: 66px;
}
.tb-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
.tb-mark .wm-period {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--grad);
  margin-left: 3px;
  transform: translateY(5px);
  flex: 0 0 auto;
}
.tb-mark small { font-weight: 500; font-size: 10px; letter-spacing: 0.28em; color: var(--muted); margin-left: 6px; }

.tb-nav { display: flex; align-items: center; gap: 4px; }
.tb-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dim);
  transition: background 0.2s, color 0.2s;
}
.tb-nav a:hover { background: var(--card); color: var(--ink); }
.tb-nav a.is-active { background: var(--card); color: var(--ink); font-weight: 600; }

.tb-right { display: flex; align-items: center; gap: 8px; }
.tb-ver {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--dim);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 7px 14px;
  white-space: nowrap;
  transition: background 0.2s;
}
.tb-ver:hover { background: var(--card); }

/* language / theme controls */
.lang-switch { display: flex; background: var(--card); border-radius: 999px; padding: 3px; }
.lang-switch button {
  font-size: 11.5px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}
.lang-switch button.is-active { background: var(--elev); color: var(--ink); box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25); }
.theme-toggle {
  width: 33px; height: 33px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--card);
  display: grid;
  place-items: center;
  font-size: 14px;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
}
.theme-toggle:hover { background: var(--elev); transform: rotate(15deg); }

/* ---------- main ---------- */

.main { padding-top: clamp(18px, 3vh, 30px); padding-bottom: 40px; display: flex; flex-direction: column; gap: clamp(34px, 5vh, 52px); }

/* top strip */
.topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topline .tl-brand { font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.topline .tl-tag { font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--dim); }

/* ---------- featured banner ---------- */

.banner {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  background: var(--card);
}
.banner-art {
  position: absolute;
  inset: 0;
  background-image: var(--art);
  background-size: cover;
  background-position: center 20%;
}
.banner-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 18, 32, 0.96) 0%, rgba(23, 18, 32, 0.88) 34%, rgba(23, 18, 32, 0.3) 68%, rgba(23, 18, 32, 0.4) 100%);
}
.banner::after {
  content: "";
  position: absolute;
  inset: 55% 0 0 0;
  background: linear-gradient(to top, rgba(15, 11, 22, 0.92), transparent);
  pointer-events: none;
}
.banner-body {
  position: relative;
  z-index: 2;
  padding: clamp(22px, 3.5vw, 40px);
  max-width: 640px;
}
/* banner sits on a dark image overlay in both themes — fixed colors */
.banner { color: #f2eff5; }
.banner .b-artist { color: #c9c2d1; }
.banner .b-artist b { color: #ffffff; }
.banner .b-time { color: #c9c2d1; }
.banner .play-big { background: #f2eff5; color: #17121f; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
}
.pill-new { background: linear-gradient(95deg, #f487b2, #8ec8f5); color: #33202c; }
.pill-soft { background: var(--elev); color: var(--dim); }

.banner h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05;
  margin: 14px 0 6px;
}
.banner .b-artist { font-size: 15px; color: var(--dim); }
.banner .b-artist b { color: var(--ink); }
.banner-controls { display: flex; align-items: center; gap: 16px; margin-top: 22px; flex-wrap: wrap; }
.play-big {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: var(--ink);
  color: #17121f;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s;
}
.play-big:hover { transform: scale(1.045); }
a.play-big { text-decoration: none; }
.b-world-link { font-size: 13px; font-weight: 600; color: var(--dim); text-decoration: none; }
.b-world-link:hover { color: var(--ink); }
.play-big svg { width: 15px; height: 15px; fill: currentColor; }
.b-progress { flex: 1; min-width: 180px; max-width: 340px; }
.b-bar { position: relative; height: 5px; border-radius: 3px; background: rgba(242, 239, 245, 0.18); cursor: pointer; }
.b-bar-fill { position: absolute; inset: 0 auto 0 0; width: 0%; border-radius: 3px; background: var(--grad); }
.b-time { display: flex; justify-content: space-between; font-size: 11px; color: var(--dim); margin-top: 7px; font-variant-numeric: tabular-nums; }

/* equalizer */
.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 15px; }
.eq i { width: 3.5px; height: 100%; border-radius: 2px; background: var(--grad); transform-origin: bottom; transform: scaleY(0.25); }
.playing .eq i { animation: eq 0.9s ease-in-out infinite alternate; }
.playing .eq i:nth-child(2) { animation-delay: 0.15s; }
.playing .eq i:nth-child(3) { animation-delay: 0.3s; }
.playing .eq i:nth-child(4) { animation-delay: 0.45s; }
@keyframes eq { from { transform: scaleY(0.2); } to { transform: scaleY(1); } }

/* ---------- section heads ---------- */

.shelf-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.shelf-head h2 { font-family: var(--font-head); font-weight: 700; font-size: clamp(22px, 2.4vw, 28px); letter-spacing: -0.01em; }
.shelf-head h2 .serif-i { font-size: 1.05em; }
.shelf-head .sh-sub { font-size: 13px; color: var(--muted); }

/* row labels inside worlds section */
.row-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.row-label::after { content: ""; flex: 1; height: 1px; background: var(--hairline); }
.row-label:first-of-type { margin-top: 0; }

/* ---------- worlds grid (3 + 3) ---------- */

.worlds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.w-tile {
  border-radius: var(--r-lg);
  padding: 22px 20px 20px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.w-tile:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45); }
.w-tile .wt-img {
  width: 84px; height: 84px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
}
.w-tile .wt-emoji {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 38px;
  margin-bottom: 16px;
  background: rgba(0, 0, 0, 0.25);
}
.w-tile .wt-letter {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.1);
}
.w-tile .wt-type { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.7; }
.w-tile .wt-name { font-family: var(--font-head); font-weight: 700; font-size: 21px; margin-top: 3px; }
.w-tile .wt-name span { font-size: 12px; font-weight: 500; opacity: 0.6; margin-left: 6px; letter-spacing: 0.1em; }
.w-tile .wt-line { font-size: 13px; opacity: 0.85; margin-top: 5px; }
.w-tile .wt-go { margin-top: auto; padding-top: 14px; font-size: 12px; font-weight: 600; opacity: 0.75; }

.wt-neyu { background: linear-gradient(160deg, #ffe3ef, #dcedff); color: #4a3540; }
.wt-luno { background: linear-gradient(160deg, #262130, #16131c); color: #f4f2f5; }
.wt-rukami { background: radial-gradient(120% 100% at 50% 0%, #57192c, #1e0611); color: #f7e9ec; }
.wt-volt { background: radial-gradient(120% 100% at 60% 0%, #12395c, #070f16); color: #ecf5fd; }
.wt-noctelle { background: radial-gradient(120% 100% at 50% 0%, #2e2a5c, #0d0d1e); color: #eae8f6; }
.wt-iroame { background: linear-gradient(160deg, #fdeef5, #efe6fa 55%, #ffeedd); color: #2c2430; }

/* ---------- playlist (latest) ---------- */

.playlist {
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pl-row {
  display: grid;
  grid-template-columns: 40px 48px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  transition: background 0.2s;
}
.pl-row:hover { background: var(--elev); }
.pl-row + .pl-row { border-top: 1px solid var(--hairline); }
.pl-num { font-size: 12.5px; color: var(--muted); font-variant-numeric: tabular-nums; }
.pl-art { width: 48px; height: 48px; border-radius: 10px; object-fit: cover; }
.pl-dot { width: 48px; height: 48px; border-radius: 10px; background: var(--elev); display: grid; place-items: center; }
.pl-dot::before { content: ""; width: 14px; height: 14px; border-radius: 50%; background: var(--wc, var(--muted)); }
.pl-title { font-family: var(--font-head); font-weight: 600; font-size: 15.5px; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pl-meta { display: block; font-size: 12px; color: var(--muted); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pl-world { font-size: 11.5px; font-weight: 600; color: var(--dim); background: var(--elev); border-radius: 999px; padding: 5px 12px; white-space: nowrap; }
.pl-play {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  display: grid;
  place-items: center;
  transition: transform 0.2s;
}
.pl-play:hover { transform: scale(1.1); }
.pl-play svg { width: 13px; height: 13px; fill: currentColor; }

/* ---------- about (expanded) ---------- */

.about-hub-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.story-lead {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(21px, 2.5vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.facts { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.facts li { display: flex; align-items: baseline; gap: 12px; font-size: 14.5px; color: var(--dim); }
.facts li .f-ico { flex: 0 0 auto; }
.facts li .f-dot {
  flex: 0 0 auto;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
  margin-top: 9px;
}
.facts li b { color: var(--ink); font-weight: 600; }
.story-quote {
  position: relative;
  margin-top: 26px;
  padding: 4px 0 4px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.story-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 3px;
  border-radius: 2px;
  background: var(--grad);
}

/* ---------- world hub orbit diagram ---------- */

.hub {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  margin: 0 auto;
}
.hub-ring {
  position: absolute;
  inset: 9%;
  border: 1.5px dashed var(--hairline);
  border-radius: 50%;
  animation: hubspin 80s linear infinite;
}
@keyframes hubspin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hub-ring { animation: none; } }

.hub-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(88px, 26%, 112px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--elev);
  border: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 2;
}
.hub-center .hub-j {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
}
.hub-center .hub-j i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
}
.hub-center b { font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: 0.06em; }

.hub-node {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
  animation: floaty 5.5s ease-in-out infinite alternate;
  transition: scale 0.25s ease;
}
.hub-node:hover { scale: 1.12; }
@media (prefers-reduced-motion: reduce) { .hub-node { animation: none; } }
.hub-node .n-av {
  width: clamp(46px, 13vw, 58px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  font-size: 24px;
}
.hub-node .n-av img { width: 100%; height: 100%; object-fit: cover; }
.hub-node .n-av.n-letter {
  background: linear-gradient(135deg, #2a2434, #17141d);
  color: #f4f2f5;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 17px;
}
.hub-node .n-av.n-emoji { background: radial-gradient(80% 80% at 50% 20%, #57192c, #1e0611); }
.hub-node .n-name {
  display: block;
  margin-top: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--dim);
  white-space: nowrap;
}
.hub-node:hover .n-name { color: var(--ink); }

/* six orbit positions */
.hn-1 { top: 8%;    left: 50%; }
.hn-2 { top: 29%;   left: 86.4%; animation-delay: 0.6s; }
.hn-3 { top: 71%;   left: 86.4%; animation-delay: 1.2s; }
.hn-4 { top: 92%;   left: 50%;   animation-delay: 1.8s; }
.hn-5 { top: 71%;   left: 13.6%; animation-delay: 2.4s; }
.hn-6 { top: 29%;   left: 13.6%; animation-delay: 3s; }

@keyframes floaty { from { translate: 0 0; } to { translate: 0 -9px; } }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.pillar {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 24px 22px;
}
.pillar .ico { display: block; font-size: 24px; margin-bottom: 12px; }
.pillar h3 { font-family: var(--font-head); font-weight: 700; font-size: 16.5px; }
.pillar p { margin-top: 9px; font-size: 13.5px; color: var(--dim); line-height: 1.65; }

/* ---------- about + foot ---------- */

.about-row {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 18px;
}
.about-card { background: var(--card); border-radius: var(--r-lg); padding: clamp(22px, 3vw, 34px); }
.about-card .aq {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(18px, 1.9vw, 23px);
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.about-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.about-card li { display: flex; gap: 10px; font-size: 13.5px; color: var(--dim); }
.about-card li::before { content: "✦"; color: var(--muted); flex: 0 0 auto; }
.about-card h3 { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 12px; }

.about-card .mail-link { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid var(--muted); transition: border-color 0.15s; }
.about-card .mail-link:hover { border-image: linear-gradient(90deg, #f487b2, #8ec8f5) 1; }

.ch-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 18px; }
.ch-links .ch-label { flex-basis: 100%; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.ch-links a {
  display: inline-flex; align-items: center; font-size: 12.5px; font-weight: 600;
  padding: 7px 13px; border-radius: 999px; background: var(--elev); color: var(--dim);
  text-decoration: none; transition: background 0.15s, color 0.15s;
}
.ch-links a:hover { background: linear-gradient(95deg, #f487b2, #8ec8f5); color: #33202c; }

.main-foot {
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   LIGHT THEME (html[data-theme="light"]) — the player, daylight
   ============================================================ */

html[data-theme="light"] {
  --bg: #faf6f0;
  --panel: #fdfbf6;
  --card: #ffffff;
  --elev: #f0ebe1;
  --ink: #241e2b;
  --dim: #554c60;
  --muted: #8a8292;
  --hairline: rgba(36, 30, 43, 0.12);
}
html[data-theme="light"] body { background: var(--bg); }
html[data-theme="light"] ::selection { background: var(--ink); color: var(--bg); }
html[data-theme="light"] .w-tile { box-shadow: 0 8px 24px rgba(36, 22, 48, 0.12); }
html[data-theme="light"] .w-tile:hover { box-shadow: 0 18px 44px rgba(36, 22, 48, 0.18); }
html[data-theme="light"] .playlist,
html[data-theme="light"] .about-card { box-shadow: 0 10px 30px rgba(36, 22, 48, 0.07); }
html[data-theme="light"] .lang-switch button.is-active { box-shadow: 0 1px 4px rgba(36, 22, 48, 0.15); }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  .banner { min-height: 340px; }
  .worlds-grid { grid-template-columns: 1fr 1fr; }
  .about-row { grid-template-columns: 1fr; }
  .about-hub-card { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .tb-nav a { padding: 8px 10px; }
}

.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: var(--card);
  font-size: 16px;
  line-height: 1;
  place-items: center;
}

@media (max-width: 640px) {
  .menu-toggle { display: grid; }
  .tb-nav { display: none; }
  .topbar.menu-open .tb-nav {
    display: flex;
    position: absolute;
    top: 66px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--panel);
    border-bottom: 1px solid var(--hairline);
    padding: 10px 16px 16px;
    gap: 4px;
    z-index: 99;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  }
  .topbar.menu-open .tb-nav a { padding: 13px 14px; border-radius: 12px; }
  .worlds-grid { grid-template-columns: 1fr; }
  .pl-row { grid-template-columns: 48px minmax(0, 1fr) auto; }
  .pl-num, .pl-world { display: none; }
  .topline .tl-tag { display: none; }
}
