/* ════════════════════════════════════════════════════════════════
   Celebrity Saju Page — 라이트 디자인 + 다크 토글
   ════════════════════════════════════════════════════════════════ */
.cs-page {
  min-height: calc(100vh - 56px);
  padding-top: 56px;
  background: #f8fafc;
  color: #1f1937;
}

.cs-h-ico {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: #a855f7;
  color: white;
  border-radius: 8px;
  margin-right: 10px;
  font-size: 16px;
}
.cs-h-amber { background: #f59e0b; }

/* ─── 셀럽 가로 스크롤 ─── */
.cs-celebs { padding: 24px 0 16px; }
.cs-celebs-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  margin-bottom: 14px;
}
.cs-celebs-head strong {
  font-size: 16px;
  font-weight: 800;
  color: #1f1937;
}
.cs-arrow-btns { display: flex; gap: 8px; }
.cs-arrow {
  width: 36px; height: 36px;
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #4b5563;
}
.cs-arrow:hover { background: #faf5ff; }

.cs-celeb-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 24px 10px;
  scroll-behavior: smooth;
}
.cs-celeb-row::-webkit-scrollbar { height: 6px; }
.cs-celeb-row::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 3px; }

.cs-celeb-card {
  flex: 0 0 92px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: #1f1937;
  transition: transform 0.15s;
}
.cs-celeb-card:hover { transform: translateY(-2px); }
.cs-celeb-card.active .cc-thumb { border-color: #f59e0b; box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25); }
.cs-celeb-card.active .cc-name { color: #f59e0b; font-weight: 700; }

.cc-thumb {
  width: 80px; height: 80px;
  margin: 0 auto 6px;
  border-radius: 16px;
  border: 3px solid transparent;
  background-size: cover;
  background-position: center;
  transition: all 0.2s;
}
.cc-name {
  font-size: 12px;
  font-weight: 700;
  color: #1f1937;
  line-height: 1.2;
  margin-bottom: 1px;
}
.cc-grp {
  font-size: 10px;
  color: #6b7280;
}

/* ─── 셀럽 헤드 ─── */
.cs-head { padding: 30px 24px 18px; }
.cs-head-card {
  position: relative;
  padding: 24px 30px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  margin-bottom: 14px;
}
.cs-back {
  position: absolute;
  top: 24px; left: 24px;
  width: 28px; height: 28px;
  background: transparent;
  border: none;
  font-size: 22px;
  color: #4b5563;
  cursor: pointer;
}
.cs-head-card h1 {
  font-size: 32px;
  font-weight: 800;
  margin-left: 36px;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cs-head-meta {
  display: flex; gap: 18px;
  margin-left: 36px;
  font-size: 13px;
  color: #6b7280;
}
.cs-head-meta span { display: flex; align-items: center; gap: 6px; }
.cs-ico { color: #a855f7; }

.cs-info-banner {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 12px;
  font-size: 13px;
  color: #92400e;
}
.cs-info-ico {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  background: #f59e0b;
  color: white;
  border-radius: 50%;
  font-size: 13px;
  flex-shrink: 0;
}

.cs-banner-container {
  margin-bottom: 24px;
}

.cs-banner-warn {
  padding: 12px 18px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 10px;
  font-size: 12px;
  color: #92400e;
  display: flex; align-items: center; gap: 8px;
}

/* ─── Four Pillars 설명 ─── */
.cs-fp-container {
  margin-bottom: 24px;
}
.cs-fp-card {
  padding: 30px 24px 18px;
  background: linear-gradient(135deg, #7c2d12 0%, #9a3412 50%, #c2410c 100%);
  border-radius: 18px;
  color: white;
}
.cs-fp-head {
  display: flex; gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.cs-fp-ico {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #fbbf24;
  border-radius: 8px;
  font-size: 18px;
  flex-shrink: 0;
}
.cs-fp h2 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}
.cs-fp-sub {
  font-size: 12px;
  color: #fde68a;
  font-weight: 600;
}
.cs-fp-text {
  font-size: 13px;
  line-height: 1.7;
  color: #fef3c7;
  margin-bottom: 22px;
}
.cs-fp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
@media (max-width: 800px) { .cs-fp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cs-fp-grid { grid-template-columns: 1fr; } }

.cs-fpc {
  padding: 16px 18px;
  background: rgba(0,0,0,0.25);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.cs-fpc-green { border-left: 3px solid #34d399; }
.cs-fpc-blue  { border-left: 3px solid #60a5fa; }
.cs-fpc-pink  { border-left: 3px solid #f472b6; }
.cs-fpc-purple{ border-left: 3px solid #c4b5fd; }

.cs-fpc-ic {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}
.cs-fpc h4 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
}
.cs-fpc h4 span { color: #fde68a; font-weight: 500; font-size: 11px; margin-left: 4px; }
.cs-fpc-tag {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(251, 191, 36, 0.2);
  color: #fcd34d;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 8px;
}
.cs-fpc p {
  font-size: 11.5px;
  line-height: 1.6;
  color: #fef3c7;
}
.cs-fp-tip {
  padding: 12px 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.6;
}

/* ─── Four Pillars 카드 ─── */
.cs-pillars-container {
  margin-bottom: 24px;
}
.cs-pillars {
  padding: 30px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
}
.cs-pillars h3 {
  display: flex; align-items: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}
.cs-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.cs-pillar {
  padding: 16px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 12px;
  text-align: center;
}
.cs-pl-blue {
  background: #dbeafe;
  border-color: #bfdbfe;
}
.cs-pl-label {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 6px;
}
.cs-pl-sub {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 6px;
}
.cs-pillar h4 {
  font-size: 32px;
  font-weight: 800;
  color: #1f1937;
  margin-bottom: 4px;
}
.cs-pl-han {
  font-size: 12px;
  color: #92400e;
  font-weight: 600;
}
.cs-pl-blue .cs-pl-han { color: #1e40af; }
.cs-pl-cycle {
  padding: 12px;
  background: #f9fafb;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
  text-align: center;
}
.cs-cy-label {
  font-size: 10px;
  color: #6b7280;
  margin-bottom: 4px;
}
.cs-pl-cycle p:last-child {
  font-size: 13px;
  font-weight: 700;
  color: #1f1937;
}

/* ─── 오행 섹션 ─── */
.cs-five {
  margin-bottom: 24px;
}
.cs-five-card {
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 18px;
  padding: 28px;
}
.cs-five-card h3 {
  display: flex; align-items: center;
  font-size: 18px;
  font-weight: 800;
}
.cs-five-sub {
  font-size: 12px;
  color: #92400e;
  margin: 6px 0 22px;
}
.cs-five-body {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 30px;
  margin-bottom: 22px;
}
@media (max-width: 800px) { .cs-five-body { grid-template-columns: 1fr; } }

.cs-radar { text-align: center; }
.cs-radar-svg { width: 100%; max-width: 280px; }
.cs-radar-legend {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  font-size: 11px;
  color: #4b5563;
}
.cs-radar-legend span { display: inline-flex; align-items: center; gap: 4px; }
.cs-radar-legend .dot { width: 8px; height: 8px; border-radius: 50%; }

.cs-bars { display: flex; flex-direction: column; gap: 10px; }
.cs-bar {
  display: grid;
  grid-template-columns: 24px 70px 1fr 50px 80px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}
.cs-bar-ico { font-size: 16px; }
.cs-bar-name { font-weight: 700; color: #1f1937; }
.cs-bar-track {
  height: 8px;
  background: rgba(0,0,0,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.cs-bar-fill { height: 100%; border-radius: 4px; }
.cs-bar-val { font-size: 12px; font-weight: 700; }
.cs-bar-stars { color: #fbbf24; font-size: 11px; }

.cs-top3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
@media (max-width: 600px) { .cs-top3 { grid-template-columns: 1fr; } }
.cs-t3 {
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
}
.cs-t3-green { background: #ecfdf5; border-color: #a7f3d0; }
.cs-t3-red { background: #fef2f2; border-color: #fecaca; }
.cs-t3-amber { background: #fef3c7; border-color: #fcd34d; }
.cs-t3 span { font-size: 24px; }
.cs-t3 strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin: 6px 0 4px;
}
.cs-t3 p { font-size: 11px; color: #4b5563; line-height: 1.4; }

.cs-reading-box {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.cs-reading-amber {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.4);
}
.cs-rb-title {
  font-size: 13px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 6px;
}
.cs-rb-text { font-size: 12.5px; color: #78350f; line-height: 1.6; }
.cs-rb-cap { font-size: 12px; margin-bottom: 6px; }
.cs-rb-pr, .cs-rb-sc {
  display: inline-block;
  padding: 3px 9px;
  background: #f59e0b;
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  margin-right: 6px;
}
.cs-rb-sc { background: #ea580c; }

/* ─── Sipseong ─── */
.cs-sip { margin-bottom: 24px; }
.cs-sip-card {
  padding: 28px;
  background: #fce7f3;
  border: 1px solid #fbcfe8;
  border-radius: 18px;
  margin-bottom: 16px;
}
.cs-sip-card h3 {
  display: flex; align-items: center;
  font-size: 18px;
  font-weight: 800;
}
.cs-sip-sub {
  font-size: 13px;
  color: #831843;
  margin: 6px 0 22px;
}
.cs-sip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
@media (max-width: 800px) { .cs-sip-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cs-sip-grid { grid-template-columns: 1fr; } }

.cs-sip-c {
  padding: 16px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
}
.cs-sip-ic {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: #fce7f3;
  border-radius: 7px;
  margin-bottom: 8px;
  font-size: 14px;
}
.cs-sip-c h4 {
  font-size: 13px;
  font-weight: 800;
  color: #be185d;
  margin-bottom: 6px;
}
.cs-sip-c p {
  font-size: 11.5px;
  color: #4b5563;
  line-height: 1.6;
}

.cs-sip-dist {
  padding: 14px 18px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 10px;
}
.cs-sd-title {
  font-size: 12px;
  font-weight: 700;
  color: #831843;
  margin-bottom: 10px;
}
.cs-sd-row { display: flex; gap: 8px; flex-wrap: wrap; }
.cs-sd-tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 11px;
  background: #fdf2f8;
  border: 1px solid #fbcfe8;
  font-size: 11px;
  font-weight: 600;
  color: #831843;
  border-radius: 999px;
}
.cs-sd-tag em { font-style: normal; font-size: 9px; color: #ec4899; }

.cs-sip-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 800px) { .cs-sip-bottom { grid-template-columns: 1fr; } }
.cs-sb-card {
  padding: 22px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
}
.cs-sb-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 14px;
}
.cs-sb-bars { display: flex; flex-direction: column; gap: 10px; }

.cs-gy-block { margin-bottom: 14px; }
.cs-gy-row {
  display: flex; justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.cs-gy-label {
  font-size: 11px;
  color: #6b7280;
}
.cs-gy-tag-amber {
  padding: 3px 10px;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
}
.cs-gy-name {
  font-size: 22px;
  font-weight: 800;
  color: #92400e;
  margin: 4px 0 2px;
}
.cs-gy-en { font-size: 11px; color: #6b7280; margin-bottom: 8px; }
.cs-gy-counts { display: flex; flex-wrap: wrap; gap: 6px; }
.cs-gc-pill {
  padding: 3px 9px;
  background: #d1fae5;
  color: #047857;
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
}
.cs-gy-yong {
  padding: 14px;
  background: #fef3c7;
  border-radius: 10px;
}
.cs-gy-yong-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; text-align: center;
}
.cs-gy-yl {
  font-size: 11px;
  color: #92400e;
  font-weight: 700;
  margin-bottom: 4px;
}
.cs-gy-yong-grid h3 {
  font-size: 22px;
  color: #1f1937;
  font-weight: 800;
}
.cs-gy-pill-purple {
  display: inline-block;
  padding: 4px 12px;
  background: #f3e8ff;
  color: #6b21a8;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
}

/* ─── Major Fortune ─── */
.cs-fortune { margin-bottom: 24px; }
.cs-fortune-card {
  padding: 28px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
}
.cs-fortune-card h3 {
  display: flex; align-items: center;
  font-size: 18px;
  font-weight: 800;
  position: relative;
}
.cs-fc-tag {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
  margin-left: auto;
}
.cs-fortune-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-top: 18px;
}
@media (max-width: 900px) { .cs-fortune-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 480px) { .cs-fortune-grid { grid-template-columns: repeat(2, 1fr); } }

.cs-fc {
  text-align: center;
  padding: 12px 8px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 10px;
}
.cs-fc-yr {
  font-size: 11px;
  color: #92400e;
  font-weight: 700;
  margin-bottom: 4px;
}
.cs-fc h4 {
  font-size: 18px;
  font-weight: 800;
  color: #92400e;
  margin-bottom: 2px;
}
.cs-fc-han { font-size: 11px; color: #b45309; margin-bottom: 4px; }
.cs-fc-range { font-size: 10px; color: #b45309; }

/* ─── Timeline ─── */
.cs-timeline { margin-bottom: 24px; }
.cs-tl-card {
  padding: 28px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 18px;
}
.cs-tl-card h3 {
  display: flex; align-items: center;
  font-size: 18px;
  font-weight: 800;
}
.cs-tl-sub {
  font-size: 13px;
  color: #1e40af;
  line-height: 1.6;
  margin: 8px 0 14px;
}
.cs-tl-legend {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 11px;
  color: #4b5563;
  margin-bottom: 22px;
}
.cs-tlg {
  padding: 2px 9px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 4px;
  margin-right: 4px;
}
.cs-tlg-blue { background: #3b82f6; color: white; }
.cs-tlg-red { background: #ef4444; color: white; }
.cs-tlg-yellow { background: #fbbf24; color: #1f1937; }

.cs-tl-list { display: flex; flex-direction: column; gap: 10px; }
.cs-tl-row {
  padding: 18px 22px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 12px;
  position: relative;
}
.cs-tl-row.current {
  background: #fef3c7;
  border-color: #fbbf24;
}
.cs-tl-row.current::before {
  content: 'Current';
  position: absolute;
  top: 18px; left: 22px;
  padding: 3px 10px;
  background: #f59e0b;
  color: white;
  font-size: 10px;
  font-weight: 800;
  border-radius: 4px;
}
.cs-tl-head {
  display: flex; align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.cs-tl-row.current .cs-tl-head { padding-left: 78px; }
.cs-tl-head .yr { font-size: 18px; font-weight: 800; color: #1f1937; }
.cs-tl-head .han { font-size: 14px; color: #6b7280; }
.cs-tl-head .han em { font-style: normal; }
.cs-tl-head .range { font-size: 12px; color: #6b7280; margin-left: auto; }
.cs-tl-progress {
  display: flex; align-items: center; gap: 10px;
  margin-left: auto;
}
.cs-tl-bar {
  width: 80px; height: 5px;
  background: rgba(0,0,0,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.cs-tl-bar-fill {
  height: 100%;
  border-radius: 3px;
}
.cs-tl-pts { font-size: 12px; font-weight: 700; }
.cs-tl-tag {
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 4px;
}
.cs-tl-tag-hot { background: #fee2e2; color: #b91c1c; }
.cs-tl-tag-shine { background: #dbeafe; color: #1e40af; }

.cs-tl-grid3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 700px) { .cs-tl-grid3 { grid-template-columns: 1fr; } }
.cs-tl-block {
  padding: 12px 14px;
  background: #faf5ff;
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: 8px;
}
.cs-tl-block.green { background: #ecfdf5; border-color: #a7f3d0; }
.cs-tl-block.yellow { background: #fef3c7; border-color: #fcd34d; }
.cs-tl-block strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #6b21a8;
}
.cs-tl-block.green strong { color: #047857; }
.cs-tl-block.yellow strong { color: #92400e; }
.cs-tl-block p {
  font-size: 11px;
  color: #4b5563;
  line-height: 1.5;
}

/* ─── Decisive Moments ─── */
.cs-moments { margin-bottom: 24px; }
.cs-mom-card {
  padding: 30px;
  background: linear-gradient(135deg, #4c1d95 0%, #312e81 100%);
  border-radius: 18px;
  color: white;
}
.cs-mom-card h3 {
  display: flex; align-items: center;
  font-size: 20px;
  font-weight: 800;
}
.cs-mom-card .cs-h-ico { background: #fbbf24; color: #1f1937; }
.cs-mom-sub {
  font-size: 13px;
  color: #c4b5fd;
  margin: 8px 0 22px;
}

.cs-mom-grid { display: flex; flex-direction: column; gap: 16px; }
.cs-mom {
  padding: 20px 24px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
}
.cs-mom-past { background: rgba(59, 130, 246, 0.15); border-color: rgba(59, 130, 246, 0.3); }
.cs-mom-now { background: rgba(251, 191, 36, 0.15); border-color: rgba(251, 191, 36, 0.4); }
.cs-mom-future { background: rgba(168, 85, 247, 0.15); border-color: rgba(168, 85, 247, 0.3); }

.cs-mom-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 800;
  border-radius: 4px;
  margin-bottom: 8px;
}
.cs-mom-past .cs-mom-tag { background: #3b82f6; color: white; }
.cs-mom-now .cs-mom-tag { background: #f59e0b; color: #1f1937; }
.cs-mom-future .cs-mom-tag { background: #a855f7; color: white; }

.cs-mom-yr {
  font-size: 13px;
  color: #c4b5fd;
  margin-bottom: 6px;
}
.cs-mom-yr em { font-style: normal; opacity: 0.7; margin-left: 4px; }
.cs-mom h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}
.cs-mom-l1, .cs-mom-l2 {
  font-size: 11px;
  font-weight: 700;
  color: #fbbf24;
  margin-top: 8px;
}
.cs-mom-text {
  font-size: 12px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-top: 4px;
}

/* ─── Recent Year ─── */
.cs-recent { margin-bottom: 24px; }
.cs-rec-card {
  padding: 28px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
}
.cs-rec-card h3 {
  display: flex; align-items: center;
  font-size: 18px;
  font-weight: 800;
}
.cs-rec-sub {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.6;
  margin: 8px 0 22px;
}

.cs-yr {
  padding: 20px 24px;
  border-radius: 14px;
  margin-bottom: 16px;
  border: 1px solid;
}
.cs-yr-blue { background: #eff6ff; border-color: #bfdbfe; }
.cs-yr-amber { background: #fef3c7; border-color: #fde68a; }
.cs-yr-head {
  display: flex; align-items: center;
  margin-bottom: 12px;
}
.cs-yr-head h2 {
  font-size: 26px;
  font-weight: 800;
  color: #2563eb;
  margin-right: 8px;
}
.cs-yr-amber .cs-yr-head h2 { color: #b45309; }
.cs-yr-head h2 span { font-size: 16px; font-weight: 700; opacity: 0.7; }
.cs-yr-head h2 em { font-style: normal; font-size: 13px; color: #6b7280; opacity: 0.6; margin-left: 4px; }
.cs-yr-tag {
  margin-left: auto;
  padding: 4px 12px;
  background: #2563eb;
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
}
.cs-yr-amber .cs-yr-tag { background: #b45309; }

.cs-yr-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.cs-yr-tags span {
  padding: 3px 10px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 11px;
  font-weight: 700;
  color: #1e40af;
  border-radius: 999px;
}
.cs-yr-amber .cs-yr-tags span { color: #92400e; }

.cs-yr-list {
  list-style: none;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.cs-yr-list li {
  position: relative;
  padding-left: 18px;
  font-size: 12.5px;
  color: #1f1937;
  line-height: 1.6;
}
.cs-yr-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  color: #2563eb;
  font-weight: 800;
}
.cs-yr-amber .cs-yr-list li::before { color: #b45309; }
.cs-yr-tip {
  padding: 12px 14px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 8px;
  font-size: 12px;
  font-style: italic;
  color: #4b5563;
  line-height: 1.6;
}

.cs-rec-deep {
  padding: 16px 20px;
  background: #ede9fe;
  border: 1px solid #c4b5fd;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.7;
  color: #4c1d95;
}
.cs-rd-ico { color: #a855f7; }

/* ─── TMI Deep Dive ─── */
.cs-tmi { margin-bottom: 24px; }
.cs-tmi-card {
  padding: 30px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 18px;
}
.cs-tmi-card h3 {
  display: flex; align-items: center;
  font-size: 20px;
  font-weight: 800;
}
.cs-tmi-sub {
  font-size: 13px;
  color: #92400e;
  margin: 8px 0 22px;
}
.cs-tmi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 800px) { .cs-tmi-grid { grid-template-columns: 1fr; } }
.cs-tmi-c {
  padding: 22px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
}
.cs-tmi-pink h4 { color: #be185d; }
.cs-tmi-amber h4 { color: #b45309; }
.cs-tmi-red h4 { color: #b91c1c; }
.cs-tmi-c h4 {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}
.cs-tmi-c h4 span { font-size: 18px; }
.cs-tmi-tag {
  font-size: 11px;
  color: #92400e;
  margin-bottom: 12px;
  font-weight: 600;
}
.cs-tmi-c ul {
  list-style: none;
  padding: 0;
  display: flex; flex-direction: column;
  gap: 8px;
}
.cs-tmi-c li {
  position: relative;
  padding-left: 18px;
  font-size: 12px;
  color: #4b5563;
  line-height: 1.6;
}
.cs-tmi-c li::before {
  content: '▸';
  position: absolute;
  left: 0; top: 0;
  color: #f59e0b;
}

/* ─── Key Points ─── */
.cs-keypoints { margin-bottom: 24px; }
.cs-kp-card {
  padding: 30px;
  background: #1f2937;
  border-radius: 18px;
  color: white;
}
.cs-kp-card h3 {
  display: flex; align-items: center;
  font-size: 20px;
  font-weight: 800;
}
.cs-kp-sub {
  font-size: 13px;
  color: #d1d5db;
  margin: 8px 0 22px;
}
.cs-kp-banner {
  padding: 22px;
  background: #fef3c7;
  border-radius: 14px;
  margin-bottom: 18px;
}
.cs-kp-banner p {
  font-size: 14px;
  line-height: 1.8;
  color: #1f1937;
  margin-bottom: 14px;
}
.cs-kp-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.cs-kp-tag-amber, .cs-kp-tag-red, .cs-kp-tag-purple {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
}
.cs-kp-tag-amber { background: white; color: #b45309; border: 1px solid #fde68a; }
.cs-kp-tag-red { background: #fee2e2; color: #b91c1c; }
.cs-kp-tag-purple { background: #ede9fe; color: #6b21a8; }

.cs-kp-guide {
  padding: 22px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}
.cs-kp-guide h4 {
  font-size: 14px;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 12px;
}
.cs-kp-guide ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.cs-kp-guide li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: #d1d5db;
}
.cs-kp-guide li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: #fbbf24;
  font-weight: 800;
}

/* ─── Bot ─── */
.cs-bot { margin-bottom: 24px; }
.cs-bot-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
  overflow: hidden;
}
.cs-bot-head {
  padding: 22px 26px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  color: white;
}
.cs-bot-head h3 {
  display: flex; align-items: center;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 4px;
}
.cs-bot-head h3 .cs-h-ico { background: rgba(255,255,255,0.2); }
.cs-bot-head p { font-size: 12px; opacity: 0.9; }

.cs-bot-stream {
  min-height: 280px;
  padding: 22px 26px;
  display: flex; flex-direction: column;
  gap: 14px;
}
.cs-bot-msg {
  display: flex; gap: 10px;
  align-items: flex-end;
  max-width: 80%;
}
.cs-bot-msg-bot { align-self: flex-start; }
.cs-bot-msg-user { align-self: flex-end; flex-direction: row-reverse; }
.cs-bot-av {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-radius: 50%;
  font-size: 16px;
  flex-shrink: 0;
}
.cs-bot-bbl {
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.6;
  border-radius: 12px;
}
.cs-bot-msg-bot .cs-bot-bbl {
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  color: #1f1937;
  border-top-left-radius: 4px;
}
.cs-bot-msg-user .cs-bot-bbl {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  color: white;
  border-top-right-radius: 4px;
}

.cs-bot-input-row {
  display: flex; gap: 10px;
  padding: 16px 26px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.cs-bot-input-row input {
  flex: 1;
  padding: 12px 18px;
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-radius: 999px;
  font-size: 13px;
  color: #1f1937;
  font-family: inherit;
}
.cs-bot-input-row input:focus { outline: none; border-color: #a855f7; }
.cs-bot-send {
  width: 42px; height: 42px;
  background: #fbbf24;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.cs-bot-send svg { width: 16px; height: 16px; }

.cs-bot-chips {
  display: flex; gap: 8px;
  padding: 0 26px 22px;
  flex-wrap: wrap;
}
.cs-bot-chips button {
  padding: 8px 14px;
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  color: #6b21a8;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
}

/* ─── Premium ─── */
.cs-premium { margin-bottom: 24pxx; }
.cs-pre-card {
  padding: 40px 30px;
  background: 
    linear-gradient(135deg, rgba(220, 38, 38, 0.85) 0%, rgba(157, 23, 77, 0.85) 50%, rgba(124, 45, 18, 0.85) 100%),
    radial-gradient(circle at 30% 30%, rgba(251, 191, 36, 0.2), transparent 50%);
  border-radius: 18px;
  text-align: center;
  color: white;
}
.cs-pre-pin {
  display: inline-block;
  padding: 6px 16px;
  background: #fbbf24;
  color: #1f1937;
  font-size: 11px;
  font-weight: 800;
  border-radius: 999px;
  margin-bottom: 14px;
}
.cs-pre-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cs-pre-card h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cs-pre-card p {
  font-size: 14px;
  color: #fef3c7;
  line-height: 1.7;
  margin-bottom: 24px;
}

.cs-pre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 24px;
  text-align: left;
}
@media (max-width: 700px) { .cs-pre-grid { grid-template-columns: 1fr; } }
.cs-pre-c {
  padding: 16px 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: flex-start;
}
.cs-pc-ico {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  font-size: 18px;
}
.cs-pc-pink { background: #fce7f3; }
.cs-pc-amber { background: #fef3c7; }
.cs-pc-green { background: #d1fae5; }
.cs-pc-blue { background: #dbeafe; }
.cs-pre-c strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}
.cs-pre-c p {
  font-size: 11px;
  color: #fef3c7;
  line-height: 1.5;
  margin: 0;
}

.cs-pre-locked {
  position: relative;
  max-width: 700px;
  margin: 0 auto 22px;
  padding: 28px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
}
.cs-pl-title {
  font-size: 12px;
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 12px;
}
.cs-pl-rows {
  filter: blur(4px);
  display: flex; flex-direction: column;
  gap: 8px;
}
.cs-pl-row {
  display: flex; gap: 6px;
}
.cs-pl-bar {
  display: block;
  height: 12px;
  width: var(--w);
  background: var(--c);
  border-radius: 4px;
  flex: 1;
}
.cs-pl-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.7);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.cs-pre-scores {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 700px;
  margin: 0 auto 24px;
}
@media (max-width: 700px) { .cs-pre-scores { grid-template-columns: repeat(2, 1fr); } }
.cs-pre-scores div {
  padding: 14px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  text-align: center;
}
.cs-pre-scores strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #fbbf24;
  margin-bottom: 4px;
}
.cs-pre-scores p {
  font-size: 10px;
  color: #fef3c7;
  margin: 0;
}
.cs-pre-total strong { color: #fb923c; font-size: 30px; }

.cs-pre-cta {
  padding: 16px 30px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1f1937;
  font-size: 15px;
  font-weight: 800;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 14px;
}
.cs-pre-cta:hover { transform: translateY(-1px); }
.cs-pre-foot {
  font-size: 11px;
  color: #fef3c7;
}

/* ─── 다크 모드 ─── */
body.dark .cs-page { background: #0a0a14; color: white; }
body.dark .cs-celebs-head strong,
body.dark .cs-pillars,
body.dark .cs-fortune-card,
body.dark .cs-rec-card,
body.dark .cs-bot-card,
body.dark .cs-sb-card,
body.dark .cs-tmi-c,
body.dark .cs-sip-c,
body.dark .cs-arrow,
body.dark .cs-celeb-card { color: white; }

body.dark .cs-head-card,
body.dark .cs-pillars,
body.dark .cs-fortune-card,
body.dark .cs-rec-card,
body.dark .cs-bot-card,
body.dark .cs-tl-card,
body.dark .cs-sb-card,
body.dark .cs-arrow {
  background: rgba(20, 18, 32, 0.7);
  border-color: rgba(168, 85, 247, 0.18);
  color: white;
}
body.dark .cs-head-card h1 { color: white; }
body.dark .cs-head-meta { color: #9ca3af; }
body.dark .cs-five-card,
body.dark .cs-sip-card,
body.dark .cs-tmi-card {
  background: rgba(30, 25, 45, 0.6);
  border-color: rgba(245, 158, 11, 0.2);
}
body.dark .cs-pillar { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.2); }
body.dark .cs-pillar h4 { color: white; }
body.dark .cs-pl-blue { background: rgba(59, 130, 246, 0.08); border-color: rgba(59, 130, 246, 0.2); }
body.dark .cs-pl-cycle { background: rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.06); }
body.dark .cs-pl-cycle p:last-child { color: white; }
body.dark .cs-bar-name { color: white; }
body.dark .cs-tl-row { background: rgba(20, 18, 32, 0.6); border-color: rgba(255,255,255,0.06); color: white; }
body.dark .cs-tl-row.current { background: rgba(245, 158, 11, 0.12); border-color: rgba(245, 158, 11, 0.4); }
body.dark .cs-tl-head .yr { color: white; }
body.dark .cs-tl-block { background: rgba(168, 85, 247, 0.08); border-color: rgba(168, 85, 247, 0.18); }
body.dark .cs-yr-blue { background: rgba(59, 130, 246, 0.08); border-color: rgba(59, 130, 246, 0.2); }
body.dark .cs-yr-amber { background: rgba(245, 158, 11, 0.08); border-color: rgba(245, 158, 11, 0.2); }
body.dark .cs-yr-list li { color: #d1d5db; }
body.dark .cs-yr-tip { background: rgba(0,0,0,0.3); color: #c5c4d6; }
body.dark .cs-rec-deep { background: rgba(168, 85, 247, 0.12); border-color: rgba(168, 85, 247, 0.3); color: #d1d5db; }
body.dark .cs-rec-deep strong { color: white; }
body.dark .cs-tmi-c { background: rgba(20, 18, 32, 0.7); border-color: rgba(245, 158, 11, 0.18); }
body.dark .cs-tmi-c li { color: #d1d5db; }
body.dark .cs-sip-c { background: rgba(20, 18, 32, 0.7); border-color: rgba(236, 72, 153, 0.18); }
body.dark .cs-sip-c p { color: #d1d5db; }
body.dark .cs-bot-stream { background: rgba(0,0,0,0.2); }
body.dark .cs-bot-msg-bot .cs-bot-bbl { background: rgba(20, 18, 32, 0.7); color: white; border-color: rgba(168, 85, 247, 0.2); }
body.dark .cs-bot-input-row input,
body.dark .cs-bot-chips button {
  background: rgba(20, 18, 32, 0.7);
  border-color: rgba(168, 85, 247, 0.2);
  color: white;
}
body.dark .cs-bot-input-row { border-top-color: rgba(255,255,255,0.06); }
body.dark .cs-fc { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.25); }
body.dark .cs-fc-yr,
body.dark .cs-fc h4,
body.dark .cs-fc-han,
body.dark .cs-fc-range { color: #fcd34d; }
body.dark .cs-celeb-card,
body.dark .cs-celeb-card .cc-name { color: white; }
body.dark .cs-celeb-card .cc-grp { color: #9ca3af; }
body.dark .cs-info-banner,
body.dark .cs-banner-warn { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.3); color: #fcd34d; }
