:root {
  color-scheme: dark;
  --bg: #05070b;
  --panel: #0b0f16;
  --line: #242a34;
  --ink: #f4f6f8;
  --muted: #a9b0ba;
  --accent: #ff8a34;
  font-family: Inter, Pretendard, "Noto Sans KR", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { background: var(--bg); }
body { min-width: 320px; margin: 0; background: var(--bg); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.play-header { position: sticky; top: 0; z-index: 10; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 72px; padding: 0 clamp(20px, 4vw, 72px); border-bottom: 1px solid var(--line); background: rgba(5,7,11,.92); backdrop-filter: blur(16px); }
.play-brand { justify-self: start; font-size: .96rem; font-weight: 900; letter-spacing: -.02em; }
.play-tabs { display: flex; gap: 6px; padding: 5px; border: 1px solid var(--line); border-radius: 999px; background: var(--panel); }
.play-tabs button { min-width: 76px; min-height: 40px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font-weight: 850; cursor: pointer; }
.play-tabs button.is-active { background: var(--ink); color: var(--bg); }
.play-apps { justify-self: end; color: var(--muted); font-size: .85rem; font-weight: 800; }
.play-main { width: min(1160px, calc(100% - 40px)); min-height: calc(100svh - 144px); margin: 0 auto; padding: clamp(56px, 9vw, 112px) 0 80px; }
.play-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(260px, 380px); gap: 32px; align-items: end; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.play-intro p { grid-column: 1; margin: 0 0 12px; color: var(--accent); font-size: .75rem; font-weight: 900; letter-spacing: .14em; }
.play-intro h1 { grid-column: 1; margin: 0; font-size: clamp(2.6rem, 7vw, 6.2rem); line-height: .94; letter-spacing: -.065em; }
.play-search { grid-column: 2; grid-row: 1 / span 2; }
.play-search input { width: 100%; min-height: 58px; padding: 0 20px; border: 1px solid var(--line); border-radius: 14px; outline: 0; background: var(--panel); color: var(--ink); }
.play-search input:focus { border-color: var(--accent); }
.play-panel { padding-top: 44px; }
.play-section-heading { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.play-section-heading h2 { margin: 0; font-size: 1.2rem; }
.play-section-heading span { color: var(--muted); font-size: .8rem; }
.play-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.play-item { display: grid; grid-template-columns: 86px minmax(0, 1fr) auto; gap: 20px; align-items: center; min-height: 88px; padding: 0 18px; border-bottom: 1px solid var(--line); transition: background .16s ease, color .16s ease; }
.play-item:nth-child(odd) { border-right: 1px solid var(--line); }
.play-item:hover, .play-item:focus-visible { background: var(--ink); color: var(--bg); outline: 0; }
.play-item span { color: var(--accent); font-size: .75rem; font-weight: 900; }
.play-item:hover span, .play-item:focus-visible span { color: #c64f00; }
.play-item strong { overflow-wrap: anywhere; font-size: 1.04rem; }
.play-item em { color: var(--muted); font-size: .78rem; font-style: normal; white-space: nowrap; }
.play-item--featured strong { font-size: 1.25rem; }
.play-empty { padding: 72px 0; color: var(--muted); text-align: center; }
.play-footer { display: flex; justify-content: space-between; min-height: 72px; padding: 26px clamp(20px, 4vw, 72px); border-top: 1px solid var(--line); color: var(--muted); font-size: .72rem; }
@media (max-width: 760px) {
  .play-header { grid-template-columns: 1fr auto; min-height: 64px; padding: 0 18px; }
  .play-tabs { position: fixed; right: 16px; bottom: 16px; z-index: 20; box-shadow: 0 12px 40px rgba(0,0,0,.45); }
  .play-apps { display: none; }
  .play-main { width: min(100% - 32px, 620px); padding-top: 52px; }
  .play-intro { grid-template-columns: 1fr; gap: 28px; padding-bottom: 36px; }
  .play-search { grid-column: 1; grid-row: auto; }
  .play-list { grid-template-columns: 1fr; }
  .play-item, .play-item:nth-child(odd) { grid-template-columns: 70px minmax(0, 1fr); min-height: 80px; padding: 0 8px; border-right: 0; }
  .play-item em { display: none; }
  .play-footer { padding-bottom: 92px; }
}
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; transition: none !important; } }
