@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@400;500&display=swap');

:root {
  --bg: #ffffff;
  --text: #121212;
  --tile: #cfcfcf;
  --cursor-bg: #1e1e1e;
  --cursor-text: #ffffff;
}

html {
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

@media (pointer: fine) {
  body {
    cursor: none;
  }

  a,
  button,
  [data-cursor] {
    cursor: none;
  }
}

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  opacity: 0;
  transition: opacity 180ms ease;
  will-change: transform, opacity;
}

.custom-cursor.is-visible {
  opacity: 1;
}

.custom-cursor-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #111;
}

.custom-cursor-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--cursor-bg);
  color: var(--cursor-text);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.custom-cursor-pill.is-dimmed {
  opacity: 0;
  transition: opacity 2s ease;
}

.cursor-corner-left { --cursor-shift-x: 70px; --cursor-shift-y: 30px; }
.cursor-corner-right { --cursor-shift-x: -70px; --cursor-shift-y: 30px; }

@media (pointer: coarse) {
  .custom-cursor {
    display: none !important;
  }
}

.about-page-static {
  overflow: hidden;
  height: 100dvh;
  background: #e9e9e9;
}

.about-top-name {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  margin: 0;
  font-size: 14px;
  letter-spacing: 2px;
}

.about-top-name:hover {
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 25%;
}

.about-shell-static {
  min-height: 100dvh;
  height: 100dvh;
  padding: 32px 16px 64px;
  display: grid;
  place-items: center;
}

.about-desktop-stage {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-desktop-frame {
  position: relative;
  width: min(calc(100vw - 32px), 1512px);
  aspect-ratio: 2 / 1;
}

.about-desktop-hero {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  pointer-events: none;
}

.about-hotspot-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  z-index: 2;
}

.about-hotspot {
  display: block;
  width: 100%;
  height: 100%;
}

.about-mobile-hero {
  display: none;
}

@media (max-width: 640px) {
  .about-top-name {
    top: 14px;
    font-size: 12px;
    letter-spacing: 2px;
  }

  .about-shell-static {
    padding: 48px 24px 78px;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
  }

  .about-desktop-stage {
    display: none;
  }

  .about-mobile-hero {
    display: block;
    width: 100%;
    max-width: 100%;
    height: calc(100dvh - 48px - 78px - 36px);
    object-fit: contain;
    object-position: center top;
  }

  .about-page-static .bottom-nav {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  letter-spacing: 2px;
  min-height: 100vh;
}
html, body {
  height: 100%;
}

a { color: inherit; text-decoration: none; }

.top-name,
.top-role {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  font-size: 14px;
  letter-spacing: 2px;
}

.top-name {
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 2px;
}

.top-name:hover {
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 25%;
}

.top-name.active {
  font-weight: 700;
  color: #f7921f;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #f7921f;
  text-underline-offset: 25%;
}

.top-role {
  border-bottom: 2px dotted #111;
  padding-bottom: 3px;
}

.top-role.active {
  font-weight: 700;
  color: #f7921f;
  border-bottom-color: #f7921f;
  cursor: pointer;
}

.bottom-nav {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  align-items: center;
  z-index: 45;
}

.bottom-nav a {
  font-size: 14px;
  letter-spacing: 2px;
  width: fit-content;
  font-weight: 400;
  text-decoration: none;
  transition: color 140ms ease;
}

.bottom-nav a:hover {
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: currentColor;
  text-underline-offset: 25%;
}

.bottom-nav a.active {
  font-weight: 700;
  color: #f7921f;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #f7921f;
  text-underline-offset: 25%;
}

.social {
  justify-self: end;
  display: flex;
  gap: 10px;
}

.social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
}

.social a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  min-height: 100vh;
  padding: 16px;
}

.home-page {
  overflow: hidden;
  height: 100dvh;
}

.home-page .page {
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  padding: 16px;
}

.home-stage {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
}

/* 1512x982 reference canvas from Figma, scaled responsively */
.home-canvas {
  position: relative;
  width: min(calc(100vw - 32px), calc((100vh - 32px) * (1512 / 982)));
  aspect-ratio: 1512 / 982;
}

.home-mobile-composite {
  display: none;
}

.home-desktop-composite {
  display: none;
}

.name-graphic {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1512px;
  max-width: 100%;
  z-index: 1;
  pointer-events: none;
}

.float-img {
  position: absolute;
  height: auto;
  object-fit: contain;
}

.home-canvas a {
  display: contents;
}

.front { z-index: 3; }
.back { z-index: 0; }

/* Desktop layering: only LP + Collaboration in front of Name */
.name-graphic { z-index: 2; }
.f-36days,
.f-ads,
.f-deck,
.f-mobile { z-index: 1; }
.f-lp,
.f-collab { z-index: 3; }

/* Desktop positions */
.f-36days { left: 12.2%; top: 20.4%; width: 15.9%; }
.f-ads { left: 4%; top: 54.6%; width: 14.8%; }
.f-deck { left: 50%; top: 15.3%; width: 19.8%; }
.f-mobile { left: 85.4%; top: 24%; width: 6%; }
.f-lp { left: 73.7%; top: 54.1%; width: 25.7%; }
.f-collab { left: 50%; top: 62.1%; width: 12.6%; }
.mobile-only-art { display: none; }

.work-layout {
  display: grid;
  grid-template-columns: 35% 65%;
  min-height: calc(100vh - 186px);
}

.work-copy { padding: 0 28px 0 0; }

.work-copy h1 {
  margin: 90px 0 26px;
  font-size: 56px;
  line-height: 1.16;
  border-bottom: 6px dotted #111;
  display: inline-block;
}

.work-copy p {
  margin: 0 0 20px;
  line-height: 1.4;
  max-width: 44ch;
  letter-spacing: 1px;
}

.year { margin-top: 26px; }
.work-media { padding-left: 22px; }

.main-media {
  width: 100%;
  height: 62vh;
  object-fit: cover;
  display: block;
}

.thumb-strip {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
}

.thumb-strip img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.works-grid {
  margin-top: 130px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
}

.work-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.work-card h2 {
  margin: 14px 0 0;
  font-size: 30px;
  border-bottom: 3px dotted #111;
  width: fit-content;
}

.play-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.tile { background: var(--tile); }
.t1 { aspect-ratio: 1/1; }
.t2 { aspect-ratio: 1/0.58; }

@media (max-width: 1024px) {
  body { font-size: 12px; letter-spacing: 1.4px; }
  .top-name, .top-role { font-size: 12px; letter-spacing: 3px; }
  .bottom-nav { left: 14px; right: 14px; bottom: 14px; }
  .bottom-nav a { font-size: 12px; letter-spacing: 2px; }
  .social a { width: 26px; height: 26px; }

  .work-layout { grid-template-columns: 1fr; gap: 16px; }
  .work-copy h1 { margin: 14px 0 16px; font-size: 30px; border-bottom-width: 4px; }
  .work-copy p { max-width: 100%; }
  .main-media { height: 40vh; }

  .works-grid { grid-template-columns: 1fr; margin-top: 74px; gap: 24px; }
  .work-card img { height: auto; aspect-ratio: 1.3/1; }
  .work-card h2 { font-size: 18px; }

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

/* Works page: fixed viewport, horizontal rail only */
.works-page {
  overflow: hidden;
  height: 100dvh;
}

.works-page .page {
  min-height: 100dvh;
  height: 100dvh;
  overflow: hidden;
  padding: 0;
}

.works-page .top-name {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
}

.works-page .bottom-nav {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 45;
}

.works-shell {
  display: grid;
  align-items: center;
  width: 100%;
  min-width: 0;
}

.works-rail {
  display: flex;
  gap: 80px;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  scrollbar-width: none;
}

.works-rail::-webkit-scrollbar {
  display: none;
}

.work-item {
  flex: 0 0 min(66vw, 980px);
  min-width: 0;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.work-item.lowered {
  margin-top: 100px;
}

.work-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.work-item h2 {
  margin: 12px 0 0;
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 500;
  border-bottom: 3px dotted #111;
  width: fit-content;
  padding-bottom: 3px;
}

@media (max-width: 1100px) {
  .works-rail {
    gap: 34px;
  }

  .work-item {
    flex-basis: 86vw;
  }

  .work-item.lowered {
    margin-top: 52px;
  }

  .work-item h2 {
    font-size: 16px;
  }
}

/* Project page: fixed left rail + right vertical image stream */
.project-page {
  overflow: hidden;
  height: 100dvh;
}

.project-page .top-name {
  position: fixed;
  top: 16px;
  left: 16px;
  transform: none;
  display: inline-block;
  z-index: 40;
}

.project-shell {
  height: 100dvh;
  display: grid;
  grid-template-columns: 30vw 70vw;
}

.project-left {
  position: relative;
  padding: 16px;
  border-right: 1px solid rgba(18, 18, 18, 0.08);
  overflow: hidden;
}

.project-copy {
  margin-top: 92px;
  padding-right: 10px;
  max-height: calc(100vh - 210px);
  overflow: auto;
  scrollbar-width: none;
}

.project-copy::-webkit-scrollbar {
  display: none;
}

.project-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(26px, 2.5vw, 58px);
  line-height: 1.12;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 500;
}

.project-copy h1 .title-line {
  width: fit-content;
  border-bottom: 8px dotted #111;
  padding-bottom: 4px;
}

.project-copy p {
  margin: 0 0 18px;
  line-height: 1.35;
  letter-spacing: 1px;
  max-width: 46ch;
}

.project-copy .year {
  margin-top: 24px;
}

.project-page-link {
  display: inline-block;
  margin-top: 8px;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 1px;
  font-weight: 500;
  color: #111;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 25%;
  text-decoration-thickness: 2px;
}

.project-page-link:hover {
  color: #f7921f;
  text-decoration-color: #f7921f;
}

.project-page .bottom-nav {
  position: fixed;
  left: 16px;
  right: calc(70vw + 16px);
  bottom: 16px;
}

.project-right {
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0;
  display: grid;
  gap: 12px;
  align-content: start;
  background: #fff;
}

.project-right img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.embedded-landing-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  overflow: hidden;
  background: #fff;
}

.embedded-landing-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  overflow: auto;
  display: block;
}

@media (max-width: 1024px) {
  .project-shell {
    grid-template-columns: 100%;
  }

  .project-left {
    position: fixed;
    inset: 0 0 auto 0;
    height: 64px;
    border-right: 0;
    background: #fff;
    z-index: 20;
  }

  .project-copy {
    display: none;
  }

  .project-page .bottom-nav {
    position: fixed;
    left: 14px;
    right: calc(70vw + 14px);
    bottom: 14px;
    display: grid;
    z-index: 30;
  }

  .project-right {
    padding-top: 64px;
    padding-bottom: 72px;
    height: 100vh;
  }
}

@media (max-width: 768px) {
  .project-page {
    overflow: hidden;
    height: 100dvh;
  }

  .project-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    gap: 16px;
  }

  .project-left {
    position: static;
    inset: auto;
    height: auto;
    border-right: 0;
    background: transparent;
    z-index: auto;
    padding: 0;
    display: block;
  }

  .project-page .top-name {
    position: fixed;
    top: 16px;
    left: 24px;
    transform: none;
    display: block;
    text-align: left;
    margin: 0;
    font-size: 12px;
    letter-spacing: 2.6px;
    line-height: 1.14;
  }

  .project-copy {
    display: block;
    margin: 0;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .project-page .bottom-nav {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    display: grid;
    margin-top: 0;
    z-index: 30;
  }

  .project-right {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    height: auto;
    overflow-y: visible;
    overflow-x: hidden;
    padding: 0;
    gap: 16px;
    align-content: start;
    -webkit-overflow-scrolling: auto;
  }

  .project-right img {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* Play page: fixed viewport, center vertical scroll only */
.play-page {
  overflow: hidden;
  height: 100dvh;
}

.play-page {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
}

.play-page .top-name {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  justify-self: center;
}

.play-shell {
  height: 100dvh;
  overflow: hidden;
  padding-top: calc(16px + 14px + 40px);
  padding-bottom: calc(16px + 28px + 40px);
}

.play-shell {
  height: 100%;
  min-height: 0;
  padding: 0;
}

.play-page .bottom-nav {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  margin: 0;
}

.play-board {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
  padding-right: 4px;
  scrollbar-width: thin;
}

.play-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.play-card {
  background: #d3d3d3;
  overflow: hidden;
}

.play-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ratio-1-1 { aspect-ratio: 1 / 1; }
.ratio-3-2 { aspect-ratio: 3 / 2; }
.ratio-2-3 { aspect-ratio: 2 / 3; }

@media (max-width: 1024px) {
  .play-shell {
    padding-top: calc(14px + 12px + 40px);
    padding-bottom: calc(14px + 26px + 40px);
  }

  .play-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .play-col {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 12px;
    letter-spacing: 1.6px;
    scrollbar-width: none;
  }

  body::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .top-name,
  .top-role {
    font-size: 12px;
    letter-spacing: 2px;
    z-index: 60;
  }

  .bottom-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    z-index: 70;
  }

  .bottom-nav a {
    font-size: 12px;
    letter-spacing: 1.6px;
  }

  .bottom-nav a.active {
    text-decoration-line: underline;
    text-decoration-style: dotted;
    text-decoration-color: #f7921f;
    text-underline-offset: 25%;
    text-decoration-thickness: 2px;
  }

  .social {
    gap: 8px;
  }

  .social a {
    width: 24px;
    height: 24px;
  }

  .page {
    padding: 0;
  }

  .home-page .page {
    padding: 16px;
  }

  .home-canvas {
    width: min(calc(100vw - 32px), 430px);
    aspect-ratio: 390 / 760;
  }

  .home-mobile-composite {
    display: none;
  }

  .home-page .name-graphic {
    display: none;
  }

  .home-page .float-img {
    display: block;
  }

  /* Mobile layering: only Deck in front; everything else behind name */
  .f-deck { z-index: 3; }
  .f-36days,
  .f-ads,
  .f-mobile,
  .f-lp,
  .f-collab,
  .f-pal,
  .f-lavi { z-index: 1; }

  .f-36days { left: 37%; top: 10%; width: 30%; }
  .f-ads { left: 55%; top: 70%; width: 25%; }
  .f-deck { left: 10%; top: 57%; width: 30%; }
  .f-mobile { left: 15%; top: 30%; width: 16.5%; }
  .f-lp { left: 15.2%; top: 40%; width: 38.9%; }
  .f-collab { left: 60%; top: 35%; width: 20%; }
  .mobile-only-art { display: block; }
  .f-pal { left: 23.9%; top: 13.7%; width: 50%; }
  .f-lavi { left: 14%; top: 50%; width: 70%; }

  .works-page,
  .play-page,
  .project-page,
  .about-page-static {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    height: 100dvh;
    overflow: hidden;
  }

  .works-page .top-name,
  .play-page .top-name,
  .project-page .top-name,
  .about-top-name {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    margin: 0;
    justify-self: center;
  }

  /* Fix: .works-page .page { height: 100dvh } has higher specificity (0,2,0) than
     .works-shell { height: 100% } (0,1,0). Override it here at equal specificity, later position. */
  .works-page .page {
    height: 100%;
    min-height: 0;
  }

  .works-page .bottom-nav,
  .play-page .bottom-nav,
  .project-page .bottom-nav,
  .about-page-static .bottom-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    margin: 0;
  }

  .works-shell {
    height: 100%;
    min-height: 0;
    overflow: hidden;
    align-items: stretch;
    padding: 0;
  }

  .works-page {
    overscroll-behavior: none;
    touch-action: pan-y;
  }

  .works-rail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 0;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: touch;
  }

  .work-item {
    flex: none;
    flex-basis: auto;
  }

  .work-item.lowered {
    margin-top: 0;
  }

  .work-item h2 {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 1.6px;
    border-bottom: 2px dotted #111;
    width: fit-content;
    padding-bottom: 3px;
  }

  .project-left {
    height: auto;
    padding: 0;
    border: 0;
    position: static;
    background: transparent;
    display: block;
    flex-shrink: 0;
  }

  .project-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    gap: 16px;
  }

  .project-page .top-name {
    position: static;
    transform: none;
    display: block;
    text-align: center;
    margin: 0;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 1.14;
  }

  .project-copy {
    display: block;
    margin: 0;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .project-copy h1 {
    font-size: 24px;
    line-height: 1.6;
    gap: 8px;
    margin-bottom: 24px;
  }

  .project-copy h1 .title-line {
    border-bottom-width: 7px;
    padding-bottom: 2px;
  }

  .project-copy p {
    font-size: 10px;
    line-height: 1.4;
    letter-spacing: 0;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .project-copy .year {
    display: none;
  }

  .project-right {
    flex: none;
    min-height: auto;
    height: auto;
    overflow-y: visible;
    overflow-x: hidden;
    padding: 0;
    gap: 16px;
    align-content: start;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: auto;
  }

  .project-right::-webkit-scrollbar {
    width: 0;
    height: 0;
  }

  .project-page .bottom-nav {
    margin-top: 0;
  }

  .about-page-static {
    background: #e9e9e9;
  }

  .about-shell-static {
    height: 100%;
    min-height: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about-desktop-stage {
    display: none;
  }

  .about-mobile-hero {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
  }

  .about-page-static .bottom-nav {
    margin-top: 0;
  }

  .play-shell {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    gap: 16px;
  }

  .play-board {
    grid-template-columns: 1fr;
    gap: 16px;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0;
    padding-bottom: 0;
  }

  .play-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .play-page .top-name {
    position: static;
    transform: none;
    left: auto;
    text-align: center;
  }
}
