/* ===== 기본 ===== */
      body {
         color: var(--text);
  
      }

      a {
        color: #d4af37;
        text-decoration: none;
      }
      a:hover {
        text-decoration: underline;
      }

      /* ===== 레이아웃 ===== */
      .dream-detail-wrap {
        max-width: 760px;
        margin: 0 auto;
      }

      /* ===== HERO ===== */
      .dream-detail-hero {
        padding: 22px;
        border-radius: 18px;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        margin-bottom: 28px;
      }

      .dream-badge {
        font-size: 12px;
        font-weight: 700;
        color: #d4af37;
        letter-spacing: 0.3px;
        margin-bottom: 6px;
      }

      .dream-detail-title {
        font-size: 26px;
        font-weight: 900;
        line-height: 1.3;
        margin-bottom: 10px;
        color: #1a1a1a;
      }

      .dream-detail-subtitle {
        font-size: 15px;
        color: #64748b;
        margin-bottom: 14px;
      }

      /* ===== 키워드 ===== */
      .dream-chip-wrap {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px;
      }

      .dream-chip {
        font-size: 12px;
        font-weight: 600;
        padding: 5px 10px;
        border-radius: 999px;
        background: #fef9f0;
        border: 1px solid #d4af37;
        color: #b8860b;
      }

      /* ===== 포인트 ===== */
      .dream-point-box {
            border: 1px solid #e2e8f0;
    background: #f8fafc;
        border-radius: 14px;
        padding: 14px 16px;
      }

      .dream-point-box strong {
        display: block;
        font-size: 14px;
        color: #d4af37;
        margin-bottom: 6px;
      }

      .dream-point-box p {
        margin: 0;
        font-size: 14px;
        color: #1a1a1a;
      }

      /* ===== 본문 ===== */
      .dream-content {
        margin-top: 26px;
      }
      .dream-content-body,
      .dream-psychology {
        margin: 0 0 10px;
        font-size: 14px;
        line-height: 1.65;
        
        color: #1a1a1a;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
        border-radius: 16px;
        padding: 1rem 1.1rem;
        height: 100%;
      }
      .dream-content-body p {
        margin-bottom: 14px;
        font-size: 15px;
        color: #1a1a1a;
      }

      /* ===== 심리 해석 ===== */
      .dream-psychology {
        margin-top: 30px;
        padding-top: 22px;
        border-top: 1px solid #e2e8f0;
      }

      .dream-psychology h2 {
        font-size: 17px;
        font-weight: 800;
        margin-bottom: 10px;
        color: #d4af37;
      }

      .dream-psychology p {
        font-size: 14px;
        color: #1a1a1a;
      }

      /* ===== 마무리 ===== */
      .dream-closing {
        margin-top: 22px;
        padding: 16px;
        border-radius: 14px;
        background: #fef9f0;
        border: 1px solid #d4af37;
      }

      .dream-closing p {
        margin: 0;
        font-size: 14px;
        color: #b8860b;
        font-weight: 600;
      }

      /* ===== 뒤로가기 ===== */
      .dream-back {
        margin-top: 26px;
        text-align: center;
      }

      .dream-back a {
        font-size: 14px;
        font-weight: 600;
        color: #64748b;
      }

      .dream-back a:hover {
        color: #d4af37;
      }

      /* ===== 모바일 ===== */
      @media (max-width: 480px) {
        .dream-detail-title {
          font-size: 22px;
        }
        .dream-detail-subtitle {
          font-size: 14px;
        }
      }

      .dream-related-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.dream-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.dream-related-card .card-title {
  color: #1a1a1a !important;
}

.dream-related-card .card-text {
  color: #64748b !important;
}

/* ===== 사주 해석 버튼 ===== */
.dream-saju-extension {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed #d4af37;
}

.saju-extension-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.saju-extension-body {
  font-size: 14px;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 10px;
}

/* 핵심 버튼 */
.saju-extension-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 8px 14px;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 600;

  color: #b8860b;
  background: #fef9f0;
  border: 1px solid #d4af37;

  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.saju-extension-button:hover {
  background: #fff5e6;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.25);
}

.card-body{
    border-radius: 18px;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    }