/* ════════════════════════════════════════════════════════════════
   Chae's Origin Story — Webtoon Page (다크 톤)
   ════════════════════════════════════════════════════════════════ */
.cw-page {
  min-height: calc(100vh - 56px);
  padding-top: 56px;
  background: linear-gradient(180deg, #0a0a18 0%, #060611 50%, #0a0613 100%);
}

/* ─── HERO ─── */
.cw-hero { position: relative; padding: 60px 24px 30px; overflow: hidden; }
.cw-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.15), transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(236, 72, 153, 0.12), transparent 50%);
  pointer-events: none;
}
.cw-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 50px;
  align-items: center;
}
@media (max-width: 800px) { .cw-hero-inner { grid-template-columns: 1fr; } }

.cw-crumb {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 18px;
}
.cw-crumb a { color: #06b6d4; text-decoration: none; }
.cw-crumb span { margin: 0 8px; color: #6b7280; }

.cw-pin {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(6, 182, 212, 0.15);
  color: #67e8f9;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 999px;
  border: 1px solid rgba(6, 182, 212, 0.3);
  margin-bottom: 20px;
}

.cw-h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.cw-grad-cyan {
  background: linear-gradient(135deg, #67e8f9 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cw-grad-rainbow {
  background: linear-gradient(135deg, #06b6d4 0%, #a855f7 50%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (max-width: 600px) { .cw-h1 { font-size: 42px; } }

.cw-hero-desc {
  font-size: 15px;
  color: #c5c4d6;
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 560px;
}

.cw-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.cw-tag {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c5c4d6;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
}

/* 우측 카드 */
.cw-hero-card {
  position: relative;
  width: 280px;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, #134e4a 0%, #042f2e 100%);
  border: 2px solid rgba(6, 182, 212, 0.5);
  box-shadow: 0 16px 48px rgba(6, 182, 212, 0.2);
}
.cw-ep-pin {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  padding: 5px 10px;
  background: linear-gradient(135deg, #34d399, #10b981);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 999px;
}
.cw-card-img {
  position: absolute; inset: 0;
  background: 
    radial-gradient(circle at 50% 30%, rgba(6, 182, 212, 0.35), transparent 60%),
    url('images/shaman-5-chae.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.9);
}
.cw-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
}
.cw-card-bot {
  position: absolute;
  bottom: 14px; left: 0; right: 0;
  z-index: 2;
  padding: 0 18px;
  text-align: center;
  color: white;
}
.cw-card-bot h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.cw-card-bot p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #67e8f9;
  margin-bottom: 12px;
}
.cw-card-eps {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(6, 182, 212, 0.25);
  color: #67e8f9;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(6, 182, 212, 0.4);
}

/* ─── EPISODES TRACK ─── */
.cw-eps-row { padding: 30px 24px 50px; }
.cw-eps-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.cw-eps-track::-webkit-scrollbar { height: 6px; }
.cw-eps-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

.cw-ep {
  flex: 0 0 200px;
  scroll-snap-align: start;
  text-align: left;
  padding: 14px 16px;
  background: rgba(20, 18, 32, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.cw-ep:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}
.cw-ep-active {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.5);
}
.cw-ep-no {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  background: rgba(168, 85, 247, 0.2);
  color: #c4b5fd;
  font-size: 10px;
  font-weight: 800;
  border-radius: 999px;
  margin-bottom: 8px;
}
.cw-ep-dot {
  width: 5px; height: 5px;
  background: #ec4899;
  border-radius: 50%;
}
.cw-ep-no em {
  font-style: normal;
  margin-left: 4px;
  padding: 1px 6px;
  background: #10b981;
  color: white;
  border-radius: 4px;
  font-size: 9px;
}
.cw-ep strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}
.cw-ep p {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.4;
}

/* ─── EPISODE BODY ─── */
.cw-episode { padding: 0 24px 60px; }
.cw-ep-head { margin-bottom: 24px; }
.cw-ep-label {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(236, 72, 153, 0.18);
  color: #f9a8d4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border-radius: 4px;
  margin-bottom: 10px;
}
.cw-ep-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.cw-ep-sub {
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
}

/* ─── PANEL (만화 컷) ─── */
.cw-panel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.cw-panel-wide { min-height: 360px; }
.cw-panel-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 600px) { .cw-panel-grid-2 { grid-template-columns: 1fr; } }

/* 패널 배경 — 일러스트 대신 그라데이션 + 분위기 */
.cw-bg-sunset {
  background: 
    radial-gradient(ellipse at 50% 70%, rgba(251, 191, 36, 0.4), transparent 50%),
    linear-gradient(180deg, #fb923c 0%, #ec4899 50%, #831843 100%);
}
.cw-bg-sunset::before {
  content: '🌇';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  opacity: 0.4;
}
.cw-bg-mirror {
  background: linear-gradient(135deg, #312e81 0%, #581c87 50%, #1e1b4b 100%);
}
.cw-bg-mirror::before {
  content: '👧';
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  opacity: 0.5;
}
.cw-bg-dream {
  background: linear-gradient(135deg, #ec4899 0%, #f9a8d4 50%, #ec4899 100%);
}
.cw-bg-dream::before {
  content: '✨';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
}
.cw-bg-study {
  background: 
    radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.3), transparent 40%),
    linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
  min-height: 320px;
}
.cw-bg-study::before {
  content: '💡';
  position: absolute;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 80px;
  opacity: 0.5;
}
.cw-bg-city {
  background: linear-gradient(180deg, #1e3a8a 0%, #312e81 50%, #0f172a 100%);
}
.cw-bg-city::before {
  content: '🏙';
  position: absolute;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  opacity: 0.4;
}
.cw-bg-fail {
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 50%, #450a0a 100%);
}
.cw-bg-fail::before {
  content: 'FAIL';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  font-size: 60px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.1em;
}
.cw-bg-night {
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 1%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 1%),
    radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 1%),
    radial-gradient(circle at 20% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 1%),
    linear-gradient(180deg, #0c0a1f 0%, #060611 100%);
}
.cw-bg-night::before {
  content: '⭐';
  position: absolute;
  top: 25%; right: 30%;
  font-size: 30px;
  opacity: 0.6;
}
.cw-bg-night::after {
  content: '✨';
  position: absolute;
  top: 50%; left: 30%;
  font-size: 24px;
  opacity: 0.5;
}

/* ─── BUBBLE (말풍선) ─── */
.cw-cap {
  position: relative;
  z-index: 2;
  font-style: italic;
  font-size: 13px;
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  font-weight: 600;
  align-self: flex-start;
}
.cw-bubble {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 10px 16px;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  max-width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cw-bubble-bot { align-self: center; margin-bottom: 10px; }
.cw-bubble-right { align-self: flex-end; }
.cw-bubble-yellow { background: rgba(251, 191, 36, 0.95); color: #1f1937; border: none; }
.cw-bubble-pair {
  position: relative;
  z-index: 2;
  margin-top: auto;
  align-self: flex-start;
  display: flex; flex-direction: column;
  gap: 4px;
}
.cw-bubble-bottom { align-self: flex-start; }

.cw-corner-tag {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  padding: 4px 10px;
  background: rgba(236, 72, 153, 0.95);
  color: white;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 6px;
}
.cw-tag-pink { background: rgba(236, 72, 153, 0.95); }
.cw-corner-heart {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  font-size: 24px;
  color: #ec4899;
}
.cw-mom-tag, .cw-judge-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 3px 9px;
  background: rgba(236, 72, 153, 0.85);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 4px;
}

/* ─── PAGINATION ─── */
.cw-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.cw-prev, .cw-next {
  padding: 12px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 13px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
}
.cw-prev:disabled { opacity: 0.4; cursor: default; }
.cw-next:hover { background: rgba(168, 85, 247, 0.15); border-color: rgba(168, 85, 247, 0.4); }

.cw-dots { display: flex; gap: 8px; }
.cw-dot {
  width: 8px; height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
}
.cw-dot-active {
  background: #ec4899;
  transform: scale(1.3);
}

/* ─── TOP COMMENTS ─── */
.cw-top-comments { padding: 50px 24px; }
.cw-tc-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 12px;
}
.cw-tc-head h3 {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}
.cw-tc-head p { font-size: 12px; color: #9ca3af; }
.cw-tc-pin {
  padding: 6px 14px;
  background: rgba(236, 72, 153, 0.18);
  color: #f9a8d4;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  border: 1px solid rgba(236, 72, 153, 0.35);
}

.cw-tc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
@media (max-width: 700px) { .cw-tc-grid { grid-template-columns: 1fr; } }
.cw-tc-card {
  position: relative;
  padding: 20px 22px;
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 14px;
}
.cw-tc-rank {
  position: absolute;
  top: -10px; left: 16px;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: white;
  font-size: 12px;
  font-weight: 800;
  border-radius: 50%;
  border: 2px solid #0a0a14;
}
.cw-rank-1 { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.cw-rank-2 { background: linear-gradient(135deg, #c5c4d6, #6b7280); }
.cw-tc-user {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.cw-tc-av {
  width: 36px; height: 36px;
  border-radius: 50%;
}
.cw-av-pink { background: linear-gradient(135deg, #fbcfe8, #ec4899); }
.cw-av-purple { background: linear-gradient(135deg, #c4b5fd, #a855f7); }
.cw-av-green { background: linear-gradient(135deg, #6ee7b7, #10b981); }
.cw-av-blue { background: linear-gradient(135deg, #93c5fd, #3b82f6); }
.cw-av-amber { background: linear-gradient(135deg, #fcd34d, #f59e0b); }
.cw-av-rose { background: linear-gradient(135deg, #fda4af, #f43f5e); }
.cw-tc-user strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: white;
}
.cw-tc-user p {
  font-size: 11px;
  color: #9ca3af;
}
.cw-tc-msg {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 12px;
}
.cw-tc-reacts {
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 11px;
  color: #c5c4d6;
}
.cw-tc-total {
  margin-left: auto;
  font-weight: 800;
  color: #f9a8d4;
}

.cw-tc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.cw-tc-stats div {
  text-align: center;
  padding: 14px;
  background: rgba(20, 18, 32, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
}
.cw-tc-stats strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 4px;
}
.cw-tc-stats p { font-size: 10px; color: #9ca3af; }

/* ─── REACTIONS ─── */
.cw-reactions { padding: 40px 24px; }
.cw-rx-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap; gap: 12px;
}
.cw-rx-head h3 {
  font-size: 18px;
  font-weight: 800;
  color: white;
}
.cw-rx-count { color: #9ca3af; font-weight: 600; }
.cw-rx-emojis {
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.18), rgba(168, 85, 247, 0.18));
  border: 1px solid rgba(236, 72, 153, 0.3);
  border-radius: 999px;
  display: flex; gap: 8px;
  font-size: 14px;
}

.cw-rx-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  margin-bottom: 18px;
}
.cw-rxt {
  flex-shrink: 0;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c5c4d6;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}
.cw-rxt-active {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: white;
  border-color: transparent;
}

.cw-rx-form {
  padding: 20px 22px;
  background: rgba(20, 18, 32, 0.5);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 14px;
  margin-bottom: 18px;
}
.cw-rx-input {
  display: flex; align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 12px;
}
.cw-rx-input input {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: white;
  font-size: 13px;
  font-family: inherit;
}
.cw-rx-input input:focus { outline: none; }
.cw-rx-input input::placeholder { color: #6b7280; }
.cw-rx-icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(168, 85, 247, 0.18);
  border-radius: 50%;
  font-size: 13px;
}

.cw-rx-form textarea {
  width: 100%;
  min-height: 80px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: white;
  font-size: 13px;
  font-family: inherit;
  resize: vertical;
}
.cw-rx-form textarea:focus { outline: none; border-color: rgba(168, 85, 247, 0.5); }
.cw-rx-form textarea::placeholder { color: #6b7280; }

.cw-rx-foot {
  display: flex; justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.cw-rx-foot span { font-size: 11px; color: #6b7280; }
.cw-rx-post {
  padding: 9px 18px;
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: white;
  font-size: 12px;
  font-weight: 800;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.cw-rx-post:hover { transform: translateY(-1px); }

.cw-rx-list { display: flex; flex-direction: column; gap: 10px; }
.cw-rx-item {
  padding: 16px 20px;
  background: rgba(20, 18, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
}
.cw-rx-item-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.cw-rx-item-head .cw-tc-av {
  width: 28px; height: 28px;
}
.cw-rx-item-head strong {
  font-size: 13px;
  font-weight: 700;
  color: white;
}
.cw-rx-ep-tag {
  padding: 2px 8px;
  background: rgba(168, 85, 247, 0.2);
  color: #c4b5fd;
  font-size: 9px;
  font-weight: 800;
  border-radius: 4px;
}
.cw-rx-time { font-size: 11px; color: #9ca3af; }
.cw-rx-msg {
  font-size: 13px;
  color: #d1d5db;
  line-height: 1.6;
  margin: 6px 0 10px;
}
.cw-rx-actions {
  display: flex; gap: 10px;
  font-size: 11px;
  color: #9ca3af;
}
.cw-rx-actions span {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}
.cw-rx-react-btn {
  margin-left: auto;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #c5c4d6;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}

/* ─── COMING SOON ─── */
.cw-coming { padding: 50px 24px; }
.cw-coming-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 26px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(236, 72, 153, 0.08));
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 18px;
  align-items: center;
}
@media (max-width: 700px) { .cw-coming-card { grid-template-columns: 1fr; } }

.cw-coming-img {
  width: 200px;
  height: 200px;
  background: 
    radial-gradient(circle at 40% 50%, #ec4899, #831843 60%, #1e1b4b 100%);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}
.cw-coming-img::before {
  content: '🔒';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
}
.cw-coming-img::after {
  content: '✦';
  position: absolute;
  top: 20%; right: 20%;
  font-size: 30px;
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.8);
}

.cw-coming-pin {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(168, 85, 247, 0.2);
  color: #c4b5fd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 999px;
  margin-bottom: 8px;
}
.cw-coming-ep {
  display: inline-block;
  margin-left: 8px;
  padding: 4px 12px;
  background: rgba(245, 158, 11, 0.2);
  color: #fcd34d;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 999px;
}
.cw-coming-ep em { font-style: normal; color: #fbbf24; margin-left: 4px; }
.cw-coming-body h3 {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin: 10px 0 8px;
}
.cw-coming-body p {
  font-size: 13px;
  color: #c5c4d6;
  line-height: 1.6;
  margin-bottom: 14px;
}
.cw-coming-meta {
  display: flex; gap: 12px;
  align-items: center;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.cw-coming-meta span { font-size: 12px; color: #9ca3af; }
.cw-coming-bell {
  padding: 6px 14px;
  background: rgba(168, 85, 247, 0.18);
  color: #c4b5fd;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  cursor: pointer;
  font-family: inherit;
}
.cw-coming-progress-label {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 6px;
}
.cw-coming-bar {
  position: relative;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}
.cw-coming-fill {
  height: 100%;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  border-radius: 3px;
}
.cw-coming-pct {
  position: absolute;
  top: -22px;
  right: 0;
  font-size: 12px;
  font-weight: 800;
  color: #c4b5fd;
}

/* ─── CTA ─── */
.cw-cta-section { padding: 40px 24px 80px; }
.cw-cta-card {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(20, 18, 32, 0.8), rgba(20, 18, 32, 0.6));
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 18px;
}
.cw-cta-star {
  display: block;
  font-size: 32px;
  color: #fbbf24;
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
  margin-bottom: 14px;
}
.cw-cta-card h2 {
  font-size: 28px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cw-cta-card p {
  font-size: 14px;
  color: #c5c4d6;
  line-height: 1.7;
  margin-bottom: 26px;
}
.cw-cta-row {
  display: flex; gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cw-cta-cyan, .cw-cta-pink {
  display: inline-block;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 800;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
}
.cw-cta-cyan {
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: white;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}
.cw-cta-pink {
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: white;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}
.cw-cta-cyan:hover, .cw-cta-pink:hover { transform: translateY(-2px); }

/* ─── 라이트 모드 ─── */
body.light .cw-page,
body.light .cw-hero,
body.light .cw-eps-row,
body.light .cw-episode,
body.light .cw-top-comments,
body.light .cw-reactions,
body.light .cw-coming,
body.light .cw-cta-section {
  background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
}
body.light .cw-h1 { /* 그라데이션 그대로 유지 */ }
body.light .cw-hero-desc,
body.light .cw-tc-msg,
body.light .cw-rx-msg,
body.light .cw-coming-body p,
body.light .cw-cta-card p { color: #4b5563; }
body.light .cw-tag {
  background: white;
  border-color: rgba(168, 85, 247, 0.18);
  color: #4b5563;
}
body.light .cw-ep,
body.light .cw-tc-card,
body.light .cw-rx-form,
body.light .cw-rx-item,
body.light .cw-cta-card,
body.light .cw-coming-card,
body.light .cw-tc-stats div {
  background: white;
  border-color: rgba(168, 85, 247, 0.15);
  box-shadow: 0 2px 8px rgba(76, 29, 149, 0.04);
}
body.light .cw-ep strong,
body.light .cw-ep-head h2,
body.light .cw-tc-head h3,
body.light .cw-tc-user strong,
body.light .cw-rx-head h3,
body.light .cw-rx-item-head strong,
body.light .cw-coming-body h3,
body.light .cw-cta-card h2,
body.light .cw-tc-stats strong { color: #1f1937; }
body.light .cw-ep p,
body.light .cw-tc-user p,
body.light .cw-rx-time,
body.light .cw-tc-stats p { color: #6b7280; }
body.light .cw-rx-input,
body.light .cw-rx-form textarea {
  background: #faf5ff;
  border-color: rgba(168, 85, 247, 0.18);
  color: #1f1937;
}
body.light .cw-rx-input input,
body.light .cw-rx-form textarea { color: #1f1937; }
body.light .cw-rxt {
  background: white;
  border-color: rgba(168, 85, 247, 0.15);
  color: #4b5563;
}
body.light .cw-prev,
body.light .cw-next,
body.light .cw-coming-bell {
  background: white;
  border-color: rgba(168, 85, 247, 0.18);
  color: #1f1937;
}
