.signature-celebration {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, 
    rgba(15, 20, 25, 0.95) 0%,
    rgba(0, 0, 0, 0.98) 100%);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: hidden;
  opacity: 1;
  /* 性能优化 */
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  will-change: transform, opacity;
}

.signature-celebration.entering {
  opacity: 0;
  animation: celebrationEntrance 0.8s ease-out forwards;
}

.signature-celebration.celebrating {
  opacity: 1;
  animation: celebrationPulse 6s ease-in-out infinite;
}

.signature-celebration.completing {
  opacity: 1;
  animation: celebrationExit 1.5s ease-in forwards;
}

@keyframes celebrationEntrance {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes celebrationPulse {
  0%, 100% {
    background: radial-gradient(ellipse at center, 
      rgba(15, 20, 25, 0.95) 0%,
      rgba(0, 0, 0, 0.98) 100%);
  }
  50% {
    background: radial-gradient(ellipse at center, 
      rgba(25, 35, 45, 0.95) 0%,
      rgba(5, 10, 15, 0.98) 100%);
  }
}

/* 全新的连续脉冲效果 */
.center-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 5;
}

.pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: continuousPulse 4s ease-out infinite;
  opacity: 0;
}

.pulse-ring:nth-child(1) {
  animation-delay: 0s;
}

.pulse-ring:nth-child(2) {
  animation-delay: 1.33s;
}

.pulse-ring:nth-child(3) {
  animation-delay: 2.66s;
}

@keyframes continuousPulse {
  0% {
    transform: scale(0.2);
    opacity: 0;
    border-width: 4px;
  }
  10% {
    opacity: 0.2;
    border-width: 3px;
  }
  30% {
    opacity: 0.3;
    border-width: 2px;
  }
  70% {
    opacity: 0.15;
  }
  100% {
    transform: scale(3);
    opacity: 0;
    border-width: 0;
  }
}

@keyframes celebrationExit {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

/* 星空背景 */
.stellar-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.star {
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
  animation: starTwinkle 8s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% {
    opacity: 0.2;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
}



/* 庆祝内容 */
.celebration-content {
  text-align: center;
  color: white;
  z-index: 20;
  max-width: 600px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.celebration-content:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.achievement-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.rank-icon {
  font-size: 1.5rem;
}

.user-recognition {
  margin-bottom: 2rem;
}

.user-name {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.achievement-message {
  font-size: 1.3rem;
  color: #cbd5e1;
}

.achievement-display {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.achievement-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.achievement-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4A90E2;
}

.stat-label {
  font-size: 0.9rem;
  color: #94a3b8;
}

/* 专属徽章 */
.exclusive-badge {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid;
  border-radius: 50px;
  backdrop-filter: blur(20px);
  margin-top: 1rem;
}

.badge-glow {
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 54px;
  filter: blur(12px);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
  }
}

.badge-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.badge-icon {
  font-size: 1.2rem;
}



/* 交互提示 */
.interaction-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  animation: hintPulse 2s ease-in-out infinite;
  z-index: 25;
}

@keyframes hintPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}/* 真理魔镜样式 */

.truth-mirror-container {
  position: relative;
  width: 100%;
  min-height: 120px; /* 进一步减少容器最小高度 */
}

.truth-mirror {
  position: relative;
  width: 100%;
  min-height: 100px; /* 进一步减少魔镜最小高度 */
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 50% / 20%;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(15, 20, 25, 0.8) 0%, rgba(10, 15, 20, 0.9) 100%);
  border: 3px solid transparent;
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.truth-mirror.hovered {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.truth-mirror.active {
  min-height: 500px;
  cursor: default;
  z-index: 1000;
  transform: scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.6),
    inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* 魔镜边框 - 简洁样式 */
.mirror-frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 20px;
  background: transparent;
  border-radius: 50% / 20%;
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: none;
}

/* 宇宙铭文装饰 - 金色铭文 */
.cosmic-inscriptions {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.inscription-glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 20px;
  background: transparent;
  border-radius: 2px;
  animation: none;
  transform-origin: center;
}

@keyframes glyphGlow {
  0%, 100% {
    opacity: 0.3;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  }
}

/* 魔镜核心 - 椭圆形状 */
.mirror-core {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 50% / 30%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 镜面 */
.mirror-surface {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* 星云背景 - 深黑色带蓝色调 */
.nebula-background {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: 
    linear-gradient(45deg, rgba(5, 10, 20, 0.95) 0%, rgba(10, 15, 25, 0.9) 50%, rgba(5, 10, 20, 0.95) 100%),
    radial-gradient(circle at 20% 30%, rgba(20, 40, 80, 0.7) 0%, transparent 80%),
    radial-gradient(circle at 80% 70%, rgba(30, 60, 100, 0.6) 0%, transparent 80%),
    radial-gradient(circle at 40% 80%, rgba(40, 80, 120, 0.5) 0%, transparent 80%),
    radial-gradient(circle at 60% 20%, rgba(50, 100, 150, 0.4) 0%, transparent 80%);
  animation: nebulaRotate 20s linear infinite;
}



/* 魔镜激活时隐藏花图标 */
.truth-mirror.active .flower-icon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
}

@keyframes nebulaRotate {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(1); }
}

.nebula-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: starTwinkle 3s ease-in-out infinite;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* 情绪响应流光 */
.emotional-flow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  animation: emotionalPulse 2s ease-in-out infinite;
  border-radius: 50%;
}

@keyframes emotionalPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

/* 魔镜消息 */
.mirror-message {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
}

.ancient-text {
  font-family: 'Georgia', serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  letter-spacing: 0.5px;
  animation: textGlow 2s ease-in-out infinite alternate;
}

/* 职业足迹提示文字 - 独立样式 */
.career-message .ancient-text {
  font-size: 1.1rem;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 15px rgba(255, 215, 0, 0.6);
  animation: careerGlow 4s ease-in-out infinite;
  margin-bottom: 300px; /* 增加间距到300px */
}

@keyframes careerGlow {
  0%, 100% { 
    opacity: 0.8;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
  }
  50% { 
    opacity: 1;
    text-shadow: 0 2px 20px rgba(255, 215, 0, 0.8);
  }
}

/* 职业足迹提示文字 - 独立样式 */
.career-message .ancient-text {
  font-size: 1.1rem;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 15px rgba(255, 215, 0, 0.6);
  animation: careerGlow 4s ease-in-out infinite;
  margin-bottom: 300px; /* 增加间距到300px */
}

@keyframes careerGlow {
  0%, 100% { 
    opacity: 0.8;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
  }
  50% { 
    opacity: 1;
    text-shadow: 0 2px 20px rgba(255, 215, 0, 0.8);
  }
}

/* 问题提示文字透明若隐若现 */
.question-message .ancient-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8); /* 改为白色，透明度调整 */
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
  animation: transparentGlow 3s ease-in-out infinite;
}

@keyframes transparentGlow {
  0%, 100% { 
    opacity: 0.3;
    text-shadow: 0 2px 5px rgba(255, 215, 0, 0.1);
  }
  50% { 
    opacity: 0.6;
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.3);
  }
}

/* 职业足迹提示文字 - 独立样式 */
.career-message .ancient-text {
  font-size: 1.1rem;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 15px rgba(255, 215, 0, 0.6);
  animation: careerGlow 4s ease-in-out infinite;
  margin-bottom: 300px; /* 增加间距到300px */
}

@keyframes careerGlow {
  0%, 100% { 
    opacity: 0.8;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
  }
  50% { 
    opacity: 1;
    text-shadow: 0 2px 20px rgba(255, 215, 0, 0.8);
  }
}

/* 职业足迹提示文字 - 独立样式 */
.career-message .ancient-text {
  font-size: 1.1rem;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 15px rgba(255, 215, 0, 0.6);
  animation: careerGlow 4s ease-in-out infinite;
  margin-bottom: 300px; /* 增加间距到300px */
}

@keyframes careerGlow {
  0%, 100% { 
    opacity: 0.8;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
  }
  50% { 
    opacity: 1;
    text-shadow: 0 2px 20px rgba(255, 215, 0, 0.8);
  }
}

/* 问题提示文字透明若隐若现 */
.question-message .ancient-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.8); /* 改为白色，透明度调整 */
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
  animation: transparentGlow 3s ease-in-out infinite;
}

@keyframes transparentGlow {
  0%, 100% { 
    opacity: 0.3;
    text-shadow: 0 2px 5px rgba(255, 215, 0, 0.1);
  }
  50% { 
    opacity: 0.6;
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.3);
  }
}

@keyframes textGlow {
  0% { text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }
  100% { text-shadow: 0 2px 20px rgba(255, 215, 0, 0.8); }
}

/* 记录类型选择 */
.record-type-selection {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  justify-content: center;
}

.record-type {
  flex: 0 0 220px; /* 固定宽度，不伸缩 */
  width: 220px; /* 明确指定宽度 */
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid transparent;
  height: 150px; /* 统一高度 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box; /* 确保padding包含在宽度内 */
}

.record-type:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(74, 144, 226, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.record-type.heart-narrative:hover {
  border-color: rgba(74, 144, 226, 0.7);
}

.record-type.evidence-imprint:hover {
  border-color: rgba(118, 75, 162, 0.7);
}

.type-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.type-label {
  display: block;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: white;
}

.type-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* 输入容器 */
.input-container {
  margin-top: 30px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 移动端专属输入样式 - 紧凑布局 */
.truth-mirror.mobile.active .input-container {
  margin-top: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.truth-input {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  line-height: 1.5;
  resize: vertical;
  transition: all 0.3s ease;
}

/* 移动端输入框 - 紧凑布局 */
.truth-mirror.mobile.active .truth-input {
  min-height: 150px; /* 减少高度 */
  padding: 12px; /* 减少内边距 */
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 16px; /* 防止iOS缩放 */
  line-height: 1.5;
  backdrop-filter: blur(5px);
}

.truth-input:focus {
  outline: none;
  border-color: rgba(74, 144, 226, 0.8);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

.truth-mirror.mobile.active .truth-input:focus {
  border-color: rgba(74, 144, 226, 0.9);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.4);
}

.truth-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.truth-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.truth-mirror.mobile.active .truth-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

.truth-mirror.mobile.active .truth-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

/* 情绪反馈 */
.emotional-feedback {
  margin-top: 15px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}

.intensity-bar {
  height: 4px;
  background: linear-gradient(90deg, #4A90E2, #764ba2);
  border-radius: 2px;
  margin-bottom: 8px;
  transition: width 0.3s ease;
}

.feedback-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  display: block;
  width: 100%;
}

/* 文件上传样式 */
.file-upload-container {
  width: 100%;
}

.upload-area {
  position: relative;
  width: 100%;
  min-height: 120px;
  border: 2px dashed rgba(74, 144, 226, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.upload-area:hover {
  border-color: rgba(74, 144, 226, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
}

.upload-icon {
  font-size: 2rem;
  opacity: 0.7;
}

.upload-text {
  font-size: 1.1rem;
  font-weight: bold;
  color: rgba(74, 144, 226, 0.9);
}

.upload-hint {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.upload-preview {
  margin-top: 15px;
  padding: 10px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 6px;
  border-left: 3px solid rgba(74, 144, 226, 0.5);
}

.preview-text {
  font-size: 0.9rem;
  color: rgba(74, 144, 226, 0.9);
  word-break: break-all;
}

/* 文件上传样式 */
.file-upload-container {
  width: 100%;
}

.upload-area {
  position: relative;
  width: 100%;
  min-height: 120px;
  border: 2px dashed rgba(74, 144, 226, 0.5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.upload-area:hover {
  border-color: rgba(74, 144, 226, 0.8);
  background: rgba(255, 255, 255, 0.1);
}

.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  text-align: center;
}

.upload-icon {
  font-size: 2rem;
  opacity: 0.7;
}

.upload-text {
  font-size: 1.1rem;
  font-weight: bold;
  color: rgba(74, 144, 226, 0.9);
}

.upload-hint {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.upload-preview {
  margin-top: 15px;
  padding: 10px;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 6px;
  border-left: 3px solid rgba(74, 144, 226, 0.5);
}

.preview-text {
  font-size: 0.9rem;
  color: rgba(74, 144, 226, 0.9);
  word-break: break-all;
}

/* 提交按钮 */
.submit-button {
  width: 100%;
  padding: 12px 24px;
  margin-top: 15px;
  background: linear-gradient(135deg, #4A90E2, #764ba2);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.submit-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.button-icon {
  font-size: 1.2rem;
}

/* 移动端专属按钮样式 - 紧凑布局 */
.truth-mirror.mobile.active .submit-button {
  padding: 12px 20px;
  margin-top: 15px;
  background: linear-gradient(135deg, #4A90E2, #5A9AE2);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.truth-mirror.mobile.active .submit-button:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.4);
}

.truth-mirror.mobile.active .submit-button:disabled {
  background: linear-gradient(135deg, #666, #888);
  border-color: rgba(255, 255, 255, 0.1);
}

/* 移动端专属关闭按钮 */
.mobile-close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-close-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.truth-mirror.mobile.active .mobile-close-button {
  display: flex;
}

.truth-mirror.mobile.active .submit-button:active:not(:disabled) {
  transform: translateY(1px);
  box-shadow: 0 2px 8px rgba(74, 144, 226, 0.4);
}

.truth-mirror.mobile.active .submit-button:disabled {
  background: linear-gradient(135deg, #666, #888);
  border-color: rgba(255, 255, 255, 0.1);
}

/* 移动端专属关闭按钮 */
.mobile-close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-close-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.truth-mirror.mobile.active .mobile-close-button {
  display: flex;
}

/* 环境遮罩 - 移动端不使用全屏遮罩 */
.environment-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 999;
  transition: opacity 0.5s ease;
}

.truth-mirror.mobile.active ~ .environment-mask {
  display: none; /* 移动端激活时不显示遮罩 */
}

/* 移动端适配 */
.truth-mirror.mobile {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.truth-mirror.mobile.active {
  /* 保持方框形式，不进入全屏 */
  position: relative;
  min-height: 400px;
  background: linear-gradient(135deg, 
    rgba(5, 10, 20, 0.95) 0%, 
    rgba(10, 15, 25, 0.9) 50%, 
    rgba(5, 10, 20, 0.95) 100%);
  backdrop-filter: blur(5px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(74, 144, 226, 0.3);
  border-radius: 20px;
  z-index: 1000;
  overflow: hidden;
}

.truth-mirror.mobile.active .mirror-frame {
  /* 紧凑框架设计 */
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.truth-mirror.mobile.active .mirror-core {
  /* 紧凑镜面效果 */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 120px; /* 缩小镜面高度 */
  border-radius: 15px;
  margin-bottom: 10px; /* 减少间距 */
}

.truth-mirror.mobile.active .mirror-surface {
  /* 移动端专属星云背景 */
  background: radial-gradient(circle at 50% 30%, 
    rgba(20, 40, 80, 0.4) 0%, 
    transparent 60%),
    radial-gradient(circle at 70% 70%, 
    rgba(30, 60, 100, 0.3) 0%, 
    transparent 60%);
  height: 100%;
  position: relative;
}

.truth-mirror.mobile.active .nebula-background {
  /* 移动端专属星云效果 */
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 40%, 
    rgba(74, 144, 226, 0.2) 0%, 
    transparent 70%),
    radial-gradient(circle at 60% 60%, 
    rgba(52, 152, 219, 0.15) 0%, 
    transparent 70%);
  animation: mobileNebula 15s linear infinite;
}

@keyframes mobileNebula {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.02); }
  100% { transform: rotate(360deg) scale(1); }
}

.truth-mirror.mobile.active .cosmic-inscriptions {
  /* 移动端简化铭文 */
  display: block;
  opacity: 0.3;
}

/* 确保空花在移动端激活状态下仍然显示 */
.truth-mirror.mobile.active .hint-message {
  display: flex !important;
  z-index: 1001;
  position: relative;
}

.truth-mirror.mobile.active .hint-message .ancient-text {
  opacity: 1 !important;
  visibility: visible !important;
}

/* 移动端提示消息 - 新样式 */
.hint-message {
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
  top: -20px; /* 向上移动避免遮盖空花 */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px; /* 确保有足够高度垂直居中 */
}

.hint-message .ancient-text {
  font-size: 1rem; /* 调大到1rem */
  color: #ffffff; /* 白色字体 */
  text-shadow: none; /* 删除现有阴影效果 */
  opacity: 0; /* 初始隐藏 */
  transform: translateY(100px); /* 从下方开始 */
  animation: textAppearFromBottom 2s ease-out forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* 移动端激活状态下的标题样式 */
.truth-mirror.mobile.active .mirror-message {
  padding: 30px 20px 20px;
  text-align: center;
}

.truth-mirror.mobile.active .ancient-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 20px rgba(74, 144, 226, 0.6);
  line-height: 1.4;
  margin-bottom: 10px;
}

/* 手机端记录类型选择样式 - 统一大小和紧凑布局 */
.truth-mirror.mobile.active .record-type-selection {
  display: flex;
  flex-direction: column;
  gap: 6px; /* 非常紧凑的间距 */
  margin: 10px 15px 0;
  align-items: stretch;
}

.truth-mirror.mobile.active .record-type {
  max-width: 100%;
  min-width: 100%;
  width: 100%; /* 强制统一宽度 */
  padding: 12px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px; /* 统一高度为120px */
  height: 120px; /* 明确设置高度 */
  box-sizing: border-box; /* 确保padding包含在宽度内 */
}

.truth-mirror.mobile.active .record-type:active {
  transform: translateY(1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(74, 144, 226, 0.6);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.truth-mirror.mobile.active .type-icon {
  font-size: 2.2rem; /* 统一图标大小 */
  margin-bottom: 4px; /* 紧凑间距 */
  text-shadow: 0 1px 5px rgba(255, 255, 255, 0.3);
}

.truth-mirror.mobile.active .type-label {
  font-size: 1rem; /* 统一标题大小 */
  margin-bottom: 3px; /* 紧凑间距 */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.truth-mirror.mobile.active .type-description {
  font-size: 0.8rem; /* 统一描述文字大小 */
  line-height: 1.2;
  max-width: 95%;
  margin: 0 auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* 移动端专属引导文字 */
.truth-mirror.mobile.active .question-message {
  padding: 10px 20px;
}

.truth-mirror.mobile.active .question-message .ancient-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 10px rgba(255, 255, 255, 0.3);
  animation: mobilePulse 3s ease-in-out infinite;
}

@keyframes mobilePulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}



@keyframes textAppearFromBottom {
  0% {
    opacity: 0;
    transform: translateY(100px); /* 从下方开始 */
    text-shadow: none;
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* 一气呵成飞到垂直居中位置 */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 
                 0 0 30px rgba(255, 255, 255, 0.4); /* 保持发光效果，不消失 */
  }
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* 响应式设计 */
@media (max-width: 768px) {
  .truth-mirror {
    min-height: 200px;
  }
  
  .truth-mirror.active {
    min-height: auto;
    transform: none;
    box-shadow: none;
  }
  
  .record-type-selection {
    flex-direction: column;
    align-items: stretch;
    margin-top: 15px;
    gap: 8px; /* 减少间距，更紧凑 */
  }
  
  .record-type {
    max-width: 100%;
    min-width: 100%;
    width: 100%; /* 强制统一宽度 */
    padding: 12px 15px; /* 减少内边距，更紧凑 */
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px; /* 统一高度 */
    height: 120px; /* 明确设置高度 */
    box-sizing: border-box; /* 确保padding包含在宽度内 */
  }
  
  .record-type:active {
    transform: translateY(2px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(74, 144, 226, 0.6);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .type-icon {
    font-size: 2.2rem; /* 统一图标大小 */
    margin-bottom: 8px; /* 减少间距 */
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
  }
  
  .type-label {
    font-size: 1.1rem; /* 统一标题大小 */
    margin-bottom: 4px; /* 减少间距 */
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
  }
  
  .type-description {
    font-size: 0.85rem; /* 统一描述文字大小 */
    line-height: 1.3;
    max-width: 90%;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  
  .ancient-text {
    font-size: 0.9rem;
  }
  
  .mirror-frame {
    padding: 10px;
  }
  
  /* 小屏幕适配 */
  @media (max-width: 480px) {
    .truth-mirror {
      min-height: 120px;
      border-radius: 20px;
    }
    
    .truth-mirror.active {
      min-height: auto;
      border-radius: 12px;
    }
    
    .mirror-message {
      padding: 8px;
    }
    
    .ancient-text {
      font-size: 0.75rem;
      line-height: 1.4;
    }
    
    .record-type-selection {
      margin-top: 15px;
      gap: 10px;
    }
    
    .record-type {
      padding: 8px;
      border-radius: 8px;
    }
    
    .type-icon {
      font-size: 1.2rem;
    }
    
    .type-label {
      font-size: 0.9rem;
    }
    
    .type-description {
      font-size: 0.7rem;
      line-height: 1.3;
    }
    
    .input-container {
      margin-top: 10px;
      padding: 10px;
      border-radius: 8px;
    }
    
    .truth-input {
      min-height: 80px;
      font-size: 0.85rem;
      padding: 10px;
    }
    
    .submit-button {
      padding: 8px 16px;
      font-size: 0.85rem;
    }
    
    .hint-message {
      padding: 8px 12px;
      margin: 5px;
    }
    
    .hint-message .ancient-text {
      font-size: 1rem; /* 调大到1rem */
      animation: textAppearFromBottom 2s ease-out forwards; /* 确保动画效果 */
    }
  }
  
  /* 超小屏幕适配 */
  @media (max-width: 360px) {
    .truth-mirror {
      min-height: 100px;
    }
    
    .hint-message .ancient-text {
      font-size: 1rem; /* 调大到1rem */
      animation: textAppearFromBottom 2s ease-out forwards; /* 确保动画效果 */
    }
    
    .record-type {
      padding: 6px;
    }
    
    .type-icon {
      font-size: 1rem;
    }
    
    .type-label {
      font-size: 0.8rem;
    }
    
    .type-description {
      font-size: 0.65rem;
    }
    
    .truth-input {
      min-height: 60px;
      font-size: 0.8rem;
    }
  }
}

/* 动画效果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hover-message,
.activation-message,
.question-message,
.completion-message {
  animation: fadeInUp 0.6s ease-out;
}

/* 完成消息样式 - 灰色字体 */
.completion-message .ancient-text {
  color: rgba(128, 128, 128, 0.8) !important; /* 灰色字体 */
  text-shadow: 0 2px 10px rgba(128, 128, 128, 0.3) !important;
  animation: grayGlow 2s ease-in-out infinite alternate;
}

@keyframes grayGlow {
  0% { 
    color: rgba(128, 128, 128, 0.7);
    text-shadow: 0 2px 5px rgba(128, 128, 128, 0.2);
  }
  100% { 
    color: rgba(128, 128, 128, 0.9);
    text-shadow: 0 2px 15px rgba(128, 128, 128, 0.4);
  }
}

/* 特殊状态样式 */
.truth-mirror.active .mirror-core {
  animation: mirrorActivate 1s ease-out;
}

@keyframes mirrorActivate {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}.career-story-timeline {
  padding: 2rem;
  background: rgba(15, 20, 25, 0.8);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}

.timeline-header {
  text-align: center;
  margin-bottom: 2rem;
}

.timeline-header h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.timeline-header p {
  color: #cbd5e1;
  font-size: 1.1rem;
}

/* AI 生成状态 */
.story-generating {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.ai-thinking {
  text-align: center;
}

.ai-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.ai-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4A90E2;
  animation: aiThinking 1.4s ease-in-out infinite both;
}

.ai-dots span:nth-child(1) { animation-delay: -0.32s; }
.ai-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes aiThinking {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* 宇宙时间线 - 横排布局 */
.cosmic-timeline {
  position: relative;
  padding: 0.25rem 0;
  margin: 0 auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* 故事卡片容器 - 放在上面 */
.story-cards-container {
  position: relative;
  height: 180px;
  overflow: hidden;
  margin-bottom: 0;
}

.story-cards-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

/* 故事卡片 */
.story-card {
  flex: 0 0 100%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  opacity: 0.3;
  transform: scale(0.95);
}

.story-card.active {
  opacity: 1;
  transform: scale(1);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.story-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  gap: 0.75rem;
}

.chapter-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.chapter-content {
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  max-height: 4.5em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.chapter-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-tag {
  padding: 0.25rem 0.75rem;
  background: rgba(74, 144, 226, 0.2);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 12px;
  font-size: 0.8rem;
  color: #4A90E2;
}

/* 横排时间线轨道 - 放在下面 */
.timeline-track-horizontal {
  position: relative;
  height: 120px;
  margin-top: 0;
  overflow: hidden;
}

/* 宇宙背景 */
.cosmic-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(15, 20, 25, 0.8) 0%, rgba(10, 15, 20, 0.9) 100%);
}

.cosmic-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: starTwinkle 10s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.1; }
  50% { opacity: 0.8; }
}

/* 时间节点容器 */
.timeline-nodes-container {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding: 0 2.5rem 20px 2.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 1.2rem;
  justify-content: flex-start;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  scroll-padding-left: 2.5rem;
  scroll-padding-right: 2.5rem;
}

.timeline-nodes-container::-webkit-scrollbar {
  display: none;
}

/* 横排时间节点 */
.timeline-node-horizontal {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
  z-index: 10;
  flex: 0 0 auto;
  min-width: 85px;
  max-width: 100px;
  width: 90px;
}

.timeline-node-horizontal:hover {
  opacity: 0.8;
  transform: translateY(-3px);
}

.timeline-node-horizontal.current {
  opacity: 1;
  transform: translateY(-5px);
}

/* 节点标记 */
.node-marker-horizontal {
  width: 35px;
  height: 35px;
  border: 2px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 20, 25, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 0.3rem;
}

.timeline-node-horizontal.current .node-marker-horizontal {
  box-shadow: 0 0 15px currentColor;
  transform: scale(1.1);
}

.node-icon-horizontal {
  font-size: 0.9rem;
}

/* 节点光晕效果 */
.node-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid;
  border-radius: 50%;
  opacity: 0;
  animation: nodePulse 2s ease-in-out infinite;
}

.timeline-node-horizontal.current .node-glow {
  opacity: 0.5;
}

@keyframes nodePulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.05); opacity: 0.2; }
}

/* 时间线连接器 */
.timeline-connector {
  position: absolute;
  top: 17px;
  left: 35px;
  right: -35px;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(74, 144, 226, 0.3),
    rgba(74, 144, 226, 0.6),
    rgba(74, 144, 226, 0.3)
  );
  z-index: 5;
}

/* 节点标签 */
.node-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.chapter-period {
  color: #94a3b8;
  font-size: 0.7rem;
  font-weight: 500;
  white-space: nowrap;
}

.milestone-tag {
  padding: 0.15rem 0.5rem;
  border-radius: 12px;
  font-size: 0.6rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
}



/* AI 洞察 - 静态镜面光效 */
.ai-career-insights {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* 镜面光静态光效 */
.ai-career-insights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 当卡片处于活动状态时显示镜面光效 */
.ai-career-insights.active::before {
  opacity: 1;
}

.ai-career-insights h4 {
  color: #4A90E2;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.insight-content p {
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.insight-content ul {
  color: #cbd5e1;
  list-style: none;
  padding-left: 0;
}

.insight-content li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.insight-content li::before {
  content: '•';
  color: #4A90E2;
  position: absolute;
  left: 0.5rem;
}

.insight-content strong {
  color: white;
}

/* 真理魔镜区域 */
.truth-mirror-section {
  margin-top: 0rem;
  margin-bottom: 0rem;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px; /* 进一步减少魔镜区域最小高度 */
  position: relative;
}

/* 章节导航 */
.chapter-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding: 1rem 0;
}

.chapter-navigation button {
  padding: 0.75rem 1.5rem;
  background: rgba(74, 144, 226, 0.2);
  border: 1px solid rgba(74, 144, 226, 0.3);
  border-radius: 8px;
  color: #4A90E2;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chapter-navigation button:hover:not(:disabled) {
  background: rgba(74, 144, 226, 0.3);
  border-color: rgba(74, 144, 226, 0.5);
}

.chapter-navigation button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.chapter-progress {
  display: flex;
  gap: 0.5rem;
}

.progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.progress-dot.completed {
  background: #4A90E2;
}

.progress-dot.current {
  background: #4A90E2;
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(74, 144, 226, 0.6);
}

/* 移动端优化 - 小屏幕手机 */
@media (max-width: 480px) {
  .timeline-nodes-container {
    padding: 0 2rem 15px 2rem;
    gap: 1rem;
    scroll-padding-left: 2rem;
    scroll-padding-right: 2rem;
  }
  
  .timeline-node-horizontal {
    min-width: 75px;
    max-width: 85px;
    width: 80px;
  }
  
  .node-marker-horizontal {
    width: 32px;
    height: 32px;
  }
  
  .node-icon-horizontal {
    font-size: 0.85rem;
  }
  
  .chapter-period {
    font-size: 0.65rem;
  }
  
  .milestone-tag {
    font-size: 0.55rem;
    padding: 0.1rem 0.4rem;
  }
  
  /* 职业叙事卡片标题和内容间距调整 */
  .story-card-header {
    margin-bottom: 0.5rem;
    gap: 0.5rem;
  }
  
  .chapter-content {
    margin-bottom: 0.5rem;
    max-height: 4.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  
  .chapter-skills {
    gap: 0.4rem;
  }
  
  .skill-tag {
    padding: 0.2rem 0.6rem;
    font-size: 0.75rem;
  }
  
  /* 真理魔镜区域 - 移动端间距优化 */
  .truth-mirror-section {
    margin-top: 0rem;
    min-height: 200px;
    padding: 1rem 0;
  }
}

/* 超小屏幕手机优化 */
@media (max-width: 320px) {
  .timeline-nodes-container {
    padding: 0 1.5rem 12px 1.5rem;
    gap: 0.8rem;
    scroll-padding-left: 1.5rem;
    scroll-padding-right: 1.5rem;
  }
  
  .timeline-node-horizontal {
    min-width: 70px;
    max-width: 80px;
    width: 75px;
  }
  
  .node-marker-horizontal {
    width: 30px;
    height: 30px;
  }
  
  .node-icon-horizontal {
    font-size: 0.8rem;
  }
  
  .chapter-period {
    font-size: 0.6rem;
  }
  
  .milestone-tag {
    font-size: 0.5rem;
    padding: 0.08rem 0.3rem;
  }
  
  /* 职业叙事卡片标题和内容间距调整 - 超小屏幕 */
  .story-card-header {
    margin-bottom: 0.5rem;
    gap: 0.5rem;
  }
  
  .chapter-content {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    max-height: 4.5em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  
  .chapter-skills {
    gap: 0.3rem;
  }
  
  .skill-tag {
    padding: 0.15rem 0.5rem;
    font-size: 0.7rem;
  }
  
  /* 真理魔镜区域 - 超小屏幕间距优化 */
  .truth-mirror-section {
    margin-top: 0rem;
    min-height: 180px;
    padding: 0.8rem 0;
  }
}.resonance-discovery-system {
  padding: 2rem;
  background: rgba(15, 20, 25, 0.8);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}

.resonance-header {
  text-align: center;
  margin-bottom: 2rem;
}

.resonance-header h2 {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.resonance-header p {
  color: #cbd5e1;
  font-size: 1.1rem;
}

/* 无共鸣状态 */
.no-resonance {
  padding: 3rem 2rem;
  text-align: center;
}

.resonance-placeholder {
  color: #64748b;
}

.placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.resonance-placeholder h3 {
  color: #94a3b8;
  margin-bottom: 0.5rem;
}

/* 共鸣网格 */
.resonance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.resonance-card {
  position: relative;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.resonance-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.resonance-card.active {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* 共鸣强度 */
.resonance-strength {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.strength-level {
  font-size: 1.2rem;
  font-weight: 700;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
}

.strength-info {
  flex: 1;
}

.strength-label {
  display: block;
  color: #cbd5e1;
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.strength-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

/* 共鸣核心信息 */
.resonance-core {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.resonance-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.resonance-details {
  flex: 1;
}

.resonance-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.3rem;
}

.resonance-description {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* 关联技能 */
.connected-skills {
  margin-bottom: 1rem;
}

.connected-skills h4 {
  color: #94a3b8;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.connected-skill {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill-name {
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  flex: 1;
}

.skill-level {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100px;
}

.level-bar {
  height: 4px;
  background: currentColor;
  border-radius: 2px;
  transition: width 1s ease;
  opacity: 0.6;
}

.level-text {
  color: #94a3b8;
  font-size: 0.75rem;
  min-width: 30px;
}

/* 共鸣增益 */
.resonance-bonuses {
  margin-bottom: 1.5rem;
}

.resonance-bonuses h4 {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.75rem;
}

.bonus-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  text-align: center;
}

.bonus-value {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.bonus-label {
  color: #cbd5e1;
  font-size: 0.8rem;
}

/* 解锁能力 - 科技感玻璃效果 */
.unlocked-ability {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.ability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 16px;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.15) 0%, 
    rgba(255, 255, 255, 0.05) 50%, 
    rgba(255, 255, 255, 0.15) 100%);
  box-shadow: 
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ability-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.2), 
    transparent);
  transition: left 0.5s ease;
}

.ability-badge:hover::before {
  left: 100%;
}

.ability-badge:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.ability-icon {
  font-size: 1rem;
}

/* 光束效果 */
.resonance-beam {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0;
  animation: beamFlow 2s ease-in-out;
}

.resonance-card.active .resonance-beam {
  opacity: 1;
  animation: beamFlow 2s ease-in-out infinite;
}

@keyframes beamFlow {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* 共鸣提示 */
.resonance-tips {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.resonance-tips h4 {
  color: #4A90E2;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.resonance-tips ul {
  color: #cbd5e1;
  list-style: none;
  padding-left: 0;
}

.resonance-tips li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.resonance-tips li::before {
  content: '→';
  color: #4A90E2;
  position: absolute;
  left: 0.5rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .resonance-grid {
    grid-template-columns: 1fr;
  }
  
  .resonance-core {
    flex-direction: column;
    text-align: center;
  }
  
  .bonus-list {
    grid-template-columns: 1fr;
  }
  
  .connected-skill {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .skill-level {
    width: 100%;
  }
}

/* AI职业洞察卡片样式 */
.ai-career-insights {
  margin-top: 1rem;
  padding: 1.5rem;
  background: rgba(74, 144, 226, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(74, 144, 226, 0.2);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* 镜面光静态光效 */
.ai-career-insights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 25%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 当卡片处于活动状态时显示镜面光效 */
.ai-career-insights.active::before {
  opacity: 1;
}

/* 图标和标题完美平行对齐 */
.insight-header {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.insight-icon {
  font-size: 1.5rem;
  color: #4A90E2;
  line-height: 1;
}

.insight-title {
  color: #4A90E2;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  line-height: 1;
  transform: translateY(0.1rem);
}

/* 洞察内容 */
.insight-content {
  margin-top: 1rem;
}

.insight-intro {
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.insight-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.insight-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.insight-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(5px);
}

.item-title {
  font-weight: 600;
  font-size: 1rem;
}

/* 为不同方向设置不同的字体色彩 */
.insight-item:nth-child(1) .item-title {
  color: #3498DB; /* 云原生架构 - 蓝色 */
}

.insight-item:nth-child(2) .item-title {
  color: #9B59B6; /* AI工程化 - 紫色 */
}

.insight-item:nth-child(3) .item-title {
  color: #E74C3C; /* 技术管理 - 红色 */
}

.item-desc {
  color: #94a3b8;
  font-size: 0.85rem;
  text-align: right;
  max-width: 150px;
}

/* 响应式设计 */
@media (max-width: 768px) {
  .insight-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .item-desc {
    text-align: left;
    max-width: none;
  }
}/* 移动端自适应优化样式 */

/* 基础移动端优化 */
.mobile-optimized {
  /* 移动端特定优化 */
}

/* 响应式字体大小 - 统一规范 */
@media (max-width: 640px) {
  html {
    font-size: 13px;
  }
  
  /* 核心属性字体统一规范 - 手机端更紧凑 */
  .core-attribute-text {
    font-size: 0.875rem;
    line-height: 1.4;
    font-weight: 600;
  }
  
  .core-attribute-value {
    font-size: 1rem;
    font-weight: 700;
    color: #60a5fa;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }
  
  .core-attribute-text {
    font-size: 0.875rem;
  }
  
  .core-attribute-value {
    font-size: 1rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }
  
  .core-attribute-text {
    font-size: 0.75rem;
  }
  
  .core-attribute-value {
    font-size: 0.875rem;
  }
}

/* 移动端触摸优化 */
@media (max-width: 768px) {
  /* 确保所有可点击元素有足够的大小 */
  button, 
  .btn, 
  .clickable,
  [role="button"] {
    min-height: 44px !important;
    min-width: 44px !important;
    padding: 12px !important;
  }
  
  /* 链接和按钮的触摸优化 */
  a, button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
  
  /* 防止文本选择 */
  .no-select {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
  }
}

/* 移动端滚动优化 */
@media (max-width: 768px) {
  .scroll-container {
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
  
  /* 隐藏滚动条但保持滚动功能 */
  .scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  .scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
  }
  
  /* 核心属性两列滚动优化 */
  .core-attributes-scroll {
    max-height: 280px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  /* 移动端滚动容器优化 */
  .mobile-scroll-container {
    padding-right: 4px;
    margin-right: -4px;
  }
  
  /* 移动端滚动提示优化 */
  .scroll-hint-mobile {
    font-size: 0.75rem;
    padding: 8px 0;
    color: #9ca3af;
  }
}

/* 移动端布局优化 */
@media (max-width: 768px) {
  /* 强制单列布局 */
  .mobile-single-column {
    display: flex !important;
    flex-direction: column !important;
  }
  
  /* 移动端间距优化 */
  .mobile-spacing {
    margin: 8px 0 !important;
    padding: 12px !important;
  }
  
  /* 移动端卡片优化 */
  .glass-card {
    margin: 8px 0 !important;
    padding: 16px !important;
    border-radius: 12px !important;
  }
}

/* 移动端文本优化 */
@media (max-width: 768px) {
  /* 防止文本溢出 */
  .text-optimized {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  /* 标题优化 */
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.3 !important;
    margin-bottom: 12px !important;
  }
  
  /* 段落优化 */
  p {
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }
  
  /* 姓名和职称间距优化 */
  .profile-name-title h1 {
    margin-bottom: 4px !important;
  }
  
  .profile-name-title p {
    margin-top: 4px !important;
    margin-bottom: 0 !important;
  }
  
  /* 姓名和职称间距优化 */
  .profile-name-title h1 {
    margin-bottom: 4px !important;
  }
  
  .profile-name-title p {
    margin-top: 4px !important;
    margin-bottom: 0 !important;
  }
  
  /* 姓名和职称间距优化 */
  .profile-name-title h1 {
    margin-bottom: 4px !important;
  }
  
  .profile-name-title p {
    margin-top: 4px !important;
    margin-bottom: 0 !important;
  }
}

/* 移动端表单优化 */
@media (max-width: 768px) {
  input, textarea, select {
    font-size: 16px !important; /* 防止iOS缩放 */
    min-height: 44px !important;
    padding: 12px !important;
  }
  
  /* 移动端输入框优化 */
  .form-input {
    border-radius: 8px !important;
    border: 1px solid #e2e8f0 !important;
  }
}

/* 移动端图标优化 */
@media (max-width: 768px) {
  .icon-mobile {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
  }
  
  /* Phosphor图标移动端优化 */
  .phosphor-icon {
    width: 24px !important;
    height: 24px !important;
  }
}

/* 移动端网格系统优化 */
@media (max-width: 768px) {
  .grid-mobile {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  .flex-mobile {
    flex-direction: column !important;
    gap: 12px !important;
  }
}

/* 移动端动画优化 - 与桌面端保持一致 */
@media (max-width: 768px) {
  /* 移除通用动画限制，让特定动画类正常工作 */
  .animate-starTwinkle {
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
  
  .animate-meteor {
    animation-duration: 12s;
    animation-iteration-count: infinite;
    animation-delay: 15s;
  }
  
  .animate-glow {
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
  
  .animate-pulse {
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
  }
  
  /* 技能星系动画优化 - 排除光束动画 */
  .galaxy-container *:not(.resonance-beam) {
    animation-duration: 6s;
    animation-delay: 1s;
  }
  
  /* 光束动画保持原速度 */
  .resonance-beam {
    animation-duration: 2s !important;
    animation-delay: 0s !important;
  }
  
  /* 减少连续动画数量 */
  .animate-meteor:nth-child(n+3) {
    display: none;
  }
  
  .animate-starTwinkle:nth-child(n+25) {
    display: none;
  }
  
  /* 移除通用动画限制，让特定动画类正常工作 */
  /* 禁用不必要的动画 */
  .no-animation-mobile {
    animation: none !important;
    transition: none !important;
  }
}

/* 桌面端动画优化 */
@media (min-width: 769px) {
  .animate-starTwinkle {
    animation-duration: 8s; /* 从4s增加到8s */
  }
  
  .animate-meteor {
    animation-duration: 12s; /* 从6s增加到12s */
    animation-delay: 15s; /* 从8s增加到15s */
  }
  
  .animate-glow {
    animation-duration: 6s; /* 从3s增加到6s */
  }
  
  .animate-pulse {
    animation-duration: 6s; /* 添加桌面端pulse动画设置 */
    animation-timing-function: ease-in-out;
  }
}

/* 减少动画模式 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  /* 保留必要的状态动画 */
  .animate-pulse {
    animation: none !important;
  }
}

/* 移动端安全区域适配 */
@supports(padding: max(0px)) {
  .safe-area {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
    padding-top: max(12px, env(safe-area-inset-top));
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}

/* 移动端性能优化 */
@media (max-width: 768px) {
  /* 减少阴影和模糊效果 */
  .performance-optimized {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(4px) !important;
  }
  
  /* 优化图片加载 */
  img {
    loading: lazy;
    decoding: async;
  }
}

/* 移动端错误状态优化 */
@media (max-width: 768px) {
  .error-mobile {
    background: rgba(239, 68, 68, 0.1) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    padding: 16px !important;
    border-radius: 8px !important;
    margin: 8px 0 !important;
  }
  
  .success-mobile {
    background: rgba(34, 197, 94, 0.1) !important;
    border: 1px solid rgba(34, 197, 94, 0.3) !important;
    padding: 16px !important;
    border-radius: 8px !important;
    margin: 8px 0 !important;
  }
}

/* 移动端加载状态优化 */
@media (max-width: 768px) {
  .loading-mobile {
    min-height: 120px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .skeleton-mobile {
    animation: skeleton-loading 1.5s infinite !important;
  }
  
  @keyframes skeleton-loading {
    0% { opacity: 0.6; }
    50% { opacity: 0.3; }
    100% { opacity: 0.6; }
  }
}

/* 移动端工具类 */
.mobile-only { display: none !important; }
.desktop-only { display: block !important; }

@media (max-width: 768px) {
  .mobile-only { display: block !important; }
  .desktop-only { display: none !important; }
}

/* 移动端横屏优化 */
@media (max-width: 768px) and (orientation: landscape) {
  .landscape-optimized {
    max-height: 80vh !important;
    overflow-y: auto !important;
  }
}/*
! tailwindcss v3.4.0 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.pointer-events-none {
  pointer-events: none;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.inset-2 {
  inset: 0.5rem;
}
.inset-4 {
  inset: 1rem;
}
.-bottom-1 {
  bottom: -0.25rem;
}
.-bottom-4 {
  bottom: -1rem;
}
.-bottom-8 {
  bottom: -2rem;
}
.-left-1 {
  left: -0.25rem;
}
.-left-10 {
  left: -2.5rem;
}
.-left-6 {
  left: -1.5rem;
}
.-right-1 {
  right: -0.25rem;
}
.-right-4 {
  right: -1rem;
}
.-right-8 {
  right: -2rem;
}
.-top-1 {
  top: -0.25rem;
}
.-top-10 {
  top: -2.5rem;
}
.-top-6 {
  top: -1.5rem;
}
.-top-8 {
  top: -2rem;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-1\/4 {
  bottom: 25%;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-1\/4 {
  left: 25%;
}
.left-4 {
  left: 1rem;
}
.right-0 {
  right: 0px;
}
.right-1\/4 {
  right: 25%;
}
.right-4 {
  right: 1rem;
}
.top-1\/2 {
  top: 50%;
}
.top-1\/4 {
  top: 25%;
}
.top-4 {
  top: 1rem;
}
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}
.z-\[99999\] {
  z-index: 99999;
}
.-mx-1 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.-mx-2 {
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mb-0 {
  margin-bottom: 0px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mt-0 {
  margin-top: 0px;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-auto {
  margin-top: auto;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-0 {
  height: 0px;
}
.h-0\.5 {
  height: 0.125rem;
}
.h-1 {
  height: 0.25rem;
}
.h-1\.5 {
  height: 0.375rem;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-14 {
  height: 3.5rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-20 {
  height: 5rem;
}
.h-24 {
  height: 6rem;
}
.h-3 {
  height: 0.75rem;
}
.h-4 {
  height: 1rem;
}
.h-48 {
  height: 12rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-64 {
  height: 16rem;
}
.h-8 {
  height: 2rem;
}
.h-96 {
  height: 24rem;
}
.h-\[140px\] {
  height: 140px;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.max-h-36 {
  max-height: 9rem;
}
.max-h-40 {
  max-height: 10rem;
}
.max-h-\[180px\] {
  max-height: 180px;
}
.max-h-\[200px\] {
  max-height: 200px;
}
.min-h-\[140px\] {
  min-height: 140px;
}
.min-h-\[192px\] {
  min-height: 192px;
}
.min-h-\[28px\] {
  min-height: 28px;
}
.min-h-\[36px\] {
  min-height: 36px;
}
.min-h-\[44px\] {
  min-height: 44px;
}
.min-h-\[56px\] {
  min-height: 56px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-0 {
  width: 0px;
}
.w-0\.5 {
  width: 0.125rem;
}
.w-1 {
  width: 0.25rem;
}
.w-1\.5 {
  width: 0.375rem;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-14 {
  width: 3.5rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-20 {
  width: 5rem;
}
.w-24 {
  width: 6rem;
}
.w-3 {
  width: 0.75rem;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-48 {
  width: 12rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-64 {
  width: 16rem;
}
.w-8 {
  width: 2rem;
}
.w-96 {
  width: 24rem;
}
.w-full {
  width: 100%;
}
.w-px {
  width: 1px;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-\[200px\] {
  min-width: 200px;
}
.min-w-\[280px\] {
  min-width: 280px;
}
.min-w-\[44px\] {
  min-width: 44px;
}
.min-w-\[56px\] {
  min-width: 56px;
}
.min-w-max {
  min-width: -moz-max-content;
  min-width: max-content;
}
.max-w-2xl {
  max-width: 42rem;
}
.max-w-\[100px\] {
  max-width: 100px;
}
.max-w-\[240px\] {
  max-width: 240px;
}
.max-w-full {
  max-width: 100%;
}
.max-w-md {
  max-width: 28rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-45 {
  --tw-rotate: 45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[1\.01\] {
  --tw-scale-x: 1.01;
  --tw-scale-y: 1.01;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[1\.02\] {
  --tw-scale-x: 1.02;
  --tw-scale-y: 1.02;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[1\.3\] {
  --tw-scale-x: 1.3;
  --tw-scale-y: 1.3;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.cursor-pointer {
  cursor: pointer;
}
.resize-none {
  resize: none;
}
.resize {
  resize: both;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.75rem * var(--tw-space-x-reverse));
  margin-left: calc(0.75rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-visible {
  overflow: visible;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-amber-400\/50 {
  border-color: rgb(251 191 36 / 0.5);
}
.border-blue-300\/30 {
  border-color: rgb(147 197 253 / 0.3);
}
.border-blue-400 {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity));
}
.border-blue-400\/50 {
  border-color: rgb(96 165 250 / 0.5);
}
.border-blue-400\/60 {
  border-color: rgb(96 165 250 / 0.6);
}
.border-blue-600\/50 {
  border-color: rgb(37 99 235 / 0.5);
}
.border-blue-700\/30 {
  border-color: rgb(29 78 216 / 0.3);
}
.border-blue-700\/50 {
  border-color: rgb(29 78 216 / 0.5);
}
.border-cyan-400\/50 {
  border-color: rgb(34 211 238 / 0.5);
}
.border-cyan-500\/10 {
  border-color: rgb(6 182 212 / 0.1);
}
.border-cyan-500\/20 {
  border-color: rgb(6 182 212 / 0.2);
}
.border-cyan-500\/30 {
  border-color: rgb(6 182 212 / 0.3);
}
.border-emerald-400\/50 {
  border-color: rgb(52 211 153 / 0.5);
}
.border-gray-600\/30 {
  border-color: rgb(75 85 99 / 0.3);
}
.border-gray-600\/50 {
  border-color: rgb(75 85 99 / 0.5);
}
.border-green-600\/50 {
  border-color: rgb(22 163 74 / 0.5);
}
.border-purple-400\/30 {
  border-color: rgb(192 132 252 / 0.3);
}
.border-purple-400\/50 {
  border-color: rgb(192 132 252 / 0.5);
}
.border-purple-500\/20 {
  border-color: rgb(168 85 247 / 0.2);
}
.border-purple-500\/30 {
  border-color: rgb(168 85 247 / 0.3);
}
.border-transparent {
  border-color: transparent;
}
.border-white\/10 {
  border-color: rgb(255 255 255 / 0.1);
}
.border-yellow-600\/30 {
  border-color: rgb(202 138 4 / 0.3);
}
.bg-black\/20 {
  background-color: rgb(0 0 0 / 0.2);
}
.bg-black\/40 {
  background-color: rgb(0 0 0 / 0.4);
}
.bg-black\/80 {
  background-color: rgb(0 0 0 / 0.8);
}
.bg-black\/95 {
  background-color: rgb(0 0 0 / 0.95);
}
.bg-blue-400\/10 {
  background-color: rgb(96 165 250 / 0.1);
}
.bg-blue-400\/30 {
  background-color: rgb(96 165 250 / 0.3);
}
.bg-blue-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity));
}
.bg-blue-500\/10 {
  background-color: rgb(59 130 246 / 0.1);
}
.bg-blue-500\/20 {
  background-color: rgb(59 130 246 / 0.2);
}
.bg-blue-600\/40 {
  background-color: rgb(37 99 235 / 0.4);
}
.bg-blue-900\/20 {
  background-color: rgb(30 58 138 / 0.2);
}
.bg-blue-900\/30 {
  background-color: rgb(30 58 138 / 0.3);
}
.bg-blue-900\/50 {
  background-color: rgb(30 58 138 / 0.5);
}
.bg-cyan-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(34 211 238 / var(--tw-bg-opacity));
}
.bg-cyan-500\/10 {
  background-color: rgb(6 182 212 / 0.1);
}
.bg-emerald-900\/20 {
  background-color: rgb(6 78 59 / 0.2);
}
.bg-gray-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(75 85 99 / var(--tw-bg-opacity));
}
.bg-gray-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity));
}
.bg-gray-900\/60 {
  background-color: rgb(17 24 39 / 0.6);
}
.bg-gray-900\/80 {
  background-color: rgb(17 24 39 / 0.8);
}
.bg-green-900\/20 {
  background-color: rgb(20 83 45 / 0.2);
}
.bg-green-900\/30 {
  background-color: rgb(20 83 45 / 0.3);
}
.bg-purple-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(192 132 252 / var(--tw-bg-opacity));
}
.bg-purple-500\/10 {
  background-color: rgb(168 85 247 / 0.1);
}
.bg-purple-500\/20 {
  background-color: rgb(168 85 247 / 0.2);
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-white\/10 {
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/20 {
  background-color: rgb(255 255 255 / 0.2);
}
.bg-white\/5 {
  background-color: rgb(255 255 255 / 0.05);
}
.bg-yellow-900\/20 {
  background-color: rgb(113 63 18 / 0.2);
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-amber-500 {
  --tw-gradient-from: #f59e0b var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(245 158 11 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-amber-900\/30 {
  --tw-gradient-from: rgb(120 53 15 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(120 53 15 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-400 {
  --tw-gradient-from: #60a5fa var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(96 165 250 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-500 {
  --tw-gradient-from: #3b82f6 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(59 130 246 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-900\/20 {
  --tw-gradient-from: rgb(30 58 138 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(30 58 138 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-blue-900\/30 {
  --tw-gradient-from: rgb(30 58 138 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(30 58 138 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500 {
  --tw-gradient-from: #06b6d4 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/10 {
  --tw-gradient-from: rgb(6 182 212 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-cyan-500\/20 {
  --tw-gradient-from: rgb(6 182 212 / 0.2) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 182 212 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-500 {
  --tw-gradient-from: #10b981 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(16 185 129 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-emerald-900\/30 {
  --tw-gradient-from: rgb(6 78 59 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(6 78 59 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-gray-900 {
  --tw-gradient-from: #111827 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(17 24 39 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-green-500 {
  --tw-gradient-from: #22c55e var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(34 197 94 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500 {
  --tw-gradient-from: #a855f7 var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-500\/10 {
  --tw-gradient-from: rgb(168 85 247 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(168 85 247 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-purple-900\/30 {
  --tw-gradient-from: rgb(88 28 135 / 0.3) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(88 28 135 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-transparent {
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.from-white\/10 {
  --tw-gradient-from: rgb(255 255 255 / 0.1) var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(255 255 255 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-cyan-500\/40 {
  --tw-gradient-to: rgb(6 182 212 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(6 182 212 / 0.4) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-cyan-500\/50 {
  --tw-gradient-to: rgb(6 182 212 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(6 182 212 / 0.5) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-purple-400 {
  --tw-gradient-to: rgb(192 132 252 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #c084fc var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-purple-900\/15 {
  --tw-gradient-to: rgb(88 28 135 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(88 28 135 / 0.15) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-purple-900\/20 {
  --tw-gradient-to: rgb(88 28 135 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), rgb(88 28 135 / 0.2) var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.via-white {
  --tw-gradient-to: rgb(255 255 255 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), #fff var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-cyan-500 {
  --tw-gradient-to: #06b6d4 var(--tw-gradient-to-position);
}
.to-cyan-900\/30 {
  --tw-gradient-to: rgb(22 78 99 / 0.3) var(--tw-gradient-to-position);
}
.to-indigo-400 {
  --tw-gradient-to: #818cf8 var(--tw-gradient-to-position);
}
.to-indigo-500 {
  --tw-gradient-to: #6366f1 var(--tw-gradient-to-position);
}
.to-indigo-600 {
  --tw-gradient-to: #4f46e5 var(--tw-gradient-to-position);
}
.to-indigo-900\/20 {
  --tw-gradient-to: rgb(49 46 129 / 0.2) var(--tw-gradient-to-position);
}
.to-indigo-900\/25 {
  --tw-gradient-to: rgb(49 46 129 / 0.25) var(--tw-gradient-to-position);
}
.to-indigo-900\/30 {
  --tw-gradient-to: rgb(49 46 129 / 0.3) var(--tw-gradient-to-position);
}
.to-orange-500 {
  --tw-gradient-to: #f97316 var(--tw-gradient-to-position);
}
.to-orange-900\/20 {
  --tw-gradient-to: rgb(124 45 18 / 0.2) var(--tw-gradient-to-position);
}
.to-pink-500\/10 {
  --tw-gradient-to: rgb(236 72 153 / 0.1) var(--tw-gradient-to-position);
}
.to-purple-500 {
  --tw-gradient-to: #a855f7 var(--tw-gradient-to-position);
}
.to-purple-500\/10 {
  --tw-gradient-to: rgb(168 85 247 / 0.1) var(--tw-gradient-to-position);
}
.to-purple-500\/20 {
  --tw-gradient-to: rgb(168 85 247 / 0.2) var(--tw-gradient-to-position);
}
.to-teal-500 {
  --tw-gradient-to: #14b8a6 var(--tw-gradient-to-position);
}
.to-teal-900\/20 {
  --tw-gradient-to: rgb(19 78 74 / 0.2) var(--tw-gradient-to-position);
}
.to-transparent {
  --tw-gradient-to: transparent var(--tw-gradient-to-position);
}
.to-violet-500 {
  --tw-gradient-to: #8b5cf6 var(--tw-gradient-to-position);
}
.to-violet-900\/20 {
  --tw-gradient-to: rgb(76 29 149 / 0.2) var(--tw-gradient-to-position);
}
.to-white\/5 {
  --tw-gradient-to: rgb(255 255 255 / 0.05) var(--tw-gradient-to-position);
}
.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-1 {
  padding: 0.25rem;
}
.p-1\.5 {
  padding: 0.375rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-8 {
  padding: 2rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-1 {
  padding-bottom: 0.25rem;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-32 {
  padding-bottom: 8rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 1.3;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[8px\] {
  font-size: 8px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.5;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.4;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-black {
  font-weight: 900;
}
.font-bold {
  font-weight: 700;
}
.font-light {
  font-weight: 300;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-tighter {
  letter-spacing: -0.05em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-amber-400 {
  --tw-text-opacity: 1;
  color: rgb(251 191 36 / var(--tw-text-opacity));
}
.text-blue-300 {
  --tw-text-opacity: 1;
  color: rgb(147 197 253 / var(--tw-text-opacity));
}
.text-blue-300\/80 {
  color: rgb(147 197 253 / 0.8);
}
.text-blue-400 {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity));
}
.text-cyan-300 {
  --tw-text-opacity: 1;
  color: rgb(103 232 249 / var(--tw-text-opacity));
}
.text-cyan-400 {
  --tw-text-opacity: 1;
  color: rgb(34 211 238 / var(--tw-text-opacity));
}
.text-cyan-500\/70 {
  color: rgb(6 182 212 / 0.7);
}
.text-cyan-500\/80 {
  color: rgb(6 182 212 / 0.8);
}
.text-emerald-400 {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-green-300 {
  --tw-text-opacity: 1;
  color: rgb(134 239 172 / var(--tw-text-opacity));
}
.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity));
}
.text-indigo-400 {
  --tw-text-opacity: 1;
  color: rgb(129 140 248 / var(--tw-text-opacity));
}
.text-orange-400 {
  --tw-text-opacity: 1;
  color: rgb(251 146 60 / var(--tw-text-opacity));
}
.text-pink-400 {
  --tw-text-opacity: 1;
  color: rgb(244 114 182 / var(--tw-text-opacity));
}
.text-purple-300 {
  --tw-text-opacity: 1;
  color: rgb(216 180 254 / var(--tw-text-opacity));
}
.text-purple-400 {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity));
}
.text-purple-500\/70 {
  color: rgb(168 85 247 / 0.7);
}
.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity));
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-yellow-300 {
  --tw-text-opacity: 1;
  color: rgb(253 224 71 / var(--tw-text-opacity));
}
.text-yellow-400 {
  --tw-text-opacity: 1;
  color: rgb(250 204 21 / var(--tw-text-opacity));
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.placeholder-gray-500::-moz-placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(107 114 128 / var(--tw-placeholder-opacity));
}
.placeholder-gray-500::placeholder {
  --tw-placeholder-opacity: 1;
  color: rgb(107 114 128 / var(--tw-placeholder-opacity));
}
.opacity-20 {
  opacity: 0.2;
}
.opacity-80 {
  opacity: 0.8;
}
.shadow-2xl {
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-blue-400\/20 {
  --tw-shadow-color: rgb(96 165 250 / 0.2);
  --tw-shadow: var(--tw-shadow-colored);
}
.shadow-cyan-500\/25 {
  --tw-shadow-color: rgb(6 182 212 / 0.25);
  --tw-shadow: var(--tw-shadow-colored);
}
.outline {
  outline-style: solid;
}
.blur-3xl {
  --tw-blur: blur(64px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-sm {
  --tw-blur: blur(4px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.blur-xl {
  --tw-blur: blur(24px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-2xl {
  --tw-backdrop-blur: blur(40px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-lg {
  --tw-backdrop-blur: blur(16px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-sm {
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-blur-xl {
  --tw-backdrop-blur: blur(24px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition {
  transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.delay-1000 {
  transition-delay: 1000ms;
}
.duration-1000 {
  transition-duration: 1000ms;
}
.duration-150 {
  transition-duration: 150ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

/* 移动端优先 - 根字体大小设置 */
html {
  font-size: 14px; /* 移动端基准字体 */
}

@media (min-width: 640px) {
  html {
    font-size: 16px; /* 平板和桌面端基准字体 */
  }
}

/* 关键CSS动画定义 */
@keyframes starTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes meteor {
  0% { transform: translateX(-100%) translateY(-100%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(100%) translateY(100%); opacity: 0; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
  50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.8); }
}

.animate-starTwinkle {
  animation: starTwinkle 4s ease-in-out infinite;
}

.animate-meteor {
  animation: meteor 6s linear infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* 玻璃态效果 */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 宇宙背景 */
.universe-container {
  background: radial-gradient(ellipse at center, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* 属性卡片悬停效果 */
.attribute-card {
  transition: all 0.3s ease;
}

.attribute-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* 关键CSS动画定义 */
@keyframes starTwinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

@keyframes meteor {
  0% { transform: translateX(-100%) translateY(-100%); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(100%) translateY(100%); opacity: 0; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(59, 130, 246, 0.5); }
  50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.8); }
}

.animate-starTwinkle {
  animation: starTwinkle 4s ease-in-out infinite;
}

.animate-meteor {
  animation: meteor 6s linear infinite;
}

.animate-glow {
  animation: glow 2s ease-in-out infinite;
}

/* 玻璃态效果 */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 宇宙背景 */
.universe-container {
  background: radial-gradient(ellipse at center, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* 属性卡片悬停效果 */
.attribute-card {
  transition: all 0.3s ease;
}

.attribute-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

* {
  box-sizing: border-box;
}

/* 强制移动端无障碍标准 */
button, a, [role="button"] {
  min-height: 44px;
  min-width: 44px;
}

/* 文本平衡优化 */
.text-balance {
  text-wrap: balance;
}

/* 移动端滚动优化 */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* 手机端优化样式 */
@media (max-width: 640px) {
  .main-container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .glass-card {
    margin-bottom: 0.75rem;
  }
  
  /* 隐藏滚动条但保持滚动功能 */
  .scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
  
  .scrollbar-hide::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
  }
  
  /* 优化小屏幕上的文本显示 */
  .text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  
  /* 优化按钮触摸区域 */
  button {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* 优化输入框触摸区域 */
  input, select, textarea {
    font-size: 16px; /* 防止iOS缩放 */
  }
}

/* 魔镜专用动画 */
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

/* 魔镜专用样式 */
.mirror-glow {
  box-shadow: 
    0 0 60px rgba(6, 182, 212, 0.3),
    0 0 120px rgba(147, 51, 234, 0.2),
    inset 0 0 60px rgba(6, 182, 212, 0.1);
}

/* 神圣书写区域样式 */
.sacred-textarea {
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.3) 0%, 
    rgba(6, 182, 212, 0.1) 50%,
    rgba(147, 51, 234, 0.1) 100%);
  border: 1px solid rgba(6, 182, 212, 0.3);
  backdrop-filter: blur(10px);
}

/* 响应式优化 */
@media (max-width: 768px) {
  .mirror-container {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .sacred-textarea {
    height: 300px;
  }
  
  /* 移动端魔镜优化 */
  .magic-mirror-mobile {
    max-width: 100% !important;
    margin: 0.5rem !important;
    border-radius: 1rem !important;
  }
  
  .magic-mirror-mobile .p-8 {
    padding: 1rem !important;
  }
  
  .magic-mirror-mobile .h-96 {
    height: 200px !important;
  }
  
  .magic-mirror-mobile .grid-cols-2 {
    grid-template-columns: 1fr !important;
  }
  
  /* 移动端输入框优化 */
  .magic-mirror-mobile textarea {
    font-size: 16px !important;
    min-height: 120px !important;
  }
}

/* 通用响应式优化 */
@media (max-width: 768px) {
  .galaxy-container {
    height: 200px !important;
    min-height: 200px !important;
  }
  
  /* 优化小屏幕上的卡片间距 */
  .space-y-4 > * + * {
    margin-top: 1rem;
  }
  
  .space-y-6 > * + * {
    margin-top: 1.5rem;
  }
}
.hover\:scale-105:hover {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:scale-\[1\.1\]:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.hover\:border-gray-500\/50:hover {
  border-color: rgb(107 114 128 / 0.5);
}
.hover\:border-purple-400\/60:hover {
  border-color: rgb(192 132 252 / 0.6);
}
.hover\:border-white\/10:hover {
  border-color: rgb(255 255 255 / 0.1);
}
.hover\:border-white\/20:hover {
  border-color: rgb(255 255 255 / 0.2);
}
.hover\:bg-blue-900\/10:hover {
  background-color: rgb(30 58 138 / 0.1);
}
.hover\:bg-emerald-900\/10:hover {
  background-color: rgb(6 78 59 / 0.1);
}
.hover\:bg-purple-500\/30:hover {
  background-color: rgb(168 85 247 / 0.3);
}
.hover\:bg-purple-900\/10:hover {
  background-color: rgb(88 28 135 / 0.1);
}
.hover\:bg-white\/10:hover {
  background-color: rgb(255 255 255 / 0.1);
}
.hover\:bg-white\/5:hover {
  background-color: rgb(255 255 255 / 0.05);
}
.hover\:text-blue-400:hover {
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity));
}
.hover\:text-emerald-400:hover {
  --tw-text-opacity: 1;
  color: rgb(52 211 153 / var(--tw-text-opacity));
}
.hover\:text-purple-400:hover {
  --tw-text-opacity: 1;
  color: rgb(192 132 252 / var(--tw-text-opacity));
}
.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.focus\:border-cyan-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(34 211 238 / var(--tw-border-opacity));
}
.focus\:border-purple-400:focus {
  --tw-border-opacity: 1;
  border-color: rgb(192 132 252 / var(--tw-border-opacity));
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.group:hover .group-hover\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.group:hover .group-hover\:border-cyan-400\/60 {
  border-color: rgb(34 211 238 / 0.6);
}
.group:hover .group-hover\:border-purple-400\/60 {
  border-color: rgb(192 132 252 / 0.6);
}
.group:hover .group-hover\:blur-md {
  --tw-blur: blur(12px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
@media (min-width: 320px) {

  .xs\:mb-5 {
    margin-bottom: 1.25rem;
  }

  .xs\:h-16 {
    height: 4rem;
  }

  .xs\:h-5 {
    height: 1.25rem;
  }

  .xs\:h-56 {
    height: 14rem;
  }

  .xs\:h-6 {
    height: 1.5rem;
  }

  .xs\:max-h-40 {
    max-height: 10rem;
  }

  .xs\:min-h-\[224px\] {
    min-height: 224px;
  }

  .xs\:w-16 {
    width: 4rem;
  }

  .xs\:w-5 {
    width: 1.25rem;
  }

  .xs\:w-6 {
    width: 1.5rem;
  }

  .xs\:w-auto {
    width: auto;
  }

  .xs\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xs\:flex-row {
    flex-direction: row;
  }

  .xs\:items-center {
    align-items: center;
  }

  .xs\:justify-start {
    justify-content: flex-start;
  }

  .xs\:gap-2 {
    gap: 0.5rem;
  }

  .xs\:gap-3 {
    gap: 0.75rem;
  }

  .xs\:gap-4 {
    gap: 1rem;
  }

  .xs\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .xs\:p-3 {
    padding: 0.75rem;
  }

  .xs\:p-4 {
    padding: 1rem;
  }

  .xs\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 640px) {

  .sm\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .sm\:mb-3 {
    margin-bottom: 0.75rem;
  }

  .sm\:mb-4 {
    margin-bottom: 1rem;
  }

  .sm\:mb-6 {
    margin-bottom: 1.5rem;
  }

  .sm\:mb-8 {
    margin-bottom: 2rem;
  }

  .sm\:mt-2 {
    margin-top: 0.5rem;
  }

  .sm\:mt-3 {
    margin-top: 0.75rem;
  }

  .sm\:mt-4 {
    margin-top: 1rem;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:h-1 {
    height: 0.25rem;
  }

  .sm\:h-1\.5 {
    height: 0.375rem;
  }

  .sm\:h-12 {
    height: 3rem;
  }

  .sm\:h-14 {
    height: 3.5rem;
  }

  .sm\:h-2 {
    height: 0.5rem;
  }

  .sm\:h-4 {
    height: 1rem;
  }

  .sm\:h-5 {
    height: 1.25rem;
  }

  .sm\:h-6 {
    height: 1.5rem;
  }

  .sm\:h-64 {
    height: 16rem;
  }

  .sm\:h-7 {
    height: 1.75rem;
  }

  .sm\:max-h-48 {
    max-height: 12rem;
  }

  .sm\:min-h-\[256px\] {
    min-height: 256px;
  }

  .sm\:w-12 {
    width: 3rem;
  }

  .sm\:w-14 {
    width: 3.5rem;
  }

  .sm\:w-4 {
    width: 1rem;
  }

  .sm\:w-5 {
    width: 1.25rem;
  }

  .sm\:w-6 {
    width: 1.5rem;
  }

  .sm\:w-7 {
    width: 1.75rem;
  }

  .sm\:w-auto {
    width: auto;
  }

  .sm\:min-w-\[320px\] {
    min-width: 320px;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:gap-4 {
    gap: 1rem;
  }

  .sm\:space-y-3 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
  }

  .sm\:space-y-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1rem * var(--tw-space-y-reverse));
  }

  .sm\:space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
  }

  .sm\:p-3 {
    padding: 0.75rem;
  }

  .sm\:p-4 {
    padding: 1rem;
  }

  .sm\:p-5 {
    padding: 1.25rem;
  }

  .sm\:p-6 {
    padding: 1.5rem;
  }

  .sm\:pt-4 {
    padding-top: 1rem;
  }

  .sm\:text-2xl {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .sm\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .sm\:text-base {
    font-size: 1rem;
    line-height: 1.5;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .sm\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .sm\:text-xl {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}
@media (min-width: 768px) {

  .md\:min-w-\[360px\] {
    min-width: 360px;
  }

  .md\:gap-5 {
    gap: 1.25rem;
  }

  .md\:p-6 {
    padding: 1.5rem;
  }

  .md\:pr-0 {
    padding-right: 0px;
  }
}
@media (min-width: 1024px) {

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

