/* 心动AI - 嘉宾详情页沉浸式样式 v2.0 */

/* ===== 1. 页面整体框架 ===== */
.gd-v2-page {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: #f8f6ff; z-index: 100;
  display: none; flex-direction: column;
  overflow: hidden;
}
.gd-v2-page.active { display: flex; }

/* 顶部透明导航 */
.gd-v2-header {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 110;
  padding: calc(8px + env(safe-area-inset-top, 0px)) 12px 8px;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 100%);
  transition: background 0.3s;
}
.gd-v2-header.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #f0edff;
}
.gd-v2-header.scrolled .gd-v2-back,
.gd-v2-header.scrolled .gd-v2-collect { border-color: rgba(123,104,238,0.2); color: #7B68EE; }
.gd-v2-back {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.gd-v2-back:active { transform: scale(0.9); }
.gd-v2-collect {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; flex-shrink: 0;
}
.gd-v2-collect:active { transform: scale(0.9); }
.gd-v2-collect.collected { color: #D4537E; }

/* 详情页背景音乐开关（玻璃浮钮） */
.gd-v2-music-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 1px solid rgba(144, 112, 216, 0.25);
  color: #7B68EE; font-size: 17px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(123,104,238,0.22);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: all 0.2s; flex-shrink: 0;
}
.gd-v2-music-btn:active { transform: scale(0.9); }
.gd-v2-music-btn.on { background: rgba(144, 112, 216, 0.35); color: #fff; }

/* 可滚动内容区 */
.gd-v2-scroll {
  flex: 1; overflow-y: auto; overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.gd-v2-scroll::-webkit-scrollbar { display: none; }

/* ===== 2. 顶部沉浸式照片区 ===== */
.gd-v2-hero {
  position: relative; width: 100%; height: 420px;
  background: linear-gradient(135deg, #3a2e6e, #534AB7);
  overflow: hidden;
}
.gd-v2-hero-slides {
  display: flex; height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gd-v2-hero-slide {
  min-width: 100%; height: 100%;
  position: relative;
}
.gd-v2-hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* 照片上的渐变遮罩 */
.gd-v2-hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  pointer-events: none;
}
/* 嘉宾姓名+一句话（叠加在照片底部） */
.gd-v2-hero-info {
  position: absolute; bottom: 20px; left: 16px; right: 16px;
  z-index: 5; color: #fff;
}
.gd-v2-hero-name {
  font-size: 24px; font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  margin-bottom: 4px;
}
.gd-v2-hero-name .gd-v2-online-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: #4ade80;
  margin-left: 8px; vertical-align: middle;
  animation: gdPulse 2s infinite;
}
@keyframes gdPulse {
  0%,100% { opacity: 1; } 50% { opacity: 0.4; }
}
.gd-v2-hero-slogan {
  font-size: 14px; opacity: 0.85;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
/* 认证徽章行 */
.gd-v2-hero-badges {
  display: flex; gap: 6px; margin-top: 8px;
}
.gd-v2-badge {
  padding: 3px 10px; border-radius: 10px;
  font-size: 11px; font-weight: 600;
  background: rgba(255,255,255,0.2); color: #fff;
  backdrop-filter: blur(8px);
}
.gd-v2-badge.verify { background: rgba(74,222,128,0.25); }
.gd-v2-badge.phone { background: rgba(251,191,36,0.25); }

/* 照片指示器 */
.gd-v2-hero-dots {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; gap: 6px;
}
.gd-v2-hero-dot {
  width: 6px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.4);
  transition: all 0.3s;
}
.gd-v2-hero-dot.active { width: 20px; background: #fff; }

/* 照片计数器 */
.gd-v2-hero-counter {
  position: absolute; top: calc(60px + env(safe-area-inset-top, 0px)); right: 16px;
  z-index: 5; padding: 3px 10px; border-radius: 10px;
  background: rgba(0,0,0,0.35); color: #fff;
  font-size: 12px; font-weight: 600;
  backdrop-filter: blur(4px);
}

/* ===== 3. 匹配契合度卡 ===== */
.gd-v2-match {
  margin: -30px 16px 12px; position: relative; z-index: 10;
  background: #fff; border-radius: 20px; padding: 20px;
  box-shadow: 0 4px 20px rgba(123,104,238,0.1);
  text-align: center;
}
.gd-v2-match-title {
  font-size: 13px; color: #999; margin-bottom: 8px;
}
.gd-v2-match-score {
  font-size: 48px; font-weight: 800;
  background: linear-gradient(135deg, #7B68EE, #D4537E);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.1;
}
.gd-v2-match-score-suffix { font-size: 18px; font-weight: 600; }
.gd-v2-match-dims {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 6px; margin-top: 12px;
}
.gd-v2-match-dim {
  padding: 4px 12px; border-radius: 12px;
  font-size: 12px; background: #f5f0ff; color: #7B68EE;
  font-weight: 500;
}
.gd-v2-match-ai {
  margin-top: 14px; padding: 12px;
  background: linear-gradient(135deg, #faf8ff, #fff0f5);
  border-radius: 14px; font-size: 13px; color: #555;
  line-height: 1.7; text-align: left;
}
.gd-v2-match-ai-label {
  font-size: 12px; font-weight: 700; color: #7B68EE;
  margin-bottom: 4px;
}

/* 契合度卡内功能按钮行 */
.gd-v2-match-actions {
  display: flex; gap: 8px; margin-top: 14px;
}
.gd-v2-match-actions .gd-v2-match-action-btn {
  flex: 1; padding: 10px 0; border-radius: 12px;
  font-size: 13px; font-weight: 600; cursor: pointer;
  text-align: center; transition: all 0.2s; border: none;
}
.gd-v2-match-actions .gd-v2-match-action-btn:active { transform: scale(0.97); }
.gd-v2-match-actions .gd-v2-match-action-btn.ghost {
  background: #faf9ff; color: #7B68EE; border: 1px dashed #7B68EE;
}
.gd-v2-match-actions .gd-v2-match-action-btn.outline-purple {
  background: #fff; color: #7B68EE; border: 1.5px solid #7B68EE;
}
.gd-v2-match-actions .gd-v2-match-action-btn.outline-pink {
  background: #fff; color: #D4537E; border: 1.5px solid #D4537E;
}
.gd-v2-match-close {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px; border-radius: 50%;
  background: #f0edff; border: none; color: #999;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.gd-v2-match-close:active { background: #e0d8f0; }

/* ===== 4. 立体人物档案卡（灵魂档案） ===== */
.gd-v2-profile {
  margin: 0 16px 12px;
  background: #fff; border-radius: 20px; padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.gd-v2-section-title {
  font-size: 19px; font-weight: 800; color: #333;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.gd-v2-section-title .icon { font-size: 23px; }

/* 基础硬件卡片 - 可视化 */
.gd-v2-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.gd-v2-info-cell {
  padding: 12px; border-radius: 14px;
  background: #faf9ff; border: 1px solid #f0edff;
}
.gd-v2-info-label {
  font-size: 13px; color: #999; margin-bottom: 4px;
}
.gd-v2-info-value {
  font-size: 16px; font-weight: 600; color: #333;
}
/* 基础资料卡片勾选图标 */
.gd-v2-info-cell.checked .gd-v2-info-value::before {
  content: '✓ '; color: #4ade80; font-weight: 700;
}
/* 进度条（身高/收入可视化） */
.gd-v2-info-bar {
  height: 4px; border-radius: 2px; background: #edeaf5;
  margin-top: 6px; overflow: hidden;
}
.gd-v2-info-bar-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, #7B68EE, #9B8EF0);
  transition: width 0.6s ease;
}
/* 亮点标签 */
.gd-v2-highlights {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px;
}
.gd-v2-highlight-tag {
  padding: 5px 12px; border-radius: 14px;
  font-size: 12px; font-weight: 500;
  background: linear-gradient(135deg, #f5f0ff, #fff0f5);
  color: #7B68EE; border: 1px solid #e8e4f5;
}

/* 基础资料底部 — AI分身打招呼按钮（深紫实心渐变） */
.gd-v2-profile-ai-greet {
  display: flex; align-items: center; justify-content: center;
  margin-top: 14px; width: 100%;
  padding: 14px 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #7B68EE, #9B68EF);
  color: #fff; font-size: 15px; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(123,104,238,0.35);
  transition: all 0.2s;
  position: relative; overflow: hidden;
}
.gd-v2-profile-ai-greet::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: gdGreetShine 3s ease-in-out infinite;
}
@keyframes gdGreetShine {
  0% { left: -100%; } 100% { left: 200%; }
}
.gd-v2-profile-ai-greet:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(123,104,238,0.3);
}

/* 独立打招呼模块（从基础资料中移出） */
.gd-v2-greet-section {
  margin: 4px 16px 10px;
}
.gd-v2-greet-big-btn {
  margin-top: 0 !important;
  padding: 18px 0 !important;
  font-size: 17px !important;
  border-radius: 20px !important;
}

/* 今日动态（数据看板风格）*/
.gd-v2-activities {
  margin: 4px 16px 12px;
  background: #fff;
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 4px 20px rgba(123,104,238,0.08);
  border: 1.5px solid rgba(123,104,238,0.12);
}
.gd-v2-activities .gd-v2-section-title { margin-bottom: 12px; }
.gd-v2-activity-cards {
  display: flex; gap: 10px; margin-bottom: 12px;
}
.gd-v2-activity-card {
  flex: 1; background: linear-gradient(135deg, #f8f4ff, #fff5f8);
  border-radius: 16px; padding: 14px 10px; text-align: center;
  border: 1px solid rgba(123,104,238,0.12);
}
.gd-v2-activity-card-num {
  font-size: 26px; font-weight: 900; color: #8046E8; line-height: 1;
  margin-bottom: 5px;
}
.gd-v2-activity-card-label {
  font-size: 12px; color: #7b6e99; font-weight: 600;
}
.gd-v2-activity-card.me {
  background: linear-gradient(135deg, #8046E8, #D4537E);
  color: #fff;
}
.gd-v2-activity-card.me .gd-v2-activity-card-num { color: #fff; }
.gd-v2-activity-card.me .gd-v2-activity-card-label { color: rgba(255,255,255,0.9); }
.gd-v2-activity-card-me {
  font-size: 12px; font-weight: 700; margin-top: 6px;
  padding: 3px 10px; border-radius: 10px; display: inline-block;
  background: rgba(255,255,255,0.2);
}
.gd-v2-activities-body { display: flex; flex-direction: column; gap: 8px; }
.gd-v2-activity-item {
  font-size: 13.5px; line-height: 1.6; color: #444;
  background: linear-gradient(135deg, #faf7ff, #fdf2f7);
  border-radius: 12px; padding: 9px 12px;
  border-left: 3px solid #7B68EE;
}
.gd-v2-activity-item b { color: #D4537E; font-size: 15px; }
.gd-v2-activities-empty { font-size: 13px; color: #aaa; padding: 4px 2px; }


/* 灵魂匹配度标题栏（v5新增，放在三模块上方） */
.gd-v2-soul-match-header {
  margin: 6px 16px 4px;
  padding: 12px 4px 0;
}
.gd-v2-soul-hint-text {
  font-size: 16px; color: #7B68EE; margin-top: 5px;
  font-weight: 600;
}

/* A4 灵魂匹配度卡片 */
.gdv2-soul-match-body { margin-top: 10px; }
.gdv2-match-ring {
  width: 116px; height: 116px; border-radius: 50%;
  margin: 4px auto 12px;
  background: conic-gradient(#7B68EE calc(var(--p) * 1%), #ece8ff 0);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.gdv2-match-ring::before {
  content: ''; position: absolute; inset: 9px; border-radius: 50%;
  background: #fff; box-shadow: 0 4px 14px rgba(123,104,238,0.12);
}
.gdv2-match-ring-inner { position: relative; text-align: center; }
.gdv2-match-ring-num { font-size: 30px; font-weight: 800; color: #5b4bc9; line-height: 1; }
.gdv2-match-ring-num span { font-size: 14px; font-weight: 600; }
.gdv2-match-ring-level { font-size: 13px; color: #7B68EE; font-weight: 700; margin-top: 2px; }
.gdv2-match-bars { margin: 4px 2px 0; }
.gdv2-match-bar-row { display: flex; align-items: center; margin-bottom: 8px; }
.gdv2-match-bar-label { width: 96px; font-size: 13px; color: #555; flex-shrink: 0; }
.gdv2-match-bar-label .gdv2-match-ok { color: #2bb673; font-weight: 700; }
.gdv2-match-bar-label .gdv2-match-no { color: #e0913a; font-weight: 700; }
.gdv2-match-bar { flex: 1; height: 8px; border-radius: 6px; background: #ece8ff; overflow: hidden; }
.gdv2-match-bar-fill { height: 100%; border-radius: 6px; }
.gdv2-match-bar-fill.on { background: linear-gradient(90deg,#9b8bff,#7B68EE); }
.gdv2-match-bar-fill.off { background: linear-gradient(90deg,#f0c08a,#e0913a); }
.gdv2-match-sugs { margin-top: 6px; }
.gdv2-match-sug { font-size: 12.5px; color: #666; line-height: 1.55; margin-bottom: 4px; }

/* 语音介绍卡片：淡紫粉低饱和玻璃卡片，饱和度比全局更突出，但仍保持柔和 */
.gd-v2-voice-card {
  margin: 0 16px 12px;
  background: linear-gradient(135deg, #f8f6ff 0%, #f4efff 50%, #fff4f9 100%);
  border-radius: 20px; padding: 18px; position: relative; overflow: hidden;
  border: 1.5px solid rgba(123,104,238,0.10);
  box-shadow: 0 8px 26px rgba(123,104,238,0.10);
}
.gd-v2-voice-play {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
}
.gd-v2-voice-btn-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #7B68EE, #9B8EF0);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(123,104,238,0.3);
}
.gd-v2-voice-info { flex: 1; }
.gd-v2-voice-title { font-size: 14px; font-weight: 600; color: #333; }
.gd-v2-voice-dur { font-size: 12px; color: #999; margin-top: 2px; }
.gd-v2-voice-wave {
  display: flex; align-items: center; gap: 2px; height: 20px; margin-top: 6px;
}
.gd-v2-voice-wave span {
  width: 3px; border-radius: 2px; background: #7B68EE;
  opacity: 0.5; animation: gdv2VoiceWave 0.8s ease-in-out infinite alternate;
}
.gd-v2-voice-wave span:nth-child(1) { height: 6px; animation-delay: 0s; }
.gd-v2-voice-wave span:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.gd-v2-voice-wave span:nth-child(3) { height: 8px; animation-delay: 0.2s; }
.gd-v2-voice-wave span:nth-child(4) { height: 14px; animation-delay: 0.15s; }
.gd-v2-voice-wave span:nth-child(5) { height: 10px; animation-delay: 0.25s; }
@keyframes gdv2VoiceWave {
  0% { transform: scaleY(0.3); } 100% { transform: scaleY(1); }
}
.gd-v2-voice-lock {
  text-align: center; margin-top: 8px; font-size: 12px; color: #aaa;
}

/* 三维人格模块 - 翻转卡（横条→点中选大框） */
.gd-v2-personality {
  margin: 0 16px 12px;
}
.gd-v2-persona-flip {
  perspective: 1200px;
  margin-bottom: 14px;
  cursor: pointer;
}
.gd-v2-persona-flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.4,.2,.2,1), min-height 0.4s ease;
}
.gd-v2-persona-flip.flipped .gd-v2-persona-flip-inner {
  transform: rotateY(180deg);
}
.gd-v2-persona-flip-front,
.gd-v2-persona-flip-back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 18px;
}
.gd-v2-persona-flip-front {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px;
  min-height: 84px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(123,104,238,0.08);
  border: 2px solid transparent;
  transition: all 0.25s;
}
.gd-v2-persona-flip:active .gd-v2-persona-flip-front { transform: scale(0.985); }
.gd-v2-persona-flip.flipped .gd-v2-persona-flip-front {
  border-color: #7B68EE;
  background: linear-gradient(135deg, #faf8ff, #f5f0ff);
  box-shadow: 0 6px 22px rgba(123,104,238,0.18);
}
.gd-v2-persona-front-text { display: flex; flex-direction: column; }
.gd-v2-persona-flip-arrow {
  margin-left: auto;
  font-size: 26px; color: #c9b8f5; font-weight: 300;
  transition: transform 0.4s;
}
.gd-v2-persona-flip.flipped .gd-v2-persona-flip-arrow { transform: rotate(90deg); color: #7B68EE; }
.gd-v2-persona-flip-back {
  position: absolute; top: 0; left: 0; right: 0;
  transform: rotateY(180deg);
  padding: 22px 20px;
  background: linear-gradient(135deg, #faf8ff, #f5f0ff);
  border: 2px solid rgba(123,104,238,0.25);
  box-shadow: 0 6px 22px rgba(123,104,238,0.16);
}
.gd-v2-persona-flip-back-hint {
  margin-top: 16px; text-align: center;
  font-size: 12px; color: #b3a4e6;
}
.gd-v2-persona-icon { font-size: 42px; flex-shrink: 0; }
.gd-v2-persona-label { font-size: 30px; font-weight: 800; color: #333; margin-bottom: 0; letter-spacing: 1px; }
.gd-v2-persona-hint { font-size: 17px; color: #7B68EE; line-height: 1.4; font-weight: 500; }

/* 三维人格默认预览内容 */
.gd-v2-persona-preview {
  margin: 0 16px 12px;
  background: #fff; border-radius: 16px; padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.gd-v2-persona-preview-items {
  display: flex; flex-direction: column; gap: 8px;
}

/* 人格展开内容 */
.gd-v2-persona-detail {
  margin: 0 16px 16px;
  background: #fff; border-radius: 20px; padding: 24px;
  box-shadow: 0 3px 14px rgba(123,104,238,0.1);
  display: none;
}
.gd-v2-persona-detail.active { display: block; }
.gd-v2-persona-detail-title {
  font-size: 19px; font-weight: 700; color: #7B68EE; margin-bottom: 16px;
}
.gd-v2-persona-items {
  display: flex; flex-direction: column; gap: 12px;
}
.gd-v2-persona-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 14px; border-radius: 14px;
  background: #faf9ff;
}
.gd-v2-persona-item-icon {
  font-size: 28px; flex-shrink: 0; margin-top: 1px;
}
.gd-v2-persona-item-label { font-size: 15px; color: #999; }
.gd-v2-persona-item-value { font-size: 18px; color: #333; font-weight: 600; margin-top: 3px; }

/* ===== 5. 走心故事区 ===== */
.gd-v2-story {
  margin: 0 16px 12px;
  background: #fff; border-radius: 20px; padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.gd-v2-story-item {
  padding: 14px 0; border-bottom: 1px solid #f5f3ff;
}
.gd-v2-story-item:last-child { border-bottom: none; padding-bottom: 0; }
.gd-v2-story-question {
  font-size: 13px; color: #7B68EE; font-weight: 600; margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.gd-v2-story-answer {
  font-size: 14px; color: #444; line-height: 1.7;
  padding: 10px 14px; background: #faf9ff; border-radius: 12px;
  border-left: 3px solid #7B68EE;
}

/* ===== 6. 锁内容设计 ===== */
.gd-v2-locked {
  margin: 0 16px 12px;
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
}
.gd-v2-locked-content {
  padding: 20px;
  filter: blur(6px); user-select: none;
  opacity: 0.6;
}
.gd-v2-locked-mask {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(2px);
}
.gd-v2-locked-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #7B68EE, #9B8EF0);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff; margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(123,104,238,0.3);
}
.gd-v2-locked-text {
  font-size: 14px; color: #555; font-weight: 500; margin-bottom: 4px;
}
.gd-v2-locked-hint {
  font-size: 12px; color: #aaa;
}
.gd-v2-locked-btn {
  margin-top: 12px; padding: 10px 28px; border-radius: 20px;
  background: linear-gradient(135deg, #7B68EE, #D4537E);
  color: #fff; font-size: 14px; font-weight: 600;
  border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(123,104,238,0.3);
  transition: all 0.2s;
}
.gd-v2-locked-btn:active { transform: scale(0.95); }

/* 择偶要求卡片（粉色风格） */
.gd-v2-mate-card {
  margin: 0 16px 12px;
  background: linear-gradient(135deg, #fff0f5, #faf8ff);
  border-radius: 20px; padding: 20px;
  border: 1.5px solid rgba(212,83,126,0.15);
  position: relative; overflow: hidden;
}
.gd-v2-mate-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, #D4537E, #7B68EE);
}

/* ===== 7. AI红娘说 ===== */
.gd-v2-ai-card {
  margin: 0 16px 12px;
  background: linear-gradient(135deg, #faf8ff, #f0f0ff);
  border-radius: 20px; padding: 20px;
  border: 1.5px solid rgba(123,104,238,0.15);
  position: relative;
}
.gd-v2-ai-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, #7B68EE, #9B8EF0);
}
.gd-v2-ai-text {
  font-size: 14px; color: #555; line-height: 1.8;
}

/* ===== 8. 红娘卡片 ===== */
.gd-v2-matchmaker {
  margin: 24px 16px 14px;
  background: linear-gradient(135deg, #fffbeb, #fff8e1);
  border-radius: 20px; padding: 20px 18px;
  border: 1.5px solid rgba(232,155,48,0.15);
  display: flex; align-items: center; gap: 14px;
  min-height: 100px;
}
.gd-v2-matchmaker-avatar {
  width: 58px; height: 58px; border-radius: 50%;
  border: 2px solid #E89B30; object-fit: cover;
  flex-shrink: 0;
}
.gd-v2-matchmaker-info { flex: 1; }
.gd-v2-matchmaker-name { font-size: 15px; font-weight: 600; color: #333; }
.gd-v2-matchmaker-intro { font-size: 12.5px; color: #888; margin-top: 4px; line-height: 1.55; }
.gd-v2-matchmaker-btn {
  padding: 6px 14px; border-radius: 14px;
  border: 1.5px solid #E89B30; background: #fff;
  color: #E89B30; font-size: 12px; font-weight: 600;
  cursor: pointer; white-space: nowrap; flex-shrink: 0;
}
.gd-v2-matchmaker-btn:active { background: #E89B30; color: #fff; }

/* ===== 9. 底部操作栏 ===== */
.gd-v2-footer {
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  background: #fff; border-top: 1px solid #f0edff;
  flex-shrink: 0;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.03);
}
.gd-v2-footer-actions {
  display: flex; gap: 8px;
}
.gd-v2-footer-btn {
  flex: 1; padding: 12px 0; border-radius: 14px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  text-align: center; transition: all 0.2s; border: none;
}
.gd-v2-footer-btn:active { transform: scale(0.97); }
.gd-v2-footer-btn.primary {
  background: linear-gradient(135deg, #7B68EE, #D4537E);
  color: #fff; box-shadow: 0 4px 15px rgba(123,104,238,0.3);
}
.gd-v2-footer-btn.primary.large {
  font-size: 15px; padding: 14px 0; margin-top: 8px; width: 100%;
}
.gd-v2-footer-btn.outline-purple {
  background: #fff; color: #7B68EE;
  border: 1.5px solid #7B68EE;
}
.gd-v2-footer-btn.outline-pink {
  background: #fff; color: #D4537E;
  border: 1.5px solid #D4537E;
}
.gd-v2-footer-btn.ghost-free {
  background: #faf9ff; color: #7B68EE;
  border: 1px dashed #7B68EE; font-size: 13px;
}
.gd-v2-footer-btn .btn-icon { margin-right: 4px; }
.gd-v2-footer-urgency {
  text-align: center; font-size: 11px; color: #D4537E;
  margin-top: 6px; opacity: 0.8;
}

/* 底部安全区占位 */
.gd-v2-bottom-spacer {
  height: calc(12px + env(safe-area-inset-bottom, 0px));
  flex-shrink: 0;
}

/* ===== 10. 动画与微交互 ===== */
@keyframes gdFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.gd-v2-animate-in {
  animation: gdFadeIn 0.4s ease-out both;
}

/* 收藏心跳动画 */
@keyframes gdHeartBeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(1); }
  75% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.gd-v2-collect.collected { animation: gdHeartBeat 0.5s ease; }

/* 加载骨架屏 */
.gd-v2-skeleton {
  background: linear-gradient(90deg, #f0edff 25%, #faf9ff 50%, #f0edff 75%);
  background-size: 200% 100%;
  animation: gdSkeletonShimmer 1.5s infinite;
  border-radius: 12px;
}
@keyframes gdSkeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== 新增：解锁权益清单弹窗 ===== */
.gd-v2-unlock-modal {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); z-index: 200;
  display: none; align-items: flex-end; justify-content: center;
}
.gd-v2-unlock-modal.active { display: flex; }
.gd-v2-unlock-modal-content {
  background: #fff; border-radius: 24px 24px 0 0;
  padding: 24px 20px calc(24px + env(safe-area-inset-bottom, 0px));
  width: 100%; max-width: 430px;
  animation: gdSlideUp 0.3s ease-out;
}
@keyframes gdSlideUp {
  from { transform: translateY(100%); } to { transform: translateY(0); }
}
.gd-v2-unlock-modal-title {
  font-size: 18px; font-weight: 700; color: #333;
  text-align: center; margin-bottom: 16px;
}
.gd-v2-unlock-modal-list {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px;
}
.gd-v2-unlock-modal-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 14px;
  background: #faf9ff;
}
.gd-v2-unlock-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #7B68EE, #9B8EF0);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; flex-shrink: 0;
}
.gd-v2-unlock-item-text {
  font-size: 14px; color: #555; font-weight: 500;
}
.gd-v2-unlock-price-row {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 16px;
}
.gd-v2-unlock-price {
  font-size: 28px; font-weight: 800; color: #D4537E;
}
.gd-v2-unlock-price-unit {
  font-size: 14px; color: #999; font-weight: 400;
}
.gd-v2-unlock-pay-btn {
  width: 100%; padding: 14px; border-radius: 16px;
  background: linear-gradient(135deg, #7B68EE, #D4537E);
  color: #fff; font-size: 16px; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(123,104,238,0.35);
  transition: all 0.2s;
}
.gd-v2-unlock-pay-btn:active { transform: scale(0.97); }
.gd-v2-unlock-cancel {
  width: 100%; padding: 12px; border: none; background: none;
  color: #bbb; font-size: 14px; cursor: pointer; margin-top: 8px;
}

/* ===== 新增：认证徽章行 ===== */
.gd-v2-verify-row {
  display: flex; gap: 12px; margin-bottom: 16px;
  flex-wrap: wrap;
}
.gd-v2-verify-item {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 12px;
  font-size: 12px; font-weight: 600;
  background: #f5f5f5; color: #bbb;
  border: 1px solid #eee;
}
.gd-v2-verify-item.active {
  background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
  color: #E89B30; border-color: #F5D78E;
}
.gd-v2-verify-item.active .gd-v2-verify-icon { color: #E89B30; }
.gd-v2-verify-icon { font-size: 14px; }

/* ===== 新增：匿名好感留言 ===== */
.gd-v2-crush-section {
  margin: 0 16px 12px;
  background: #fff; border-radius: 20px; padding: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
}
.gd-v2-crush-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 20px;
  background: linear-gradient(135deg, #fff0f5, #faf8ff);
  border: 1.5px solid rgba(212,83,126,0.2);
  color: #D4537E; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.gd-v2-crush-btn:active { transform: scale(0.95); background: #fff0f5; }
.gd-v2-crush-hint {
  font-size: 13px; color: #666; margin-top: 8px;
  font-weight: 500;
}
/* 匿名留言弹窗 */
.gd-v2-crush-modal {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); z-index: 200;
  display: none; align-items: center; justify-content: center;
}
.gd-v2-crush-modal.active { display: flex; }
.gd-v2-crush-modal-box {
  background: #fff; border-radius: 24px; padding: 28px 24px 24px;
  width: 310px; text-align: center;
  animation: gdSlideUp 0.3s ease-out;
}
.gd-v2-crush-modal-title {
  font-size: 18px; font-weight: 700; color: #333; margin-bottom: 6px;
}
.gd-v2-crush-modal-sub {
  font-size: 13px; color: #999; margin-bottom: 16px;
}
.gd-v2-crush-input {
  width: 100%; padding: 12px 16px; border-radius: 14px;
  border: 1.5px solid #e8e4f5; background: #faf9ff;
  font-size: 14px; color: #333; outline: none;
  resize: none; min-height: 80px; margin-bottom: 14px;
  box-sizing: border-box; font-family: inherit;
}
.gd-v2-crush-input::placeholder { color: #ccc; }
.gd-v2-crush-input:focus { border-color: #D4537E; }
.gd-v2-crush-send-btn {
  width: 100%; padding: 13px; border-radius: 14px;
  background: linear-gradient(135deg, #D4537E, #E8789A);
  color: #fff; font-size: 15px; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.2s;
}
.gd-v2-crush-send-btn:active { transform: scale(0.97); }
.gd-v2-crush-cancel-btn {
  margin-top: 10px; font-size: 13px; color: #bbb;
  background: none; border: none; cursor: pointer;
}

/* ================================================================
   v4 新增模块样式
   ================================================================ */

/* ===== v5-1. 生活切片（大图照片流，去哪儿网风格）===== */
.gd-v2-photo-stream {
  margin: 0 16px 14px;
  background: #fff; border-radius: 20px; padding: 14px 0 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* 轮播容器 */
.gd-v2-ps-carousel {
  position: relative;
  width: 100%; height: 220px;
  overflow: hidden;
  -webkit-user-select: none; user-select: none;
  touch-action: pan-y pinch-zoom;
}

/* 滑动轨道 */
.gd-v2-ps-track {
  display: flex;
  width: 100%; height: 100%;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 单张大图 */
.gd-v2-ps-slide {
  flex: 0 0 100%; width: 100%; height: 220px;
  position: relative;
  overflow: hidden;
}

.gd-v2-ps-slide img {
  width: 100%; height: 200px;
  object-fit: cover; display: block;
  border-radius: 12px; margin: 0 8px;
  background: #f5f0ff;
}

/* 图片底部文字 */
.gd-v2-ps-caption {
  text-align: center; padding: 6px 12px 0;
  font-size: 12px; color: #666; font-weight: 500;
  line-height: 1.3; min-height: 18px;
}

/* 页码指示器（右下角）*/
.gd-v2-ps-counter {
  position: absolute; bottom: 22px; right: 14px;
  background: rgba(0,0,0,0.5); color: #fff;
  padding: 2px 9px; border-radius: 10px;
  font-size: 11px; font-weight: 600;
  z-index: 2; backdrop-filter: blur(4px);
}

/* 指示点（居中底部）*/
.gd-v2-ps-dots {
  position: absolute; bottom: 4px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 2;
}

.gd-v2-ps-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  transition: all 0.25s;
}
.gd-v2-ps-dot.active {
  background: #fff; transform: scale(1.25);
  box-shadow: 0 0 6px rgba(123,104,238,0.5);
}

/* ===== v4-2. AI漫画头像（卡通形象风格）===== */
/* ===== v4-2. AI想象中的用户（3D玩偶风格） ===== */
.gd-v2-ai-avatar {
  margin: 0 16px 14px;
  border-radius: 20px;
  background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(123,104,238,0.12);
  border: 1.5px solid rgba(123,104,238,0.1);
}
.gd-v2-ai-avatar-header {
  padding: 10px 16px 6px;
  font-size: 13px; font-weight: 700; color: #7B68EE;
  display: flex; align-items: center; gap: 6px;
}
.gd-v2-ai-avatar-body {
  display: flex; flex-direction: column; align-items: center;
  padding: 4px 16px 18px; gap: 8px;
}
.gd-v2-ai-doll-stage {
  position: relative;
  width: 160px; height: 200px;
  display: flex; align-items: center; justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.gd-v2-ai-doll-svg {
  width: 150px; height: 180px;
  filter: drop-shadow(0 4px 12px rgba(123,104,238,0.2));
  animation: dollFloat 3s ease-in-out infinite;
}
@keyframes dollFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.gd-v2-doll-arm-l { animation: armSwingL 3.5s ease-in-out infinite; transform-origin: 68px 160px; }
.gd-v2-doll-arm-r { animation: armSwingR 3.5s ease-in-out infinite 0.3s; transform-origin: 132px 160px; }
@keyframes armSwingL {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(8deg); }
}
@keyframes armSwingR {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-8deg); }
}
.gd-v2-ai-doll-svg ellipse[fill="#3a2a6a"] {
  animation: blink 4s ease-in-out infinite;
}
@keyframes blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}
.gd-v2-doll-mouth { animation: smileMove 4s ease-in-out infinite; }
@keyframes smileMove {
  0%, 100% { d: path("M93,126 Q100,133 107,126"); }
  50% { d: path("M92,126 Q100,135 108,126"); }
}
.gd-v2-doll-ring {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 20px;
  background: radial-gradient(ellipse, rgba(123,104,238,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

/* 头像外圈脉冲光环 —— 一眼记住AI分身 */
.gd-v2-avatar-pulse-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.gd-v2-avatar-pulse-ring::before,
.gd-v2-avatar-pulse-ring::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  border: 2.5px solid rgba(123,104,238,0.45);
  box-shadow: 0 0 18px rgba(123,104,238,0.35), inset 0 0 12px rgba(123,104,238,0.15);
  animation: avatarPulseRing 2.4s ease-out infinite;
}
.gd-v2-avatar-pulse-ring::after {
  animation-delay: 1.2s;
  border-color: rgba(212,83,126,0.35);
  box-shadow: 0 0 18px rgba(212,83,126,0.3), inset 0 0 12px rgba(212,83,126,0.1);
}
@keyframes avatarPulseRing {
  0% { transform: scale(0.85); opacity: 0.9; }
  60% { opacity: 0.45; }
  100% { transform: scale(1.25); opacity: 0; }
}
.gd-v2-ai-doll-stage img {
  position: relative; z-index: 2;
}
.gd-v2-ai-doll-stage:active .gd-v2-ai-doll-svg {
  animation-duration: 0.15s;
  filter: drop-shadow(0 2px 8px rgba(123,104,238,0.35));
  transform: scale(0.96);
}
.gd-v2-ai-avatar-desc {
  font-size: 15px; color: #4a4458; text-align: center;
  line-height: 1.55; max-width: 250px;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255,255,255,0.8);
  margin: 4px 0 4px;
}
.gd-v2-ai-avatar-greet-btn {
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 260px; margin-top: 8px;
  padding: 12px 18px;
  border-radius: 14px;
  border: none; cursor: pointer;
  background: linear-gradient(135deg, #9B94B7 0%, #B8B2D1 100%);
  color: #fff;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 4px 14px rgba(123,104,238,0.28);
  position: relative; overflow: visible;
  transition: transform 0.15s ease, filter 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  animation: gdAvatarGreetBreath 2.2s ease-in-out infinite;
}
@keyframes gdAvatarGreetBreath {
  0%, 100% { box-shadow: 0 4px 14px rgba(123,104,238,0.28); }
  50% { box-shadow: 0 6px 22px rgba(123,104,238,0.55), 0 0 0 6px rgba(123,104,238,0.12); }
}
/* 外圈脉冲呼吸光环 */
.gd-v2-ai-avatar-greet-btn::after {
  content: ''; position: absolute; inset: 0; border-radius: 14px; pointer-events: none;
  box-shadow: 0 0 0 0 rgba(123,104,238,0.45);
  animation: gdAvatarGreetPulse 2.2s ease-out infinite;
}
@keyframes gdAvatarGreetPulse {
  0% { box-shadow: 0 0 0 0 rgba(123,104,238,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(123,104,238,0); }
  100% { box-shadow: 0 0 0 0 rgba(123,104,238,0); }
}
.gd-v2-ai-avatar-greet-btn::before {
  content: ''; position: absolute; top: 0; left: -75%;
  width: 55%; height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-20deg); pointer-events: none;
  animation: gdAvatarGreetShimmer 2.4s ease-in-out infinite;
}
@keyframes gdAvatarGreetShimmer {
  0% { left: -75%; } 55% { left: 120%; } 100% { left: 120%; }
}
.gd-v2-ai-avatar-greet-btn:active { transform: scale(0.96); filter: brightness(1.08); }

/* ===== v4-3. 语音互动按钮 .gd-v2-voice-interact ===== */
.gd-v2-voice-interact {
  margin: 0 16px 12px;
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  background: #fff; border-radius: 20px; padding: 18px 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.gd-v2-voice-interact-btn {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  padding: 12px 22px; border-radius: 50px;
  background: linear-gradient(135deg, #fff0f5, #ffe4ee);
  border: 1.5px solid rgba(212,83,126,0.2);
  cursor: pointer; transition: all 0.2s;
}
.gd-v2-voice-interact-btn:active { transform: scale(0.92); }
.gd-v2-voice-interact-btn .emoji { font-size: 22px; }
.gd-v2-voice-interact-btn .label {
  font-size: 11px; font-weight: 600; color: #D4537E;
}
.gd-v2-voice-interact-btn:nth-child(2) {
  background: linear-gradient(135deg, #fff0f5, #ffd6e0);
  border-color: rgba(212,83,126,0.3);
}
.gd-v2-voice-interact-btn:nth-child(3) {
  background: linear-gradient(135deg, #f5f0ff, #ffe4ee);
  border-color: rgba(212,83,126,0.15);
}
/* 发送动效 */
.gd-v2-voice-interact-btn.sent {
  animation: gdVoiceInteractPop 0.5s ease;
}
@keyframes gdVoiceInteractPop {
  0% { transform: scale(1); }
  30% { transform: scale(1.15); }
  60% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* ===== v4-4. 灵魂拷问卡片 .gd-v2-soul-qa ===== */
.gd-v2-soul-qa {
  margin: 0 16px 12px;
  background: #fff; border-radius: 20px; padding: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.gd-v2-soul-qa-title {
  font-size: 18px; font-weight: 800; color: #333;
  margin-bottom: 8px; padding-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(123,104,238,0.08);
}
.gd-v2-soul-qa-title .icon { font-size: 20px; }
.gd-v2-soul-qa-card {
  position: relative;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #faf0ff, #fff0f5);
  border: 1px solid rgba(212,83,126,0.1);
  margin-bottom: 22px;
  overflow: hidden;
}
.gd-v2-soul-qa-card:last-child { margin-bottom: 0; }
.gd-v2-soul-qa-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, #c084fc, #D4537E);
}
.gd-v2-soul-qa-number {
  position: absolute; top: 10px; right: 12px;
  padding: 3px 10px; border-radius: 8px;
  background: rgba(123,104,238,0.12);
  color: #7B68EE; font-size: 11px; font-weight: 700;
}
.gd-v2-soul-qa-question {
  font-size: 14px; font-weight: 600; color: #555;
  line-height: 1.6; margin-bottom: 10px;
  padding-right: 40px;
}
.gd-v2-soul-qa-answer {
  font-size: 13px; color: #777; line-height: 1.7;
  padding: 10px 14px;
  background: rgba(255,255,255,0.6);
  border-radius: 12px;
  border-left: 3px solid #D4537E;
}

/* ===== v4-5. 择偶要求半模糊 .gd-v2-mate-partial ===== */
.gd-v2-mate-partial {
  margin: 0 16px 12px;
  background: #fff; border-radius: 20px; padding: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.gd-v2-mate-partial-title {
  font-size: 16px; font-weight: 700; color: #333;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.gd-v2-mate-partial-title .icon { font-size: 20px; }
.gd-v2-mate-partial-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.gd-v2-mate-partial-tag {
  padding: 6px 14px; border-radius: 14px;
  font-size: 13px; font-weight: 500;
}
.gd-v2-mate-partial-tag.clear {
  background: linear-gradient(135deg, #f5f0ff, #fff0f5);
  color: #7B68EE; border: 1px solid #e8e4f5;
}
.gd-v2-mate-partial-tag.blurred {
  background: #f5f5f5; color: #ccc;
  filter: blur(4px); user-select: none;
  border: 1px solid #eee;
  pointer-events: none;
}
.gd-v2-mate-partial-hint {
  margin-top: 12px;
  text-align: center; font-size: 12px; color: #bbb;
}
.gd-v2-mate-partial-unlock-btn {
  display: block; margin: 10px auto 0;
  padding: 8px 24px; border-radius: 20px;
  background: linear-gradient(135deg, #7B68EE, #D4537E);
  color: #fff; font-size: 13px; font-weight: 600;
  border: none; cursor: pointer;
  box-shadow: 0 4px 12px rgba(123,104,238,0.25);
  transition: all 0.2s;
}
.gd-v2-mate-partial-unlock-btn:active { transform: scale(0.95); }

/* ===== v4-6. 内心独白锁 .gd-v2-monologue ===== */
.gd-v2-monologue {
  margin: 0 16px 12px;
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  position: relative;
}
.gd-v2-monologue-content {
  padding: 20px;
  filter: blur(6px); user-select: none;
  opacity: 0.6;
  line-height: 1.8; font-size: 14px; color: #555;
}
.gd-v2-monologue-mask {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(2px);
}
.gd-v2-monologue-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #D4537E, #E8789A);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff; margin-bottom: 10px;
  box-shadow: 0 4px 15px rgba(212,83,126,0.3);
}
.gd-v2-monologue-text {
  font-size: 14px; color: #555; font-weight: 500; margin-bottom: 4px;
}
.gd-v2-monologue-price {
  font-size: 14px; font-weight: 700; color: #D4537E;
  margin-bottom: 12px;
}
.gd-v2-monologue-btn {
  padding: 10px 28px; border-radius: 20px;
  background: linear-gradient(135deg, #D4537E, #7B68EE);
  color: #fff; font-size: 14px; font-weight: 600;
  border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(212,83,126,0.3);
  transition: all 0.2s;
}
.gd-v2-monologue-btn:active { transform: scale(0.95); }

/* ===== v4-7. 内心独白卡片（替换生活切片）===== */
.gd-v2-monologue-cards {
  margin: 12px 16px 0;
  padding-bottom: 8px;
}
.gd-v2-mo-track-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gd-v2-mo-track-wrapper::-webkit-scrollbar { display: none; }
.gd-v2-mo-track {
  display: flex;
  gap: 10px;
  padding: 4px 0 8px;
}
.gd-v2-mo-track-wrapper .gd-v2-mo-track {
  scroll-snap-align: start;
}
.gd-v2-mo-card {
  flex: 0 0 calc(47% - 5px);
  min-width: calc(47% - 5px);
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.2s, box-shadow 0.4s;
  cursor: pointer;
  position: relative;
  box-shadow: 0 8px 22px rgba(123,104,238,0.16);
  animation: moBreath 4.5s ease-in-out infinite;
}
.gd-v2-mo-card:nth-child(2) { animation-delay: 1.1s; }
.gd-v2-mo-card:nth-child(3) { animation-delay: 2.2s; }
.gd-v2-mo-card:nth-child(4) { animation-delay: 3.3s; }
.gd-v2-mo-card:nth-child(5) { animation-delay: 4.4s; }
.gd-v2-mo-card:nth-child(6) { animation-delay: 5.5s; }
.gd-v2-mo-card:active { transform: scale(0.97); }
/* 呼吸感：紫调光晕缓缓明灭 */
@keyframes moBreath {
  0%, 100% { box-shadow: 0 8px 22px rgba(123,104,238,0.16); }
  50% { box-shadow: 0 16px 40px rgba(123,104,238,0.32); }
}

/* 卡片内部 */
.gd-v2-mo-card-inner {
  padding: 18px 14px;
  height: 100%;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.35);
}
/* 立体感：右上方柔光高光，营造光源与厚度 */
.gd-v2-mo-card-inner::before {
  content: '';
  position: absolute;
  top: -28%; right: -18%;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.28), transparent 70%);
  pointer-events: none;
}

/* 4种主题 */
.gd-v2-mo-theme-dark .gd-v2-mo-card-inner {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #e8d5f5;
}
.gd-v2-mo-theme-warm .gd-v2-mo-card-inner {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
  color: #5a3e1b;
}
.gd-v2-mo-theme-purple .gd-v2-mo-card-inner {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
  color: #fff;
}
.gd-v2-mo-theme-fresh .gd-v2-mo-card-inner {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f4fd 100%);
  color: #2c3e50;
}

/* 引用号 */
.gd-v2-mo-quote {
  font-size: 28px;
  line-height: 1;
  opacity: 0.35;
  margin-bottom: 6px;
  font-family: Georgia, serif;
}
.gd-v2-mo-theme-dark .gd-v2-mo-quote { color: #c084fc; }
.gd-v2-mo-theme-warm .gd-v2-mo-quote { color: #e87b4a; }
.gd-v2-mo-theme-purple .gd-v2-mo-quote { color: rgba(255,255,255,0.5); }
.gd-v2-mo-theme-fresh .gd-v2-mo-quote { color: #7c3aed; }

/* 文字内容 */
.gd-v2-mo-text {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 10px;
  flex: 1;
  display: flex;
  align-items: center;
  white-space: pre-line;
}
.gd-v2-mo-theme-dark .gd-v2-mo-text { font-size: 14px; }

/* 作者署名 */
.gd-v2-mo-author {
  font-size: 12px;
  opacity: 0.55;
  text-align: right;
  margin-top: auto;
  padding-top: 8px;
}

/* 提示文字 */
.gd-v2-mo-hint {
  text-align: center;
  font-size: 11px;
  color: #b0a8c9;
  padding: 6px 0 2px;
}

/* Lightbox 放大层 - 竖版全屏卡片，一次只展示一张，可滑动切换 */
#moLightbox .gd-v2-mo-card {
  flex: none;
  min-width: auto;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  scroll-snap-align: none;
}
#moLightbox .gd-v2-mo-card-inner {
  min-height: 65vh;
  padding: 40px 28px;
}
#moLightbox .gd-v2-mo-text {
  font-size: 22px;
  line-height: 1.8;
  font-weight: 500;
}
#moLightbox .gd-v2-mo-quote {
  font-size: 36px;
}
#moLightbox .gd-v2-mo-author {
  font-size: 13px;
}

/* 底部滑动指示器 */
.gd-v2-mo-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.gd-v2-mo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s;
}
.gd-v2-mo-dot.active {
  background: rgba(255,255,255,0.9);
  width: 20px;
  border-radius: 4px;
}

/* ===== 移动端 灵魂拷问 ===== */

/* ===== v4-8. 礼物面板弹窗 .gd-v2-gift-modal ===== */
.gd-v2-gift-modal {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); z-index: 200;
  display: none; align-items: flex-end; justify-content: center;
}
.gd-v2-gift-modal.active { display: flex; }
.gd-v2-gift-modal-content {
  background: #fff; border-radius: 24px 24px 0 0;
  padding: 20px 16px calc(20px + env(safe-area-inset-bottom, 0px));
  width: 100%; max-width: 430px;
  animation: gdSlideUp 0.3s ease-out;
}
.gd-v2-gift-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.gd-v2-gift-modal-title {
  font-size: 18px; font-weight: 700; color: #333;
}
.gd-v2-gift-modal-close {
  width: 32px; height: 32px; border-radius: 50%;
  background: #f0edff; border: none; color: #999;
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.gd-v2-gift-modal-close:active { background: #e0d8f0; }
/* 礼物网格 */
.gd-v2-gift-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; margin-bottom: 20px;
}
.gd-v2-gift-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  padding: 16px 8px 14px;
  border-radius: 16px;
  background: #faf9ff; border: 2px solid transparent;
  cursor: pointer; transition: all 0.2s;
}
.gd-v2-gift-item:active { transform: scale(0.94); }
.gd-v2-gift-item.selected {
  border-color: #7B68EE;
  background: linear-gradient(135deg, #f5f0ff, #fff0f5);
}
.gd-v2-gift-item-emoji {
  font-size: 36px;
  line-height: 1;
}
.gd-v2-gift-item-name {
  font-size: 12px; font-weight: 600; color: #555;
}
.gd-v2-gift-item-price {
  font-size: 11px; font-weight: 600; color: #D4537E;
}
.gd-v2-gift-send-btn {
  width: 100%; padding: 14px; border-radius: 16px;
  background: linear-gradient(135deg, #7B68EE, #D4537E);
  color: #fff; font-size: 16px; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(123,104,238,0.35);
  transition: all 0.2s;
}
.gd-v2-gift-send-btn:active { transform: scale(0.97); }
.gd-v2-gift-cancel {
  width: 100%; padding: 12px; border: none; background: none;
  color: #bbb; font-size: 14px; cursor: pointer; margin-top: 8px;
}
/* 礼物发送成功飘浮动画 */
.gd-v2-gift-float {
  position: fixed; z-index: 300;
  font-size: 48px;
  pointer-events: none;
  animation: gdGiftFloatUp 1.2s ease-out forwards;
}
@keyframes gdGiftFloatUp {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-200px) scale(1.5); }
}

/* ===== v4 移动端适配 ===== */
@media screen and (max-width: 420px) {
  /* 照片流 */
  .gd-v2-photo-stream-item {
    width: 100px; height: 75px;
    border-radius: 10px;
  }
  /* 3D玩偶形象 */
  .gd-v2-ai-doll-svg { width: 120px; height: 145px; }
  .gd-v2-doll-stage { width: 130px; height: 165px; }
  /* 语音互动按钮 */
  .gd-v2-voice-interact { gap: 10px; padding: 14px 8px; }
  .gd-v2-voice-interact-btn { padding: 10px 16px; border-radius: 50px; }
  .gd-v2-voice-interact-btn .emoji { font-size: 18px; }
  /* 灵魂拷问 */
  .gd-v2-soul-qa-card { padding: 14px; }
  .gd-v2-soul-qa-question { font-size: 13px; }
  .gd-v2-soul-qa-answer { font-size: 12px; }
  /* 礼物面板 */
  .gd-v2-gift-grid { gap: 8px; }
  .gd-v2-gift-item { padding: 12px 4px 10px; border-radius: 14px; }
  .gd-v2-gift-item-emoji { font-size: 30px; }
  /* 三维人格Tab */
  .gd-v2-personality { gap: 8px; }
  .gd-v2-persona-card { padding: 16px 6px 14px; min-height: 100px; }
  .gd-v2-persona-icon { font-size: 32px; margin-bottom: 6px; }
  .gd-v2-persona-label { font-size: 14px; }
  .gd-v2-persona-hint { font-size: 10px; }
  .gd-v2-persona-detail { padding: 16px; }
  .gd-v2-persona-item { padding: 10px 12px; }
  .gd-v2-persona-item-value { font-size: 13px; }
  /* 基础资料AI打招呼按钮 */
  .gd-v2-profile-ai-greet { padding: 12px 0; font-size: 14px; }
  /* 择偶观解锁区域（2026-07-26 下线） */
}

/* ================================================================
   v5 新增样式 — 语音播放器 / 礼物 / 灵魂卡片翻转 / AI悬浮卡片
   ================================================================ */

/* ===== 语音播放器：柔和低饱和紫色 + 深色外框线，嵌在浅色玻璃卡片内做视觉锚点 ===== */
.gd-v2-voice-player {
  position: relative;
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #5B2BD6 0%, #6E3CE8 50%, #8B5CF6 100%);
  padding: 16px 18px; margin-bottom: 12px;
  cursor: pointer;
  min-height: 92px;
  display: flex; flex-direction: column; justify-content: center;
  border: 2.5px solid #3E1FA8;
  box-shadow: 0 6px 18px rgba(123,104,238,0.42), inset 0 1px 1px rgba(255,255,255,0.35);
}
.gd-v2-voice-cover {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.gd-v2-voice-play-icon, .gd-v2-voice-playing-icon {
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3));
  transition: transform 0.2s;
}
.gd-v2-voice-player:active .gd-v2-voice-play-icon,
.gd-v2-voice-player:active .gd-v2-voice-playing-icon {
  transform: scale(0.9);
}
.gd-v2-voice-glow {
  position: absolute; top: 50%; left: 50%;
  width: 70px; height: 70px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  animation: gdVoiceGlow 3s ease-in-out infinite;
}
.gd-v2-voice-info-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.gd-v2-voice-info-left {
  display: flex; flex-direction: column; gap: 2px;
}
.gd-v2-voice-label {
  font-size: 16px; font-weight: 700; color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.gd-v2-voice-duration {
  font-size: 12.5px; color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.gd-v2-voice-free-tag {
  padding: 5px 12px; border-radius: 12px;
  background: rgba(255,255,255,0.18);
  color: #fff; font-size: 12px; font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.12);
}
.gd-v2-voice-wave {
  display: flex; align-items: center; gap: 3px;
  height: 20px;
}
.gd-v2-voice-wave span {
  flex: 1; max-width: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.3);
  height: 6px;
  transition: background 0.2s;
}
.gd-v2-voice-wave.playing span {
  background: rgba(255,255,255,0.8);
  animation: gdVoiceWavePlay 0.6s ease-in-out infinite alternate;
}
.gd-v2-voice-wave.playing span:nth-child(1) { animation-delay: 0s; }
.gd-v2-voice-wave.playing span:nth-child(2) { animation-delay: 0.05s; }
.gd-v2-voice-wave.playing span:nth-child(3) { animation-delay: 0.1s; }
.gd-v2-voice-wave.playing span:nth-child(4) { animation-delay: 0.15s; }
.gd-v2-voice-wave.playing span:nth-child(5) { animation-delay: 0.2s; }
.gd-v2-voice-wave.playing span:nth-child(6) { animation-delay: 0.25s; }
.gd-v2-voice-wave.playing span:nth-child(7) { animation-delay: 0.1s; }
.gd-v2-voice-wave.playing span:nth-child(8) { animation-delay: 0.2s; }
.gd-v2-voice-wave.playing span:nth-child(9) { animation-delay: 0.05s; }
.gd-v2-voice-wave.playing span:nth-child(10) { animation-delay: 0.3s; }
.gd-v2-voice-wave.playing span:nth-child(11) { animation-delay: 0.15s; }
.gd-v2-voice-wave.playing span:nth-child(12) { animation-delay: 0.25s; }
.gd-v2-voice-wave.playing span:nth-child(13) { animation-delay: 0.1s; }
.gd-v2-voice-wave.playing span:nth-child(14) { animation-delay: 0.2s; }
.gd-v2-voice-wave.playing span:nth-child(15) { animation-delay: 0.05s; }
.gd-v2-voice-wave.playing span:nth-child(16) { animation-delay: 0.3s; }
.gd-v2-voice-wave.playing span:nth-child(17) { animation-delay: 0.15s; }
.gd-v2-voice-wave.playing span:nth-child(18) { animation-delay: 0.1s; }
.gd-v2-voice-wave.playing span:nth-child(19) { animation-delay: 0.25s; }
.gd-v2-voice-wave.playing span:nth-child(20) { animation-delay: 0.05s; }
@keyframes gdVoiceWavePlay {
  0% { height: 4px; }
  100% { height: 24px; }
}
.gd-v2-voice-progress {
  width: 100%; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.15);
  margin-top: 6px; overflow: hidden;
}
.gd-v2-voice-progress-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.7));
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* ===== 送礼区域：图标直接浮在整块紫色玻璃背景上，与语音卡片融为一体 ===== */
.gd-v2-gift-section {
  margin: 12px 0 4px;
  padding: 8px 0 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.gd-v2-gift-title {
  font-size: 14px; font-weight: 800; color: #6B5AB0;
  margin-top: 6px; text-align: center;
  text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}
/* 横向轨道：礼物直接浮在背景上，无单独卡片背景 */
.gd-v2-gift-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gd-v2-gift-track::-webkit-scrollbar { display: none; }
.gd-v2-gift-track { scrollbar-width: none; }
.gd-v2-gift-item {
  position: relative;
  flex: 0 0 auto;
  width: 74px;
  display: flex; flex-direction: column;
  align-items: center; gap: 4px;
  padding: 6px 4px 4px;
  border-radius: 14px;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: center;
  transition: transform 0.18s ease;
}
/* 点击高级反馈：轻微放大 1.05 */
.gd-v2-gift-item.gd-v2-gift-tap {
  transform: scale(1.05);
}
/* 礼物图标浮起：淡紫投影 + 底部接触阴影 + 高光点，立体浮在浅色玻璃上 */
.gd-v2-gift-float-icon {
  font-size: 44px; line-height: 1;
  position: relative;
  filter: drop-shadow(0 8px 12px rgba(123,104,238,0.28));
  animation: giftFloat 3.6s ease-in-out infinite;
  margin-bottom: 2px;
}
.gd-v2-gift-float-icon::before {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  width: 60%; height: 8px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(123,104,238,0.22), transparent 70%);
}
.gd-v2-gift-float-icon::after {
  content: '';
  position: absolute;
  top: 2%; left: 14%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.92), transparent 70%);
}
@keyframes giftFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
/* 淡紫波纹 */
.gd-v2-gift-ripple {
  position: absolute;
  top: 50%; left: 50%;
  width: 52px; height: 52px;
  margin: -26px 0 0 -26px;
  border-radius: 50%;
  border: 2px solid rgba(123, 104, 238, 0.35);
  opacity: 0;
  pointer-events: none;
}
.gd-v2-gift-ripple.play { animation: giftRipple 0.6s ease-out; }
@keyframes giftRipple {
  0% { transform: scale(0.25); opacity: 0.85; }
  100% { transform: scale(2.4); opacity: 0; }
}
.gd-v2-gift-name {
  font-size: 12px; font-weight: 700; color: #4a3d6b;
  text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}
.gd-v2-gift-price {
  font-size: 12px; font-weight: 800; color: #7B68EE;
  background: rgba(123,104,238,0.10);
  padding: 2px 8px; border-radius: 20px;
  text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}
.gd-v2-gift-hint { display: none; }

/* ===== 送礼确认弹窗 ===== */
.gd-v2-gift-modal {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); z-index: 200;
  display: none; align-items: center; justify-content: center;
}
.gd-v2-gift-modal.active { display: flex; }
.gd-v2-gift-modal-box {
  background: #fff; border-radius: 24px;
  padding: 28px 24px 20px;
  width: 300px; text-align: center;
  position: relative;
  animation: gdSlideUp 0.3s ease-out;
}
.gd-v2-gift-modal-close {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px; border-radius: 50%;
  background: #f0edff; border: none; color: #999;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.gd-v2-gift-modal-emoji {
  font-size: 48px; margin-bottom: 8px;
}
.gd-v2-gift-modal-title {
  font-size: 16px; font-weight: 700; color: #333;
  margin-bottom: 4px;
}
.gd-v2-gift-modal-to {
  font-size: 13px; color: #888; margin-bottom: 12px;
}
.gd-v2-gift-modal-price {
  font-size: 22px; font-weight: 700; color: #D4537E;
  margin-bottom: 4px;
}
.gd-v2-gift-modal-price span { font-size: 14px; color: #888; font-weight: 400; }
.gd-v2-gift-modal-balance {
  font-size: 12px; color: #aaa; margin-bottom: 16px;
}
.gd-v2-gift-modal-btn {
  width: 100%; padding: 13px; border-radius: 14px;
  background: linear-gradient(135deg, #7B68EE, #D4537E);
  color: #fff; font-size: 15px; font-weight: 700;
  border: none; cursor: pointer;
  box-shadow: 0 4px 15px rgba(123,104,238,0.35);
  transition: all 0.2s;
}
.gd-v2-gift-modal-btn:active { transform: scale(0.97); }
.gd-v2-gift-modal-cancel {
  width: 100%; padding: 12px; border: none; background: none;
  color: #bbb; font-size: 14px; cursor: pointer; margin-top: 8px;
}

/* ===== 灵魂匹配度卡片翻转 ===== */
.gd-v2-soul-hint {
  font-size: 14px; color: #7B68EE; margin-bottom: 14px;
  text-align: center; font-weight: 600;
}
.gd-v2-soul-card {
  perspective: 1000px;
  margin-bottom: 22px;
  cursor: pointer;
}
.gd-v2-soul-card-inner {
  position: relative;
  width: 100%; min-height: 220px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.gd-v2-soul-card.flipped .gd-v2-soul-card-inner {
  transform: rotateY(180deg);
}
.gd-v2-soul-card-front, .gd-v2-soul-card-back {
  position: absolute; top: 0; left: 0; right: 0;
  border-radius: 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  padding: 16px 18px;
}
.gd-v2-soul-card-front {
  background: linear-gradient(135deg, #faf0ff, #fff0f5);
  border: 1px solid rgba(212,83,126,0.1);
}
.gd-v2-soul-card-front::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, #c084fc, #D4537E);
}
.gd-v2-soul-card-num {
  position: absolute; top: 10px; right: 12px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(123,104,238,0.12);
  color: #7B68EE; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.gd-v2-soul-card-q {
  font-size: 19px; font-weight: 700; color: #444;
  margin-bottom: 12px; padding-right: 30px;
  line-height: 1.5;
}
.gd-v2-soul-card-opts {
  display: flex; flex-direction: column; gap: 6px;
}
.gd-v2-soul-opt {
  padding: 8px 12px; border-radius: 10px;
  background: rgba(255,255,255,0.7);
  font-size: 16px; color: #666;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.gd-v2-soul-opt.picked {
  background: linear-gradient(135deg, rgba(123,104,238,0.1), rgba(212,83,126,0.08));
  color: #7B68EE; font-weight: 600;
  border-color: rgba(123,104,238,0.2);
}
.gd-v2-soul-card-flip-hint {
  font-size: 13px; color: #7B68EE; text-align: center;
  margin-top: 10px; font-weight: 600;
}
.gd-v2-soul-card-back {
  background: linear-gradient(135deg, #f5f0ff, #e8deff);
  border: 1px solid rgba(123,104,238,0.2);
  transform: rotateY(180deg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 14px;
  text-align: center;
  min-height: 220px;
  padding: 22px 18px;
}
.gd-v2-soul-card-back::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, #7B68EE, #9B8EF0);
}
.gd-v2-soul-card-back-icon {
  font-size: 36px; margin-bottom: 0;
}
.gd-v2-soul-card-reveal {
  font-size: 18px; color: #555; line-height: 1.6;
  font-weight: 600; margin-bottom: 0;
}
.gd-v2-soul-card-answer {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7B68EE, #9B8EF0);
  color: #fff;
  font-size: 19px; font-weight: 800;
  margin: 0;
  box-shadow: 0 4px 14px rgba(123,104,238,0.35);
  animation: answerPop 0.4s ease-out;
}
@keyframes answerPop {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.gd-v2-soul-card-match {
  font-size: 15px; color: #999;
}
/* 整合 v20260726：6 项核心翻卡，我/TA 选项高亮 + 角标 */
.gd-v2-soul-opt {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
}
.gd-v2-soul-opt.mine {
  background: linear-gradient(135deg, rgba(123,104,238,0.18), rgba(212,83,126,0.10));
  color: #5A4FCF; font-weight: 700;
  border-color: rgba(123,104,238,0.45);
  box-shadow: 0 2px 8px rgba(123,104,238,0.15);
}
.gd-v2-soul-opt.ta {
  background: linear-gradient(135deg, rgba(76,175,80,0.15), rgba(102,187,106,0.10));
  color: #2E7D32; font-weight: 700;
  border-color: rgba(76,175,80,0.45);
  box-shadow: 0 2px 8px rgba(76,175,80,0.15);
}
.gd-v2-soul-opt.mine.ta {
  background: linear-gradient(135deg, rgba(123,104,238,0.22) 0%, rgba(76,175,80,0.18) 100%);
  color: #4A3DB8; font-weight: 800;
  border-color: rgba(123,104,238,0.5);
}
.gd-v2-soul-opt-text { flex: 1; }
.gd-v2-soul-tag {
  font-size: 11px; font-weight: 700; padding: 2px 7px;
  border-radius: 999px; line-height: 1.3; white-space: nowrap;
}
.gd-v2-soul-tag.mine { background: #7B68EE; color: #fff; }
.gd-v2-soul-tag.ta   { background: #4CAF50; color: #fff; }
.gd-v2-soul-tag.both { background: linear-gradient(90deg, #7B68EE, #4CAF50); color: #fff; }

.gd-v2-soul-card-back-title {
  font-size: 16px; color: #5A4FCF; font-weight: 700;
}
.gd-v2-soul-card-back .gd-v2-soul-card-q {
  font-size: 14px; color: #777; font-weight: 500; margin-top: -4px;
}
/* 卡片左边色条：一致 ✅ / 分歧 ⚡ */
.gd-v2-soul-card { position: relative; overflow: hidden; }
.gd-v2-soul-card.match::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, #4CAF50, #66BB6A);
}
.gd-v2-soul-card.diverge::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, #FF9800, #FFB74D);
}
.gd-v2-soul-card.pending::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: #ddd;
}

/* ===== 移动端适配 v5 ===== */
@media screen and (max-width: 420px) {
  .gd-v2-voice-player { min-height: 54px; padding: 9px 11px; }
  .gd-v2-gift-track { gap: 9px; }
  .gd-v2-gift-item { width: 70px; padding: 5px 3px 3px; border-radius: 12px; }
  .gd-v2-gift-float-icon { font-size: 40px; }
  .gd-v2-gift-name { font-size: 12px; }
  .gd-v2-gift-price { font-size: 11px; }
  .gd-v2-soul-card-q { font-size: 16px; }
  .gd-v2-soul-opt { font-size: 14px; padding: 7px 10px; }
}

/* ================================================================
   质感提升 v1 — 微阴影 + 顶部高光 + 悬浮感（集中管理）
   原则：不改动布局/配色系统，仅增强立体层次
   ================================================================ */

/* 1. 白卡统一微阴影 + 顶部高光（inset 高光模拟光线反射） */
.gd-v2-profile,
.gd-v2-story,
.gd-v2-locked,
.gd-v2-crush-section,
.gd-v2-soul-qa,
.gd-v2-mate-partial,
.gd-v2-monologue,
.gd-v2-photo-stream,
.gd-v2-voice-interact,
.gd-v2-activities {
  box-shadow: 0 4px 16px rgba(123,104,238,0.09), inset 0 1px 0 rgba(255,255,255,0.7) !important;
}

/* 2. AI分身区域 — 科技感浅紫边框，与真人区视觉区分 */
.gd-v2-ai-avatar {
  border: 1.5px solid rgba(123,104,238,0.22) !important;
  box-shadow: 0 6px 24px rgba(123,104,238,0.15) !important;
}

/* 3. 契合度翻转卡 — 正反两面加悬浮阴影，脱离纸片感 */
.gd-v2-soul-card-front {
  box-shadow: 0 4px 16px rgba(123,104,238,0.12) !important;
}
.gd-v2-soul-card-back {
  box-shadow: 0 4px 16px rgba(123,104,238,0.14) !important;
}

/* 4. 三观翻转卡正面 — 增强悬浮阴影一致性 */
.gd-v2-persona-flip-front {
  box-shadow: 0 4px 16px rgba(123,104,238,0.1) !important;
}
.gd-v2-persona-flip.flipped .gd-v2-persona-flip-front {
  box-shadow: 0 6px 22px rgba(123,104,238,0.2) !important;
}

/* 5. 解锁按钮发光 — 成为页面绝对视觉焦点 */
.gd-v2-locked-btn,
.gd-v2-footer-btn.primary,
.gd-v2-unlock-pay-btn {
  box-shadow: 0 4px 20px rgba(212,83,126,0.38) !important;
}

/* 6. 内心独白文字 — 行高放宽到 1.8，呼吸更舒适 */
.gd-v2-mo-text {
  line-height: 1.8 !important;
}
