:root {
  color-scheme: dark;
  --ink: #f6f2e9;
  --muted: #a8adba;
  --line: rgba(255, 255, 255, .12);
  --panel: #202534;
  --panel-2: #161a26;
  --night: #0d1018;
  --blue: #6978ff;
  --cyan: #66d8d2;
  --orange: #ff8a38;
  --cream: #f4efe4;
  --cream-ink: #151923;
  --shell: min(1480px, calc(100% - 56px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--night);
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: #111;
  background: var(--cream);
  border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(13, 16, 24, .92);
  backdrop-filter: blur(18px);
}
.header-shell {
  width: var(--shell);
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.brand img { width: 50px; aspect-ratio: 1; object-fit: contain; }
.brand-copy { display: grid; gap: 2px; }
.brand-copy strong { font-size: 20px; letter-spacing: .04em; }
.brand-copy small { color: #858b9b; font-size: 9px; letter-spacing: .26em; }
.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-nav::-webkit-scrollbar { display: none; }
.site-nav a {
  flex: 0 0 auto;
  padding: 12px 13px;
  color: #b4bac7;
  font-size: 13px;
  text-decoration: none;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease;
}
.site-nav a:hover, .site-nav a.is-active { color: #fff; background: rgba(105, 120, 255, .16); }
.nav-toggle { display: none; }

.hero {
  width: var(--shell);
  min-height: 760px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0 0, rgba(105, 120, 255, .28), transparent 42%),
    linear-gradient(135deg, #181c2b 0%, #10131d 66%);
}
.hero-copy { padding: clamp(48px, 6vw, 96px); display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin-bottom: 18px; color: var(--orange); font-size: 12px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase; }
.hero h1 { max-width: 780px; margin-bottom: 28px; font-size: clamp(44px, 5.6vw, 88px); line-height: .98; letter-spacing: -.055em; }
.hero h1 span { color: #8ea0ff; }
.hero-intro { max-width: 700px; margin-bottom: 30px; color: #bcc2d0; font-size: 17px; line-height: 1.9; }
.hero-topics { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-topics span, .index-keywords span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: #d9dde6; font-size: 12px; }
.hero-note { margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); }
.hero-note strong { color: var(--cyan); font-size: 13px; }
.hero-note p { margin: 10px 0 0; color: #878f9f; font-size: 12px; line-height: 1.7; }
.hero-media {
  position: relative;
  margin: 0;
  min-width: 0;
  min-height: 760px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,104,61,.18), transparent 34%),
    linear-gradient(145deg, #171b2a 0%, #0b0d14 58%, #1b1220 100%);
}
.hero-media > img {
  width: auto;
  max-width: 78%;
  height: 760px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 28px 54px rgba(0,0,0,.48));
}
.hero-media::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.hero-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(16,19,29,.7), transparent 22%, transparent 78%, rgba(16,19,29,.32)); }
.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 30px;
  width: min(460px, calc(100% - 60px));
  padding: 24px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(9, 11, 17, .82);
  backdrop-filter: blur(18px);
}
.hero-media figcaption span { display: block; margin-bottom: 8px; color: var(--cyan); font-size: 11px; letter-spacing: .14em; }
.hero-media figcaption strong { display: block; margin-bottom: 10px; font-size: 24px; }
.hero-media figcaption p { margin: 0; color: #aeb5c2; font-size: 13px; line-height: 1.75; }

.section-block { width: var(--shell); margin: 130px auto 0; scroll-margin-top: 110px; }
.section-heading { display: grid; grid-template-columns: minmax(0, .75fr) minmax(340px, .5fr); gap: 80px; align-items: end; margin-bottom: 46px; }
.section-heading h2, .genre-intro h2, .complete-copy h2, .ranking-head h2, .preview-title-wrap h2, .official-brand h2 { margin-bottom: 0; font-size: clamp(38px, 4.8vw, 72px); line-height: 1.05; letter-spacing: -.04em; }
.section-heading > p, .genre-intro > p:last-child, .complete-copy > p, .ranking-head > p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.compact-heading { grid-template-columns: .65fr .5fr; }

.daily-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.drama-card { grid-column: span 4; min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--panel-2); }
.drama-card.feature-card { grid-column: span 8; display: grid; grid-template-columns: 1.15fr .85fr; }
.poster-frame { overflow: hidden; aspect-ratio: 4 / 3; background: #10131c; }
.poster-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.card-copy { padding: 24px; }
.feature-card .card-copy { display: flex; flex-direction: column; justify-content: end; padding: clamp(28px, 4vw, 56px); }
.genre-label { color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.drama-card h3, .story-card h3, .index-card h3, .ranking-list h3 { margin: 12px 0 14px; font-size: 25px; line-height: 1.15; }
.drama-card p, .story-card p, .index-card p, .ranking-list p { margin-bottom: 0; color: #9ca4b4; font-size: 13px; line-height: 1.8; }

.genre-section { display: grid; grid-template-columns: .68fr 1.32fr; gap: 80px; padding: clamp(36px, 6vw, 88px); color: var(--cream-ink); background: var(--cream); border-radius: 32px; }
.genre-intro { align-self: start; position: sticky; top: 128px; }
.genre-intro .eyebrow { color: #6d54de; }
.genre-intro > p:last-child { margin-top: 26px; color: #5c6270; }
.genre-board { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(21,25,35,.18); border-left: 1px solid rgba(21,25,35,.18); }
.genre-board article { min-height: 250px; padding: 30px; border-right: 1px solid rgba(21,25,35,.18); border-bottom: 1px solid rgba(21,25,35,.18); }
.genre-board span { color: #6d54de; font-weight: 800; }
.genre-board h3 { margin: 54px 0 14px; font-size: 25px; }
.genre-board p { margin-bottom: 0; color: #676c78; font-size: 13px; line-height: 1.8; }
.region-guide { grid-column: 1 / -1; display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(34px, 6vw, 90px); padding-top: 42px; border-top: 1px solid rgba(21,25,35,.18); }
.region-guide h3 { max-width: 440px; margin: 12px 0 0; font-size: clamp(27px, 3vw, 44px); line-height: 1.18; }
.region-copy { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.region-copy p { margin: 0; color: #5e6470; font-size: 14px; line-height: 1.95; }

.story-stack { display: grid; gap: 18px; }
.story-card { min-height: 430px; display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; border: 1px solid var(--line); border-radius: 28px; background: var(--panel-2); }
.story-card.reverse { grid-template-columns: .85fr 1.15fr; }
.story-card.reverse img { order: 2; }
.story-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.story-card > div { padding: clamp(34px, 6vw, 82px); display: flex; flex-direction: column; justify-content: center; }
.story-card h3 { font-size: clamp(30px, 4vw, 54px); }

.complete-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.complete-copy { position: sticky; top: 130px; }
.complete-copy > p { margin: 26px 0; }
.index-keywords { display: flex; flex-wrap: wrap; gap: 8px; }
.complete-grid { display: grid; gap: 18px; }
.index-card { display: grid; grid-template-columns: 210px 1fr; min-height: 220px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #171b28; }
.index-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.index-card > div { padding: 28px; align-self: center; }

.ranking-section { padding: clamp(36px, 6vw, 84px); border-radius: 32px; background: #11151f; }
.ranking-head { display: grid; grid-template-columns: 1fr .6fr; gap: 80px; margin-bottom: 40px; }
.ranking-list { border-top: 1px solid var(--line); }
.ranking-list article { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 32px; align-items: center; padding: 26px 0; border-bottom: 1px solid var(--line); }
.ranking-list img { width: 210px; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; border-radius: 18px; }
.ranking-list span { color: var(--cyan); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.ranking-list h3 { font-size: 30px; }

.preview-section { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; align-items: start; padding-bottom: 120px; border-bottom: 1px solid var(--line); }
.preview-title-wrap h2 { max-width: 640px; }
.preview-editorial > p { margin-bottom: 38px; color: var(--muted); font-size: 17px; line-height: 1.95; }
.preview-lanes { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.preview-lanes article { min-height: 150px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.preview-lanes strong, .preview-lanes span { display: block; }
.preview-lanes strong { margin-bottom: 32px; color: var(--orange); }
.preview-lanes span { color: #8991a2; font-size: 12px; line-height: 1.6; }

.official-section { margin-bottom: 110px; }
.official-brand { display: grid; grid-template-columns: 180px 1fr; gap: 46px; align-items: center; padding: 50px; border: 1px solid var(--line); border-radius: 30px; background: linear-gradient(135deg, rgba(105,120,255,.14), rgba(102,216,210,.06)); }
.official-brand img { width: 180px; aspect-ratio: 1; object-fit: contain; }
.official-brand h2 { margin-bottom: 22px; }
.official-brand p:last-child { margin-bottom: 0; color: var(--muted); line-height: 1.9; }
.faq-grid { margin-top: 18px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.faq-grid article { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: #151925; }
.faq-grid h3 { margin-bottom: 12px; font-size: 18px; }
.faq-grid p { margin-bottom: 0; color: #969eae; font-size: 13px; line-height: 1.8; }

.site-footer { width: var(--shell); margin: 0 auto; padding: 52px 0 70px; display: grid; grid-template-columns: .7fr 1fr auto; gap: 50px; align-items: center; border-top: 1px solid var(--line); color: #89909e; font-size: 12px; line-height: 1.7; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 48px; }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand strong { color: #fff; font-size: 18px; }
.copyright { margin: 0; white-space: nowrap; }

@media (max-width: 1180px) {
  :root { --shell: min(100% - 36px, 1480px); }
  .header-shell { flex-wrap: wrap; padding: 15px 0; }
  .nav-toggle { display: grid; margin-left: auto; width: 42px; height: 42px; place-content: center; gap: 5px; color: #fff; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
  .nav-toggle span:not(.sr-only) { width: 17px; height: 1px; background: currentColor; }
  .site-nav { display: none; flex-basis: 100%; margin-left: 0; padding-top: 8px; }
  .site-nav.is-open { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero-media { min-height: 0; padding: 42px 24px 0; }
  .hero-media > img { width: min(100%, 520px); max-width: 100%; height: auto; aspect-ratio: 9 / 16; }
  .hero-media::after { background: linear-gradient(180deg, rgba(16,19,29,.25), transparent 30%); }
  .drama-card, .drama-card.feature-card { grid-column: span 6; display: block; }
  .feature-card .card-copy { padding: 24px; }
  .genre-section, .complete-section, .preview-section { grid-template-columns: 1fr; }
  .region-guide { grid-template-columns: 1fr; gap: 24px; }
  .genre-intro, .complete-copy { position: static; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .copyright { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100% - 24px); }
  html { scroll-padding-top: 82px; }
  .header-shell { min-height: 72px; }
  .brand img { width: 42px; }
  .brand-copy strong { font-size: 18px; }
  .brand-copy small { display: none; }
  .site-nav { flex-direction: column; align-items: stretch; overflow: visible; }
  .site-nav a { padding: 11px 4px; border-radius: 0; border-top: 1px solid var(--line); }
  .hero { min-height: 0; margin-top: 12px; border-radius: 22px; }
  .hero-copy { padding: 38px 24px; }
  .hero h1 { font-size: clamp(39px, 12.8vw, 62px); line-height: 1.02; }
  .hero-intro { font-size: 15px; }
  .hero-note { margin-top: 32px; }
  .hero-media figcaption { position: relative; right: auto; bottom: auto; width: auto; margin: -1px 0 0; border: 0; border-radius: 0; background: #11151f; }
  .section-block { margin-top: 88px; }
  .section-heading, .compact-heading, .ranking-head { grid-template-columns: 1fr; gap: 22px; }
  .daily-grid { display: grid; grid-template-columns: 1fr; }
  .drama-card, .drama-card.feature-card { grid-column: auto; }
  .genre-section { gap: 46px; padding: 32px 22px; border-radius: 22px; }
  .genre-board { grid-template-columns: 1fr; }
  .genre-board article { min-height: 210px; }
  .region-copy { grid-template-columns: 1fr; gap: 16px; }
  .story-card, .story-card.reverse { grid-template-columns: 1fr; min-height: 0; }
  .story-card.reverse img { order: 0; }
  .story-card img { aspect-ratio: 4 / 3; }
  .story-card > div { padding: 28px 24px; }
  .index-card { grid-template-columns: 1fr; }
  .index-card img { aspect-ratio: 4 / 3; }
  .ranking-section { padding: 30px 20px; border-radius: 22px; }
  .ranking-list article { grid-template-columns: 100px minmax(0, 1fr); gap: 18px; align-items: start; }
  .ranking-list img { width: 100px; border-radius: 12px; }
  .ranking-list h3 { font-size: 20px; }
  .ranking-list p { font-size: 12px; }
  .preview-section { gap: 36px; padding-bottom: 80px; }
  .preview-lanes { grid-template-columns: 1fr; }
  .preview-lanes article { min-height: 120px; }
  .official-brand { grid-template-columns: 72px 1fr; gap: 20px; padding: 26px 22px; }
  .official-brand img { width: 72px; }
  .official-brand h2 { font-size: 32px; }
  .official-brand p:last-child { grid-column: 1 / -1; }
  .faq-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; padding-bottom: 45px; }
  .copyright { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
