/**
 * Destiny Energy 东方美学风格
 * 优化 Happy Smile Wishes 主题
 * 
 * 设计理念：东方极简·禅意雅致
 */

/* ========================================
   Destiny Energy 配色系统（覆盖原有）
   ======================================== */

:root {
  /* 主色调 - 玫瑰金系（替换珊瑚红） */
  --color-primary: #EBC1A5 !important;          /* 玫瑰金 */
  --color-primary-dark: #D4A88A;
  --color-primary-light: #F5DCC8;
  
  /* 辅助色 - 玉石绿系（替换火橙） */
  --color-accent: #9CC5B0 !important;           /* 玉石绿 */
  --color-accent-dark: #7FA891;
  --color-accent-light: #C5E3D5;
  
  /* 背景 - 米白暖杏系 */
  --color-bg-light: #FFF8F3 !important;         /* 米白 */
  --color-bg-lighter: #F9E3C7 !important;       /* 暖杏 */
  --color-bg-card: #FEFCFA;                     /* 卡片纯净白 */
  
  /* 文字 - 深棕温暖系 */
  --color-text-dark: #3B2E2A !important;
  --color-text-light: #8B7B73 !important;
  --color-text-muted: #B5A79F;
  
  /* 金色装饰 */
  --color-gold: #D4A88A;
  --color-gold-glow: rgba(212, 168, 138, 0.3);
  
  /* 成功/错误色（柔和版本） */
  --color-success: #9CC5B0 !important;
  --color-error: #D4A88A !important;
  --color-warning: #F9E3C7 !important;
}

/* ========================================
   字体系统 - Serif 优雅
   ======================================== */

h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.modal-title,
.gradient-text {
  font-family: Georgia, 'Times New Roman', 'KaiTi', 'SimSun', serif !important;
  font-weight: 500 !important;  /* 不要太粗重 */
  letter-spacing: 0.02em;
}

body {
  background: #FFF8F3 !important;
}

/* ========================================
   渐变系统 - Destiny 柔和渐变
   ======================================== */

/* 主背景渐变 */
.smile-wall-section,
.front-page {
  background: linear-gradient(180deg, 
    #FFF8F3 0%, 
    #F9E3C7 40%, 
    #FFF8F3 100%
  ) !important;
}

/* 渐变文字 - 玫瑰金到玉石绿 */
.gradient-text {
  background: linear-gradient(135deg, 
    #EBC1A5 0%, 
    #D4A88A 50%, 
    #9CC5B0 100%
  ) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* ========================================
   按钮 - Destiny 优雅风格
   ======================================== */

.btn-primary,
.cta-button,
.btn.btn-primary {
  background: linear-gradient(135deg, #EBC1A5 0%, #D4A88A 100%) !important;
  color: white !important;
  font-family: Georgia, serif;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1.25rem 3rem;
  border-radius: 2.5rem;
  box-shadow: 0 8px 24px rgba(235, 193, 165, 0.25);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.btn-primary:hover,
.cta-button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 32px rgba(235, 193, 165, 0.35) !important;
}

/* 呼吸光 - 柔和版本（替换 pulse-glow） */
.pulse-glow,
.cta-button {
  animation: breathing-glow-gentle 4s ease-in-out infinite !important;
}

@keyframes breathing-glow-gentle {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(235, 193, 165, 0.25),
                0 0 30px rgba(235, 193, 165, 0.15);
  }
  50% {
    box-shadow: 0 12px 32px rgba(235, 193, 165, 0.35),
                0 0 50px rgba(235, 193, 165, 0.25);
  }
}

/* 次要按钮 */
.btn-secondary,
.btn-accent {
  background: white !important;
  color: #3B2E2A !important;
  border: 1.5px solid #EBC1A5 !important;
  font-family: Georgia, serif;
}

.btn-secondary:hover {
  background: #FFF8F3 !important;
  border-color: #D4A88A !important;
}

/* ========================================
   卡片 - Destiny 优雅风格
   ======================================== */

.feature-card {
  background: #FEFCFA !important;
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 4px 16px rgba(59, 46, 42, 0.06) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: radial-gradient(circle at top, 
    rgba(156, 197, 176, 0.08) 0%, 
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.feature-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 32px rgba(59, 46, 42, 0.1) !important;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  filter: grayscale(20%) opacity(0.9);  /* 降低饱和度 */
}

/* ========================================
   装饰元素 - Destiny 金线
   ======================================== */

/* 装饰金线 */
.decorative-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #D4A88A 50%, 
    transparent 100%
  );
  margin: 2rem auto;
  opacity: 0.7;
}

/* 章节标题装饰 */
.section-title {
  font-family: Georgia, serif !important;
  font-weight: 500 !important;
  color: #3B2E2A;
  position: relative;
  padding-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #D4A88A, transparent);
}

/* ========================================
   引言语句 - Destiny 诗意风格
   ======================================== */

.quote-destiny {
  font-family: Georgia, 'KaiTi', serif;
  font-size: 1.125rem;
  color: #8B7B73;
  font-style: italic;
  text-align: center;
  line-height: 1.8;
  max-width: 600px;
  margin: 2rem auto;
  position: relative;
  padding: 0 2rem;
}

.quote-destiny::before,
.quote-destiny::after {
  content: '"';
  font-size: 2rem;
  color: #D4A88A;
  opacity: 0.4;
}

/* ========================================
   统计数字 - Destiny 优雅展示
   ======================================== */

.stat-number {
  font-family: Georgia, serif !important;
  color: #D4A88A !important;
  font-weight: 500 !important;
}

.stat-item {
  background: white !important;
  box-shadow: 0 4px 16px rgba(59, 46, 42, 0.06) !important;
}

.stat-item:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(59, 46, 42, 0.08) !important;
}

/* ========================================
   Modal - Destiny 优雅弹窗
   ======================================== */

.modal-overlay {
  background: rgba(59, 46, 42, 0.75) !important;
  backdrop-filter: blur(12px);
}

.modal-container {
  background: linear-gradient(180deg, #FEFCFA 0%, #FFF8F3 100%) !important;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(59, 46, 42, 0.15) !important;
}

/* ========================================
   输入框 - Destiny 柔和风格
   ======================================== */

.form-input,
.form-textarea,
.form-select,
input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  border: 1px solid rgba(235, 193, 165, 0.3) !important;
  background: white !important;
  color: #3B2E2A;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
input:focus,
select:focus,
textarea:focus {
  border-color: #EBC1A5 !important;
  box-shadow: 0 0 0 3px rgba(235, 193, 165, 0.1) !important;
  outline: none;
}

/* ========================================
   报告页面 - Destiny 专业风格
   ======================================== */

.report-header {
  background: linear-gradient(180deg, #FFF8F3 0%, white 100%) !important;
}

.report-title {
  font-family: Georgia, serif !important;
  color: #3B2E2A !important;
}

.fortune-card,
.insight-card,
.recommendation-card {
  background: #FEFCFA !important;
  box-shadow: 0 4px 16px rgba(59, 46, 42, 0.06) !important;
  border-radius: 1rem;
}

.fortune-score {
  color: #D4A88A !important;  /* 玫瑰金数字 */
  font-family: Georgia, serif !important;
}

.fortune-fill {
  background: linear-gradient(90deg, #EBC1A5 0%, #9CC5B0 100%) !important;
}

/* ========================================
   页脚 - Destiny 优雅深色
   ======================================== */

.site-footer {
  background: #3B2E2A !important;
  color: rgba(255, 255, 255, 0.8);
}

.footer-navigation a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-navigation a:hover {
  color: #EBC1A5;
}

/* ========================================
   特殊效果 - Destiny 能量光环
   ======================================== */

/* 能量光环（替代粒子） */
.energy-glow {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, 
    rgba(235, 193, 165, 0.15) 0%, 
    rgba(156, 197, 176, 0.1) 50%,
    transparent 70%
  );
  animation: breathing-ring 6s ease-in-out infinite;
}

@keyframes breathing-ring {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* 光晕背景 */
.glow-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}

.glow-orb-1 {
  top: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #EBC1A5 0%, transparent 70%);
  animation: float-glow 8s ease-in-out infinite;
}

.glow-orb-2 {
  top: 50%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #9CC5B0 0%, transparent 70%);
  animation: float-glow 10s ease-in-out infinite reverse;
}

.glow-orb-3 {
  bottom: 10%;
  left: 30%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #F9E3C7 0%, transparent 70%);
  animation: float-glow 9s ease-in-out infinite;
}

@keyframes float-glow {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.5;
  }
}

/* ========================================
   诗意元素
   ======================================== */

/* 引言语句容器 */
.poetic-quote {
  font-family: Georgia, 'KaiTi', serif;
  font-size: 1.125rem;
  color: #8B7B73;
  font-style: italic;
  text-align: center;
  line-height: 1.9;
  max-width: 600px;
  margin: 2.5rem auto;
  position: relative;
  padding: 0 3rem;
}

.poetic-quote::before {
  content: '"';
  position: absolute;
  left: 0.5rem;
  top: -0.5rem;
  font-size: 3rem;
  color: #D4A88A;
  opacity: 0.3;
  font-family: Georgia, serif;
}

.poetic-quote::after {
  content: '"';
  position: absolute;
  right: 0.5rem;
  bottom: -1rem;
  font-size: 3rem;
  color: #D4A88A;
  opacity: 0.3;
  font-family: Georgia, serif;
}

/* 小标题装饰 */
.subtitle-destiny {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: #B5A79F;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ========================================
   章节装饰
   ======================================== */

/* 章节分隔金线 */
.section-divider {
  width: 100%;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    #D4A88A 20%, 
    #D4A88A 80%, 
    transparent 100%
  );
  margin: 3rem auto;
  opacity: 0.6;
}

/* 章节编号 */
.section-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #EBC1A5 0%, #D4A88A 100%);
  color: white;
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 16px rgba(235, 193, 165, 0.3);
}

/* ========================================
   卡片系统 - Destiny 精致风格
   ======================================== */

.fortune-card,
.insight-card,
.recommendation-card,
.feature-card {
  background: #FEFCFA !important;
  border-radius: 1rem !important;
  box-shadow: 0 4px 16px rgba(59, 46, 42, 0.06) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative;
  overflow: hidden;
}

/* 卡片顶部光晕（悬停时显示） */
.fortune-card::before,
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: radial-gradient(circle at top, 
    rgba(156, 197, 176, 0.08) 0%, 
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
}

.fortune-card:hover::before,
.feature-card:hover::before {
  opacity: 1;
}

.fortune-card:hover,
.feature-card:hover,
.insight-card:hover {
  transform: translateY(-4px) !important;  /* 轻微抬起 */
  box-shadow: 0 12px 32px rgba(59, 46, 42, 0.1) !important;
}

/* 移除原有的强烈悬停 */
.feature-card:hover {
  transform: translateY(-4px) !important;  /* 从-5px改为-4px */
}

/* ========================================
   图标系统 - 降低饱和度
   ======================================== */

.feature-icon,
.fortune-icon,
.rec-icon {
  font-size: 2.5rem;
  filter: grayscale(20%) opacity(0.9);  /* 稍微降低饱和度 */
  margin-bottom: 1.5rem;
}

/* ========================================
   统计数字 - Destiny 优雅展示
   ======================================== */

.stat-number {
  font-family: Georgia, serif !important;
  color: #D4A88A !important;  /* 玫瑰金 */
  font-weight: 500 !important;
}

.stat-item {
  background: white !important;
  box-shadow: 0 4px 16px rgba(59, 46, 42, 0.06) !important;
  transition: all 0.4s ease !important;
}

.stat-item:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(59, 46, 42, 0.08) !important;
}

/* ========================================
   报告页面 - Destiny 专业排版
   ======================================== */

.report-section {
  padding: 4rem 0;
}

.report-title {
  font-family: Georgia, serif !important;
  font-weight: 500 !important;
  color: #3B2E2A !important;
}

.report-meta {
  color: #8B7B73 !important;
}

/* 五行图表颜色 */
.elements-chart,
.fortune-bar {
  /* 使用 Destiny 的柔和色调 */
}

.fortune-fill {
  background: linear-gradient(90deg, 
    #EBC1A5 0%, 
    #9CC5B0 100%
  ) !important;
  border-radius: 999px;
}

/* ========================================
   Form 输入 - Destiny 精致
   ======================================== */

/* 字符计数器 */
.char-counter {
  color: #B5A79F !important;
  font-size: 0.875rem;
}

.char-counter.warning {
  color: #D4A88A !important;  /* 柔和的警告色 */
}

/* 上传区域 */
.upload-area {
  border: 2px dashed rgba(235, 193, 165, 0.4) !important;
  background: #FFF8F3;
  transition: all 0.3s ease;
}

.upload-area:hover {
  border-color: #EBC1A5 !important;
  background: #FEFCFA;
}

/* ========================================
   通知系统 - Destiny 柔和反馈
   ======================================== */

.notification {
  background: white !important;
  box-shadow: 0 8px 32px rgba(59, 46, 42, 0.12) !important;
  border-radius: 0.75rem;
}

.notification-success {
  border-left: 3px solid #9CC5B0 !important;
}

.notification-error {
  border-left: 3px solid #D4A88A !important;
}

/* ========================================
   页面切换动画 - 柔和过渡
   ======================================== */

@keyframes gentle-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);  /* 轻微位移 */
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: gentle-fade-in 0.8s ease-out forwards !important;  /* 放慢到0.8s */
}

/* ========================================
   阴影系统 - 柔和深棕色
   ======================================== */

:root {
  --shadow-sm: 0 1px 2px 0 rgba(59, 46, 42, 0.04) !important;
  --shadow-md: 0 4px 6px -1px rgba(59, 46, 42, 0.06) !important;
  --shadow-lg: 0 10px 15px -3px rgba(59, 46, 42, 0.08) !important;
  --shadow-xl: 0 20px 25px -5px rgba(59, 46, 42, 0.1) !important;
}

/* ========================================
   响应式调整
   ======================================== */

@media (max-width: 768px) {
  .hero-title-destiny {
    font-size: 2.25rem;
  }
  
  .poetic-quote {
    font-size: 1rem;
    padding: 0 1.5rem;
  }
}

/* ========================================
   打印优化 - Destiny A4 排版
   ======================================== */

@media print {
  * {
    background: white !important;
    color: #3B2E2A !important;
  }
  
  .btn-primary,
  .cta-button {
    background: #EBC1A5 !important;
  }
  
  @page {
    margin: 20mm;
    size: A4;
  }
}
```

---

现在让我立即应用这些优化...

