/* The Aidols redesign (UX designer WEB-00).
   Scoped under .aidols-x so it never collides with global .hero/.tab/etc.
   Loaded only on the show page (templates/shows/aidols/index.html). */

/* Tokens live on body so overscroll / html / footer can share the same dark
   canvas. (Custom properties do not inherit upward from .aidols-x.) */
body.aidols-x-body {
  --ax-header-h: var(--header-height-desktop);
  --ax-bg: #050608;
  --ax-text: #f8f8fa;
  --ax-muted: rgba(248, 248, 250, .68);
  --ax-faint: rgba(248, 248, 250, .44);
  --ax-line: rgba(255, 255, 255, .14);
  --ax-accent: #f3f4f6;
  --ax-radius: 8px;
  --body-bg: var(--ax-bg);
  background: var(--ax-bg);
  background-color: var(--ax-bg);
  color: var(--ax-text);
}

/* Overscroll / rubber-band bounce reveals the html canvas behind body. */
html.aidols-x-html,
html:has(body.aidols-x-body) {
  background: #050608;
  background-color: #050608;
}

.aidols-x {
  color: var(--ax-text);
}

.aidols-x * { box-sizing: border-box; }
.aidols-x a { color: inherit; text-decoration: none; }

/* The site header's 1px bottom border reads as a harsh line against the
   near-black immersive hero. Hide it only on this dark page. */
body.aidols-x-body .fixed-header {
  border-bottom: none;
  box-shadow: none;
}

/* Anonymous show landing uses logo + auth only. Logged-in users retain search
   everywhere, including the show landing. */
body.aidols-x-body.aidols-x-landing-page .fixed-header:not(.fixed-header--authenticated) .header-desktop-search,
body.aidols-x-body.aidols-x-landing-page .fixed-header:not(.fixed-header--authenticated) .header-mobile-search {
  display: none !important;
}

/* Keep footer on the same dark canvas (no light band at page bottom). */
body.aidols-x-body .site-footer,
body.aidols-x-body .mobile-footer {
  background: transparent;
  color: var(--ax-muted);
}

/* ---------------------------------------------------------------- Landing */

.aidols-x-landing {
  position: relative;
  margin: 0;
  padding: 0;
  max-width: none;
  width: 100%;
  flex: 1 0 auto;
  height: calc(100svh - var(--ax-header-h, 64px));
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(5, 6, 8, .16), #050608 72%),
    radial-gradient(circle at 66% 22%, rgba(255, 255, 255, .16), transparent 360px),
    radial-gradient(circle at 16% 34%, rgba(52, 95, 116, .34), transparent 420px),
    #050608;
}

.aidols-x-hero {
  position: relative;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(156px, 17svh, 190px) clamp(18px, 5vw, 72px) clamp(22px, 4svh, 42px);
  overflow: hidden;
}

/* Cinematic darkening only makes sense over a real photo. */
.aidols-x-hero.has-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .58) 32%, rgba(0, 0, 0, .20) 60%, rgba(0, 0, 0, .48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .10) 0%, rgba(0, 0, 0, .42) 68%, #050608 100%);
  pointer-events: none;
  z-index: 1;
}

/* Without a photo, add a soft left-side legibility wash + bottom fade so text
   stays readable while the branded glows remain visible on the right. */
.aidols-x-hero:not(.has-bg)::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 12, .72) 0%, rgba(5, 6, 12, .34) 42%, transparent 70%),
    linear-gradient(180deg, transparent 55%, rgba(5, 6, 8, .55) 100%);
  pointer-events: none;
  z-index: 1;
}

.aidols-x-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .72;
  filter: saturate(1.04) contrast(1.04) brightness(.72);
  z-index: 0;
}

/* Fixed pill tab switcher (WEB-00 .top-nav) */
.aidols-x-nav {
  position: fixed;
  left: 50%;
  top: calc(var(--ax-header-h, 64px) + 14px);
  z-index: 21;
  display: flex;
  justify-content: center;
  width: min(calc(100vw - 32px), 620px);
  transform: translateX(-50%);
  margin: 0;
}

.aidols-x-tabs {
  --indicator-left: 5px;
  --indicator-width: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 46px;
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(0, 0, 0, .56);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.aidols-x-tabs::before {
  content: "";
  position: absolute;
  left: var(--indicator-left);
  top: 5px;
  z-index: 0;
  width: var(--indicator-width);
  height: calc(100% - 10px);
  border-radius: 999px;
  background: var(--ax-accent);
  transition: left .32s cubic-bezier(.2, .8, .2, 1), width .32s cubic-bezier(.2, .8, .2, 1);
}

.aidols-x-tab {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(14px, 2vw, 26px);
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .72);
  font-size: clamp(13px, .95vw, 16px);
  font-weight: 760;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease;
}

.aidols-x-tab.is-active { color: #090a0d; }

.aidols-x-viewport {
  position: relative;
  z-index: 2;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.aidols-x-track {
  height: 100%;
  display: flex;
  transition: transform .42s cubic-bezier(.2, .8, .2, 1);
  will-change: transform;
}

.aidols-x-landing[data-view="episodes"] .aidols-x-track { transform: translateX(0); }
.aidols-x-landing[data-view="rankings"] .aidols-x-track { transform: translateX(-100%); }
.aidols-x-landing[data-view="submissions"] .aidols-x-track { transform: translateX(-200%); }

.aidols-x-panel {
  width: 100%;
  min-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

.aidols-x-panel::-webkit-scrollbar { display: none; }

/* Episodes panel: show intro + episode rail */
.aidols-x-stage {
  position: relative;
  width: min(100%, 1480px);
  margin: 0 auto;
  flex-shrink: 0;
}

.aidols-x-panel[data-aidols-panel="episodes"] {
  justify-content: flex-start;
  overflow: hidden;
}

.aidols-x-copy {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.aidols-x-copy h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(54px, 7vw, 112px);
  line-height: .92;
  font-weight: 900;
  white-space: nowrap;
}

.aidols-x-desc {
  max-width: 640px;
  margin: 0;
  color: var(--ax-muted);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.48;
}

.aidols-x-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 3svh, 32px);
}

.aidols-x-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: var(--ax-radius);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}

.aidols-x-btn.is-primary { background: #fff; color: #08090c; }

.aidols-x-btn.is-secondary {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .10);
  color: #fff;
  backdrop-filter: blur(14px);
}

.aidols-x-upnext {
  position: relative;
  width: min(100%, 1480px);
  margin: auto auto 0;
  padding-top: clamp(28px, 5svh, 56px);
  flex-shrink: 0;
}

.aidols-x-section-label {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(20px, 1.9vw, 32px);
  line-height: 1.1;
  font-weight: 850;
}

.aidols-x-episode-row {
  display: flex;
  flex-wrap: nowrap;
  gap: clamp(14px, 1.5vw, 24px);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.aidols-x-episode-row::-webkit-scrollbar { display: none; }

.aidols-x-episode-card {
  flex: 0 0 calc((100% - 4 * clamp(14px, 1.5vw, 24px)) / 5);
  min-width: 168px;
  max-width: 280px;
  scroll-snap-align: start;
  display: block;
}

.aidols-x-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--ax-radius);
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .08);
  transition: border-color .18s ease, transform .18s ease;
}

.aidols-x-episode-card:hover .aidols-x-thumb {
  border-color: rgba(255, 255, 255, .32);
  transform: translateY(-2px);
}

.aidols-x-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.aidols-x-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, .30));
  pointer-events: none;
}

.aidols-x-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(44px, 3.8vw, 58px);
  height: clamp(44px, 3.8vw, 58px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: #08090c;
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.88);
  transition: opacity .18s ease, transform .18s ease;
}

.aidols-x-episode-card:hover .aidols-x-play,
.aidols-x-episode-card:focus-within .aidols-x-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.aidols-x-episode-name {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, .90);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.25;
  font-weight: 760;
}

/* Lazy panel loading state */
.aidols-x-lazy-loading {
  display: grid;
  place-items: center;
  min-height: 260px;
  color: var(--ax-muted);
  font-size: 15px;
  font-weight: 700;
}

.aidols-x-panel[data-aidols-panel="rankings"],
.aidols-x-panel[data-aidols-panel="submissions"] {
  justify-content: flex-start;
  padding: 0;
  overflow-y: auto;
  overflow-x: auto;
}

.aidols-x-panel .show-content {
  width: min(100%, 1540px);
  max-width: none;
  margin: 0 auto;
  padding: 0 0 clamp(24px, 4svh, 48px);
  display: block;
  color: inherit;
}

.aidols-x-panel[data-aidols-panel="submissions"] .show-content {
  width: min(100%, 1540px);
  padding: 0 clamp(18px, 5vw, 72px) clamp(24px, 4svh, 48px);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.45;
  color: var(--ax-text);
}

.aidols-x-panel[data-aidols-panel="submissions"] .show-hero {
  display: block;
  grid-template-columns: none;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--ax-radius);
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
}

.aidols-x-panel[data-aidols-panel="submissions"] .show-hero-media {
  margin-top: 1rem;
  max-width: min(100%, 640px);
}

.aidols-x-panel[data-aidols-panel="submissions"] .show-hero-media .show-video-shell,
.aidols-x-panel[data-aidols-panel="submissions"] .show-hero-media video {
  width: 100%;
  max-width: 100%;
}

.aidols-x-panel[data-aidols-panel="submissions"] .show-step-card,
.aidols-x-panel[data-aidols-panel="submissions"] .show-banner {
  margin-top: 1rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--ax-radius);
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(18px);
}

/* Match Episodes / Rankings typography on the Submit panel. */
.aidols-x-panel[data-aidols-panel="submissions"] .show-content h2,
.aidols-x-panel[data-aidols-panel="submissions"] .show-hero-copy h2,
.aidols-x-panel[data-aidols-panel="submissions"] .show-banner-title {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1.05;
  font-weight: 900;
}

.aidols-x-panel[data-aidols-panel="submissions"] .show-content h3,
.aidols-x-panel[data-aidols-panel="submissions"] .show-step-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, .90);
  font-size: clamp(20px, 1.9vw, 32px);
  line-height: 1.1;
  font-weight: 850;
}

.aidols-x-panel[data-aidols-panel="submissions"] .show-content h3 small,
.aidols-x-panel[data-aidols-panel="submissions"] .show-step-card h3 small {
  color: rgba(248, 248, 250, .58);
  font-size: .62em;
  font-weight: 700;
}

.aidols-x-panel[data-aidols-panel="submissions"] .show-hero-copy p,
.aidols-x-panel[data-aidols-panel="submissions"] .show-step-description,
.aidols-x-panel[data-aidols-panel="submissions"] .show-banner-sub,
.aidols-x-panel[data-aidols-panel="submissions"] .show-content p,
.aidols-x-panel[data-aidols-panel="submissions"] .show-content li {
  color: rgba(248, 248, 250, .64);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.45;
}

.aidols-x-panel[data-aidols-panel="submissions"] .show-check-text,
.aidols-x-panel[data-aidols-panel="submissions"] .show-song-title,
.aidols-x-panel[data-aidols-panel="submissions"] .show-song-main small,
.aidols-x-panel[data-aidols-panel="submissions"] .show-submit-msg {
  font-size: clamp(13px, .95vw, 15px);
  line-height: 1.4;
}

.aidols-x-panel [data-aidols-lazy] {
  width: 100%;
  min-height: 0;
}

.aidols-x-panel [data-aidols-lazy] > .rankings-panel,
.aidols-x-panel [data-aidols-lazy] > .show-content,
.aidols-x-panel [data-aidols-lazy] > section.show-content {
  animation: aidols-x-fade-in .28s ease both;
}

@keyframes aidols-x-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* ----------------------------------------------------------- Rankings */

.aidols-x-panel[data-aidols-panel="rankings"] [data-aidols-lazy] > .aidols-x-rankings-panel {
  padding: 0 clamp(18px, 5vw, 72px) clamp(22px, 4svh, 42px);
  box-sizing: border-box;
}

.aidols-x-rankings-panel {
  width: min(100%, 1480px);
  margin: 0 auto;
  min-height: 0;
}

.aidols-x-rankings-panel .rankings-heading {
  margin-bottom: 14px;
  padding-top: 4px;
}

.aidols-x-rankings-panel .rankings-heading h2 {
  margin: 0;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(28px, 3vw, 48px);
  line-height: 1;
  font-weight: 900;
}

.aidols-x-rankings-panel .rankings-note {
  margin: 8px 0 0;
  max-width: 820px;
  color: rgba(248, 248, 250, .64);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.45;
}

.aidols-x-rankings-panel .aidols-x-bracket-wrap,
.aidols-x-rankings-panel .show-rankings-bracket-placeholder {
  margin-top: 0;
  background: transparent;
  padding: 0;
  overflow: hidden;
}

.aidols-x-rankings-panel .show-bracket-scroll {
  width: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.aidols-x-rankings-panel .aidols-x-bracket-fit {
  transform-origin: top left;
}

.aidols-x-rankings-panel .show-bracket-board {
  width: 1040px;
  min-width: 1040px;
  max-width: 1040px;
  height: 1000px;
  transform-origin: top left;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

/* ----------------------------------------------------------------- Player */

.aidols-x-watch {
  position: relative;
  margin: 0;
  max-width: none;
  width: 100%;
  min-height: calc(100svh - var(--ax-header-h, 64px));
  flex: 1 0 auto;
  padding: clamp(22px, 3vw, 38px) clamp(16px, 4vw, 56px) 64px;
  background-color: #08090b;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .58) 32%, rgba(0, 0, 0, .20) 60%, rgba(0, 0, 0, .48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .62) 62%, #08090b 100%);
  background-repeat: no-repeat;
  background-size: auto, auto;
  color: var(--ax-text);
}

.aidols-x-watch.has-bg {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .88) 0%, rgba(0, 0, 0, .58) 32%, rgba(0, 0, 0, .20) 60%, rgba(0, 0, 0, .48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .16) 0%, rgba(0, 0, 0, .62) 62%, #08090b 100%),
    var(--ax-watch-bg, none);
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-attachment: scroll, scroll, fixed;
}

.aidols-x-watch .show-content {
  width: 100%;
  max-width: none;
  margin: 0;
  /* .show-content is a legacy grid. A one-column auto grid track uses this
     page's wide child content for intrinsic sizing, which can overflow the
     viewport and shift the watch page to the right. */
  display: block;
  min-width: 0;
  color: inherit;
}

.aidols-x-watch-inner,
.aidols-x-watch-shell,
.aidols-x-content-section {
  width: min(100%, 1840px);
  margin: 0 auto;
}

.aidols-x-watch-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: clamp(22px, 2.6vw, 42px);
  padding: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(112, 142, 196, .22);
  border-radius: 24px;
  background: rgba(16, 23, 36, .86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
}

.aidols-x-video-card,
.aidols-x-watch-shell .show-video-shell {
  overflow: hidden;
  border-radius: var(--ax-radius);
  background: #000;
}

/* The shared lazy-player rule only supplies a 180px minimum height unless it
   sits inside the legacy .show-featured wrapper. Give this redesigned player
   its own stable frame so the poster and loaded video use the same geometry. */
.aidols-x-watch-shell .show-video-shell--lazy.is-featured-lazy {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
}

.aidols-x-watch-shell .show-video-shell video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.aidols-x-watch-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 4px 0;
}

.aidols-x-watch-info .aidols-x-kicker {
  margin: 0 0 12px;
  color: var(--ax-muted);
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 720;
}

.aidols-x-watch-info h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1.05;
  font-weight: 900;
}

.aidols-x-watch-info .aidols-x-summary {
  max-width: 720px;
  margin: 0;
  color: var(--ax-muted);
  font-size: clamp(18px, 1.45vw, 28px);
  line-height: 1.28;
}

.aidols-x-meta-list {
  display: grid;
  gap: 12px;
  color: var(--ax-muted);
  font-size: clamp(15px, 1vw, 20px);
  line-height: 1.35;
}

.aidols-x-meta-list strong { color: var(--ax-faint); font-weight: 820; }

.aidols-x-content-section { margin-top: clamp(34px, 4vw, 54px); }

.aidols-x-content-section .aidols-x-section-title,
.aidols-x-watch .aidols-x-section-title {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.1;
  font-weight: 900;
}

.aidols-x-episodes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}

.aidols-x-watch-card {
  overflow: hidden;
  border: 1px solid rgba(112, 142, 196, .22);
  border-radius: 18px;
  background: #101724;
  cursor: pointer;
}

.aidols-x-watch-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  display: block;
  object-fit: cover;
}

.aidols-x-watch-card-copy { padding: 18px; }

.aidols-x-watch-card-copy .aidols-x-date {
  display: block;
  margin-bottom: 8px;
  color: var(--ax-muted);
  font-size: 15px;
  line-height: 1.25;
}

.aidols-x-watch-card-copy h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(20px, 1.45vw, 28px);
  line-height: 1.12;
}

.aidols-x-watch-card-copy p {
  margin: 0;
  color: var(--ax-muted);
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.28;
}

.aidols-x-contestant-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 160px;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.aidols-x-contestant-row::-webkit-scrollbar { display: none; }

.aidols-x-contestant {
  min-height: 138px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: 16px 14px;
  border: 1px solid rgba(112, 142, 196, .22);
  border-radius: 14px;
  background: #101724;
  text-align: center;
}

.aidols-x-contestant .aidols-x-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #7b8da8, #27364f);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 26px;
}

.aidols-x-contestant span {
  width: 100%;
  overflow: hidden;
  color: var(--ax-muted);
  font-size: 15px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aidols-x-schedule-card {
  min-height: 480px;
  border: 1px solid rgba(112, 142, 196, .22);
  border-radius: 18px;
  background: #101724;
  overflow: hidden;
}

.aidols-x-schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 100%;
}

.aidols-x-schedule-slot {
  min-height: 120px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.aidols-x-schedule-slot:nth-child(2n) { border-right: 0; }

.aidols-x-schedule-slot.is-current {
  background: rgba(77, 130, 255, .08);
}

.aidols-x-schedule-slot .show-schedule-meta {
  margin-bottom: 8px;
  color: var(--ax-muted);
  font-size: 15px;
  line-height: 1.25;
}

.aidols-x-schedule-slot .show-schedule-title {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.15;
  font-weight: 850;
}

.aidols-x-schedule-slot .show-schedule-description {
  margin: 0;
  color: var(--ax-muted);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.3;
}

.aidols-x-schedule-slot.is-empty {
  min-height: 120px;
  background: rgba(255, 255, 255, .02);
}

/* ------------------------------------------------------------- Responsive */

@media (max-width: 980px) {
  .aidols-x-watch-shell,
  .aidols-x-episodes-grid,
  .aidols-x-schedule-grid { grid-template-columns: 1fr; }
  .aidols-x-watch-card img { aspect-ratio: 16 / 8; }
  .aidols-x-schedule-slot:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, .08); }
}

@media (max-width: 620px) {
  .aidols-x-landing { min-height: 560px; }
  .aidols-x-hero { padding: 126px 20px 18px; }
  .aidols-x-copy h1 {
    font-size: clamp(42px, 14vw, 54px);
    white-space: normal;
  }
  .aidols-x-desc { font-size: 14px; line-height: 1.38; }
  .aidols-x-nav {
    top: calc(var(--ax-header-h, 64px) + 2px);
    width: 100%;
    justify-content: flex-start;
    padding: 0 14px;
  }
  .aidols-x-tabs { width: 100%; justify-content: space-between; overflow-x: auto; }
  .aidols-x-tab { padding: 0 13px; }
  .aidols-x-episode-row { gap: 12px; }
  .aidols-x-episode-card {
    flex-basis: min(168px, 72vw);
    min-width: 140px;
    max-width: 200px;
  }
  .aidols-x-episode-name { margin-top: 8px; font-size: 11px; line-height: 1.2; }
  .aidols-x-watch { padding: 18px 14px 42px; }
  .aidols-x-watch-shell { padding: 12px; border-radius: 16px; }
  .aidols-x-contestant-row { grid-auto-columns: 132px; }
  .aidols-x-rankings-panel .show-bracket-scroll {
    overflow-x: auto;
    touch-action: pan-x pan-y;
  }
}
