/* ==================== 全局变量 ==================== */
:root {
  --color-bg: #0a0f1a;
  --color-bg-alt: #0d1320;
  --color-surface: #111827;
  --color-surface-soft: #151f30;
  --color-primary: #10b981;
  --color-primary-soft: rgba(16, 185, 129, 0.12);
  --color-primary-strong: #22c55e;
  --color-border: rgba(100, 120, 150, 0.25);
  --color-text: #e0e4eb;
  --color-text-soft: #9aa4b8;
  --color-heading: #f5f7fa;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.5);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-full: 999px;
  --header-height: 72px;
  --transition-fast: 160ms ease-out;
  --transition-base: 220ms ease-out;
}

/* ==================== 基础重置 ==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0b1018;
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

main {
  padding-top: var(--header-height);
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==================== 按钮样式 ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  color: #0b1120;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.45);
}

.btn.ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text-soft);
}

.btn.ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-heading);
  background: rgba(20, 30, 50, 0.6);
}

.btn.full-width {
  width: 100%;
}

/* ==================== 标签样式 ==================== */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}

.badge-pink {
  padding: 3px 10px;
  background: linear-gradient(135deg, #f472b6, #ec4899);
  color: #fff;
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.3);
}

.badge-yellow {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.badge-blue {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: #fff;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.badge-purple {
  background: linear-gradient(135deg, #a78bfa, #8b5cf6);
  color: #fff;
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.skill-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  background: rgba(20, 30, 50, 0.6);
  border: 1px solid rgba(100, 120, 150, 0.2);
  color: var(--color-text-soft);
}

.skill-tag.badge-pink {
  background: rgba(236, 72, 153, 0.15);
  border-color: rgba(236, 72, 153, 0.3);
  color: #f472b6;
}

.skill-tag.badge-purple {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
  color: #a78bfa;
}

.skill-tag.badge-blue {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.skill-tag.badge-yellow {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

/* ==================== 淡入动画 ==================== */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 320ms ease-out, transform 320ms ease-out;
}

.fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ==================== 头部导航 ==================== */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(11, 16, 24, 0.92);
  border-bottom: 1px solid rgba(100, 120, 150, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--color-heading);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: conic-gradient(from 180deg, #22c55e, #0ea5e9, #a855f7, #22c55e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #0b1120;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.logo-text {
  font-size: 15px;
  letter-spacing: 0.02em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.main-nav a {
  padding: 6px 2px;
  position: relative;
  color: var(--color-text-soft);
  transition: color var(--transition-fast);
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-strong));
  transition: width var(--transition-fast);
}

.main-nav a:hover {
  color: var(--color-heading);
}

.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(100, 120, 150, 0.5);
  background: rgba(20, 30, 50, 0.6);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

/* 移动端导航 */
@media (max-width: 768px) {
  .header-inner { gap: 10px; }
  
  .main-nav {
    position: fixed; 
    inset: var(--header-height) 0 auto; 
    height: auto;
    background: rgba(11, 16, 24, 0.98); 
    backdrop-filter: blur(18px);
    flex-direction: column; 
    padding: 10px 20px 12px;
    border-bottom: 1px solid rgba(100, 120, 150, 0.2);
    transform-origin: top; 
    transform: scaleY(0.95);
    opacity: 0; 
    pointer-events: none; 
    gap: 8px;
    transition: opacity 160ms ease-out, transform 160ms ease-out;
  }
  
  .main-nav.open { 
    opacity: 1; 
    pointer-events: auto; 
    transform: scaleY(1); 
  }
  
  .header-actions .btn.primary { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ==================== 服务承诺标签栏 ==================== */
.trust-bar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 19;
  background: rgba(11, 16, 24, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  padding: 8px 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease;
}

.trust-item:hover {
  transform: translateY(-1px);
}

.trust-icon {
  font-size: 14px;
  filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.4));
}

.trust-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-soft);
  letter-spacing: 0.3px;
}

.trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(100, 120, 150, 0.3);
}

@media (max-width: 768px) {
  .trust-bar { padding: 6px 0; }
  .trust-bar-inner { gap: 16px; }
  .trust-icon { font-size: 12px; }
  .trust-text { font-size: 11px; }
}

@media (max-width: 480px) {
  .trust-bar-inner { gap: 12px; flex-wrap: wrap; }
  .trust-divider { display: none; }
  .trust-item { gap: 4px; }
  .trust-text { font-size: 10px; }
}

/* ==================== 通用区块样式 ==================== */
.section {
  padding: 56px 0;
}

.section-alt {
  background: rgba(13, 19, 28, 0.6);
  border-top: 1px solid rgba(100, 120, 150, 0.08);
  border-bottom: 1px solid rgba(100, 120, 150, 0.08);
}

.section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.section-title {
  font-size: 24px;
  margin: 0 0 8px;
  color: var(--color-heading);
  animation: sectionGlow 4s ease-in-out infinite;
}

.section-lead {
  margin: 0 0 20px;
  color: var(--color-text-soft);
  font-size: 14px;
}

.section-heading {
  text-align: left;
  margin-bottom: 16px;
}

.section-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--color-text-soft);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.section-text p {
  font-size: 14px;
  color: var(--color-text-soft);
}

.section-text p + p {
  margin-top: 10px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-soft);
  padding: 6px 0;
}

.feature-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.info-card {
  border-radius: var(--radius-lg);
  background: rgba(18, 26, 40, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(100, 120, 150, 0.2);
  padding: 18px 18px 14px;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  font-size: 16px;
  margin: 0 0 10px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
}

.info-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(100, 120, 150, 0.2);
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list span:first-child {
  color: var(--color-text-soft);
}

.info-list span:last-child,
.info-list a {
  color: var(--color-heading);
}

/* 呼吸灯动画 */
@keyframes sectionGlow {
  0%, 100% { text-shadow: 0 0 2px rgba(16, 185, 129, 0.2); }
  50% { text-shadow: 0 0 8px rgba(16, 185, 129, 0.3); }
}

/* ==================== Hero区域 ==================== */
.hero {
  padding: 72px 0 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.hero-text {
  max-width: 560px;
}

.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-primary-strong);
  margin-bottom: 10px;
  animation: kickerGlow 3s ease-in-out infinite;
  animation-delay: 0.3s;
}

.hero h1 {
  font-size: 32px;
  line-height: 1.2;
  color: var(--color-heading);
  margin: 0 0 12px;
  animation: titleGlow 3s ease-in-out infinite;
}

.hero-subtitle {
  margin: 0 0 20px;
  color: var(--color-text-soft);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li {
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(100, 120, 150, 0.3);
  background: rgba(20, 30, 50, 0.5);
  color: var(--color-text-soft);
}

/* 今日已预约人数 + 距离显示 */
.hero-stats-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.today-stats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 40px;
  padding: 8px 18px;
}

.stats-icon {
  width: 20px;
  height: 20px;
  color: var(--color-primary-strong);
}

.stats-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-strong);
  line-height: 1;
  letter-spacing: 1px;
}

.stats-label {
  font-size: 13px;
  color: var(--color-text-soft);
}

.distance-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 40px;
  padding: 8px 18px;
  transition: all 0.2s ease;
  animation: distanceGlow 3s ease-in-out infinite;
}

.distance-icon {
  width: 18px;
  height: 18px;
  color: #ef4444;
  animation: pinBounce 2.5s ease-in-out infinite;
}

.distance-text {
  font-size: 13px;
  color: var(--color-text-soft);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

#distanceValue {
  font-size: 15px;
  font-weight: 700;
  color: #ef4444;
  margin: 0 1px;
  line-height: 1;
}

.distance-note {
  font-size: 11px;
  padding: 3px 8px;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 20px;
  color: #fca5a5;
  margin-left: 6px;
  border: 1px solid rgba(239, 68, 68, 0.15);
  font-weight: 500;
  white-space: nowrap;
}

/* 双卡片布局 */
.hero-media {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.hero-card {
  width: 100%;
  max-width: 280px;
  border-radius: 24px;
  background: rgba(18, 26, 40, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid rgba(100, 120, 150, 0.2);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-card-left {
  transform: translateX(-20px);
}

.hero-card:hover {
  transform: translateY(-5px) translateX(-20px);
  box-shadow: 0 24px 50px rgba(16, 185, 129, 0.15);
  border-color: var(--color-primary);
}

.hero-card-right {
  transform: translateX(0);
}

.hero-card-right:hover {
  transform: translateY(-5px) translateX(0);
}

.hero-photo {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.hero-card:hover .hero-photo img {
  transform: scale(1.05);
}

.hero-card-body {
  padding: 14px 14px 16px;
}

.featured-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a1a;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.hero-card-body h2 {
  font-size: 16px;
  margin: 0 0 6px;
}

.hero-card-meta {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--color-primary-strong);
}

.hero-card-desc {
  margin: 0;
  font-size: 13px;
  color: var(--color-text-soft);
}

.featured-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}

.featured-skills .skill-tag {
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
}

/* Hero动画 */
@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 5px rgba(16, 185, 129, 0.3), 0 0 10px rgba(16, 185, 129, 0.2); }
  50% { text-shadow: 0 0 10px rgba(16, 185, 129, 0.5), 0 0 20px rgba(16, 185, 129, 0.3), 0 0 30px rgba(16, 185, 129, 0.15); }
}

@keyframes kickerGlow {
  0%, 100% { text-shadow: 0 0 3px rgba(34, 197, 94, 0.2); }
  50% { text-shadow: 0 0 8px rgba(34, 197, 94, 0.4); }
}

@keyframes distanceGlow {
  0%, 100% { box-shadow: 0 0 3px rgba(239, 68, 68, 0.08); border-color: rgba(239, 68, 68, 0.15); }
  50% { box-shadow: 0 0 10px rgba(239, 68, 68, 0.15); border-color: rgba(239, 68, 68, 0.3); }
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

/* Hero移动端 */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: 24px; }
  .hero-media { gap: 15px; }
  .hero-card { max-width: 240px; }
  .hero-photo { height: 150px; }
  .hero-card-left { transform: translateX(-10px); }
}

@media (max-width: 768px) {
  .hero { padding-top: 40px; }
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-media { order: -1; justify-content: flex-start; flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-card { max-width: 100%; }
  .hero-card-left { transform: translateX(0); }
  .hero-card-left:hover { transform: translateY(-5px) translateX(0); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .hero-subtitle { font-size: 13px; }
  .hero-stats-row { gap: 8px; }
  .today-stats { padding: 6px 14px; }
  .stats-number { font-size: 18px; }
  .stats-label { font-size: 12px; }
  .distance-badge { padding: 5px 12px; }
  .distance-text { font-size: 12px; }
  #distanceValue { font-size: 14px; }
  .distance-note { font-size: 9px; padding: 2px 6px; }
}

/* ==================== 首页抽奖横幅 ==================== */
.hero-lottery-banner {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(245, 158, 11, 0.08));
  border: 1.5px solid rgba(239, 68, 68, 0.35);
  border-radius: 60px;
  padding: 4px;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
}

.hero-lottery-banner:hover {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 12px 35px rgba(239, 68, 68, 0.25);
  transform: translateY(-2px);
}

.banner-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(239, 68, 68, 0.15) 0%, transparent 70%);
  animation: bannerGlowPulse 2.5s ease-in-out infinite;
}

.banner-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  background: rgba(18, 26, 40, 0.7);
  border-radius: 56px;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.banner-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ef4444, #dc2626);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  flex-shrink: 0;
}

.icon-emoji {
  font-size: 24px;
  animation: iconWiggle 3s ease-in-out infinite;
}

.icon-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(252, 211, 77, 0.6);
  animation: ringPulse 1.5s ease-in-out infinite;
}

.banner-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.banner-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.title-main {
  font-size: 16px;
  font-weight: 700;
  color: #fcd34d;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  background: rgba(239, 68, 68, 0.3);
  border-radius: 20px;
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.title-badge-money {
  background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
  border-color: #fcd34d !important;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.4) !important;
  animation: moneyPulse 2s ease-in-out infinite;
}

.banner-prizes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.prize-tag {
  font-size: 11px;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  transition: all 0.2s;
}

.prize-tag:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.banner-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.banner-draw-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border: none;
  border-radius: 40px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 0 #991b1b, 0 6px 15px rgba(239, 68, 68, 0.3);
  transition: all 0.15s;
  border: 1px solid rgba(252, 211, 77, 0.3);
}

.banner-draw-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #991b1b, 0 10px 20px rgba(239, 68, 68, 0.4);
}

.banner-draw-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #991b1b, 0 5px 10px rgba(239, 68, 68, 0.3);
}

.btn-text {
  letter-spacing: 0.5px;
}

.btn-arrow {
  font-size: 16px;
  animation: arrowMove 1.5s ease-in-out infinite;
}

.banner-hint {
  font-size: 10px;
  color: #fbbf24;
  margin: 6px 0 0 0;
  opacity: 0.9;
}

.banner-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particle {
  position: absolute;
  font-size: 12px;
  opacity: 0.6;
  animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) { top: -5px; left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { bottom: -5px; left: 60%; animation-delay: 1s; }
.particle:nth-child(3) { top: 50%; right: 15%; animation-delay: 2s; }
.particle:nth-child(4) { top: -3px; right: 30%; animation-delay: 0.5s; }

/* 横幅动画 */
@keyframes bannerGlowPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes iconWiggle {
  0%, 100% { transform: rotate(0deg); }
  5% { transform: rotate(-10deg); }
  10% { transform: rotate(10deg); }
  15% { transform: rotate(0deg); }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes moneyPulse {
  0%, 100% { box-shadow: 0 0 5px rgba(245, 158, 11, 0.3); }
  50% { box-shadow: 0 0 12px rgba(245, 158, 11, 0.6); }
}

@keyframes arrowMove {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-5px) rotate(10deg); opacity: 0.8; }
}

/* 横幅移动端 */
@media (max-width: 768px) {
  .hero-lottery-banner { max-width: 100%; }
  .banner-content { padding: 10px 12px 10px 10px; }
  .banner-icon { width: 40px; height: 40px; }
  .icon-emoji { font-size: 20px; }
  .title-main { font-size: 14px; }
  .prize-tag { font-size: 9px; padding: 2px 6px; }
  .banner-draw-btn { padding: 8px 14px; font-size: 13px; }
  .banner-hint { font-size: 8px; }
}

@media (max-width: 480px) {
  .banner-prizes { display: none; }
  .banner-content { padding: 8px 10px; }
  .banner-left { gap: 8px; }
}

/* ==================== 服务筛选与卡片 ==================== */
.service-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.chip {
  border-radius: 999px;
  font-size: 13px;
  padding: 5px 12px;
  border: 1px solid rgba(100, 120, 150, 0.3);
  background: rgba(20, 30, 50, 0.5);
  color: var(--color-text-soft);
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.chip:hover {
  border-color: var(--color-primary);
  color: var(--color-heading);
}

.chip.active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(34, 197, 94, 0.5));
  border-color: var(--color-primary);
  color: var(--color-heading);
  transform: translateY(-0.5px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  border-radius: 18px;
  background: rgba(18, 26, 40, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(100, 120, 150, 0.2);
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base), background var(--transition-base);
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px) translateZ(0);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
  border-color: var(--color-primary);
  background: rgba(22, 34, 52, 0.85);
}

.service-hint {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 12px;
  color: var(--color-primary-strong);
  border-top: 1px dashed rgba(100, 120, 150, 0.2);
  transition: color var(--transition-fast);
}

.service-card:hover .service-hint {
  color: var(--color-primary);
}

.service-header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: baseline;
}

.service-name {
  font-size: 15px;
  font-weight: 500;
}

.service-price {
  font-size: 14px;
  color: var(--color-primary-strong);
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 11px;
  color: var(--color-text-soft);
}

.service-tag {
  border-radius: 999px;
  padding: 2px 8px;
  background: rgba(20, 30, 50, 0.6);
  border: 1px solid rgba(100, 120, 150, 0.2);
}

.service-meta {
  font-size: 12px;
  color: var(--color-text-soft);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.service-desc {
  font-size: 13px;
  color: var(--color-text-soft);
}

@media (hover: none) and (pointer: coarse) {
  .service-card:active {
    transform: scale(0.98);
    background: rgba(22, 34, 52, 0.9);
  }
}

@media (max-width: 960px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .service-grid { grid-template-columns: minmax(0, 1fr); }
}

/* ==================== 环境展示 ==================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.gallery-item {
  border-radius: 16px;
  background: rgba(18, 26, 40, 0.7);
  border: 1px solid rgba(100, 120, 150, 0.2);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.gallery-photo {
  height: 110px;
  overflow: hidden;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 8px 10px 10px;
  font-size: 12px;
  color: var(--color-text-soft);
}

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 480px) {
  .gallery-photo { height: 90px; }
}

/* ==================== 技师滚动展示 ==================== */
#therapists .section-title {
  animation: therapistGlow 2.5s ease-in-out infinite;
}

@keyframes therapistGlow {
  0%, 100% { text-shadow: 0 0 3px rgba(236, 72, 153, 0.3), 0 0 6px rgba(236, 72, 153, 0.2); }
  50% { text-shadow: 0 0 8px rgba(236, 72, 153, 0.5), 0 0 15px rgba(236, 72, 153, 0.3), 0 0 25px rgba(236, 72, 153, 0.15); }
}

.therapist-section {
  overflow: hidden;
  padding: 0 0 20px;
}

.therapist-scroll-container {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.therapist-scroll-track {
  display: flex;
  gap: 20px;
  width: fit-content;
  animation: scrollTherapists 60s linear infinite;
}

.therapist-scroll-track:hover {
  animation-play-state: paused;
}

@keyframes scrollTherapists {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.therapist-card {
  flex: 0 0 280px;
  border-radius: 16px;
  background: rgba(18, 26, 40, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(100, 120, 150, 0.2);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.therapist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(16, 185, 129, 0.15);
  border-color: var(--color-primary);
}

.therapist-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.therapist-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.therapist-card:hover .therapist-photo img {
  transform: scale(1.05);
}

.therapist-info {
  padding: 14px 12px 16px;
}

.therapist-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.therapist-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading);
}

.therapist-stats {
  font-size: 13px;
  color: var(--color-text-soft);
  margin-bottom: 10px;
}

.therapist-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.therapist-skills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.skills-label {
  font-size: 11px;
  color: var(--color-text-soft);
  opacity: 0.7;
  margin-right: 2px;
}

.therapist-desc {
  font-size: 13px;
  color: var(--color-text-soft);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 768px) {
  .therapist-card { flex: 0 0 240px; }
  .therapist-name { font-size: 16px; }
}

@media (max-width: 480px) {
  .therapist-scroll-container { padding: 0 16px; }
  .therapist-card { flex: 0 0 200px; }
  .therapist-name { font-size: 15px; }
}

/* ==================== 常见问题 ==================== */
.faq-list {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(100, 120, 150, 0.2);
  background: rgba(18, 26, 40, 0.5);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(100, 120, 150, 0.15);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-header {
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.faq-question {
  font-size: 14px;
}

.faq-toggle {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(100, 120, 150, 0.4);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--color-text-soft);
}

.faq-body {
  padding: 0 14px 10px;
  font-size: 13px;
  color: var(--color-text-soft);
  display: none;
}

.faq-item.open .faq-body {
  display: block;
}

.faq-item.open .faq-toggle {
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
}

/* ==================== 联系表单 ==================== */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
  font-size: 13px;
  color: var(--color-text-soft);
}

.contact-list li {
  display: flex;
  gap: 8px;
  padding: 4px 0;
}

.contact-label {
  min-width: 70px;
  color: var(--color-text);
}

.map-placeholder {
  margin-top: 6px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(100, 120, 150, 0.2);
  background: rgba(18, 26, 40, 0.5);
  height: 180px;
  position: relative;
  overflow: hidden;
}

.map-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--color-text-soft);
  backdrop-filter: blur(2px);
}

.form-card {
  border-radius: var(--radius-lg);
  background: rgba(18, 26, 40, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(100, 120, 150, 0.2);
  padding: 18px 18px 14px;
  box-shadow: var(--shadow-soft);
}

.form-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.booking-form label {
  color: var(--color-text-soft);
}

.booking-form input {
  border-radius: 10px;
  border: 1px solid rgba(100, 120, 150, 0.3);
  background: rgba(20, 30, 50, 0.6);
  padding: 7px 9px;
  color: var(--color-text);
  font-size: 13px;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.booking-form input::placeholder {
  color: rgba(160, 175, 200, 0.6);
}

.booking-form input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
  background: rgba(25, 38, 58, 0.8);
}

/* ==================== 关于我们 - 品牌历程 + 对比表 ==================== */
.timeline-section {
  margin-bottom: 56px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading);
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: 2px;
}

.timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  border-radius: 50%;
  margin-bottom: 12px;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
  border: 3px solid rgba(16, 185, 129, 0.2);
}

.timeline-year {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary-strong);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.timeline-desc {
  font-size: 12px;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.timeline-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.3), rgba(16, 185, 129, 0.8), rgba(16, 185, 129, 0.3));
  margin-top: 7px;
  flex-shrink: 0;
}

.comparison-section {
  margin-top: 20px;
}

.comparison-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading);
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: 2px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 20px;
  background: rgba(18, 26, 40, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(100, 120, 150, 0.2);
  padding: 4px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(100, 120, 150, 0.15);
}

.comparison-table thead th {
  background: rgba(20, 30, 50, 0.6);
  font-weight: 600;
  color: var(--color-heading);
  font-size: 14px;
  white-space: nowrap;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: rgba(16, 185, 129, 0.05);
}

.comparison-table td:first-child {
  font-weight: 600;
  color: var(--color-heading);
  white-space: nowrap;
}

.comparison-table td:nth-child(2) {
  color: #9aa4b8;
  opacity: 0.8;
}

.comparison-table td:nth-child(3) {
  color: var(--color-text);
}

.comparison-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}

.comparison-badge.old {
  background: rgba(100, 120, 150, 0.2);
  color: #9aa4b8;
  border: 1px solid rgba(100, 120, 150, 0.3);
}

.comparison-badge.new {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(34, 197, 94, 0.3));
  color: var(--color-primary-strong);
  border: 1px solid rgba(16, 185, 129, 0.4);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.highlight-text {
  color: var(--color-primary-strong);
  font-weight: 600;
}

@media (max-width: 768px) {
  .timeline { flex-direction: column; align-items: center; gap: 8px; }
  .timeline-line { width: 2px; height: 30px; margin: 4px 0; }
  .timeline-item { min-width: auto; }
  .comparison-table th,
  .comparison-table td { padding: 12px 12px; font-size: 12px; }
  .comparison-table td:first-child { white-space: nowrap; }
}

@media (max-width: 480px) {
  .timeline-year { font-size: 18px; }
  .timeline-desc { font-size: 11px; }
  .comparison-table th,
  .comparison-table td { padding: 10px 8px; font-size: 11px; }
  .comparison-badge { padding: 2px 8px; font-size: 10px; }
}

/* ==================== 合作伙伴/品牌Logo墙 ==================== */
.partners-section {
  padding: 48px 0 40px;
  background: rgba(8, 13, 20, 0.6);
  border-top: 1px solid rgba(100, 120, 150, 0.08);
  border-bottom: 1px solid rgba(100, 120, 150, 0.08);
}

.partners-header {
  text-align: center;
  margin-bottom: 32px;
}

.partners-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-heading);
  margin: 0 0 6px;
  letter-spacing: 1px;
}

.partners-subtitle {
  font-size: 13px;
  color: var(--color-text-soft);
  margin: 0;
  opacity: 0.8;
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.7;
  cursor: default;
}

.partner-item:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.partner-logo {
  width: 60px;
  height: 60px;
  background: rgba(20, 30, 50, 0.6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  border: 1px solid rgba(100, 120, 150, 0.2);
  backdrop-filter: blur(4px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.partner-item:hover .partner-logo {
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.partner-name {
  font-size: 12px;
  color: var(--color-text-soft);
  font-weight: 500;
  letter-spacing: 0.3px;
}

@media (max-width: 768px) {
  .partners-section { padding: 36px 0 30px; }
  .partners-title { font-size: 16px; }
  .partners-grid { gap: 24px 32px; }
  .partner-logo { width: 50px; height: 50px; font-size: 24px; }
  .partner-name { font-size: 11px; }
}

@media (max-width: 480px) {
  .partners-section { padding: 30px 0 24px; }
  .partners-grid { gap: 20px 24px; }
  .partner-logo { width: 45px; height: 45px; font-size: 22px; }
  .partner-name { font-size: 10px; }
}

/* ==================== 页脚 ==================== */
.site-footer {
  border-top: 1px solid rgba(100, 120, 150, 0.1);
  padding: 20px 0 10px;
  background: #080d14;
  font-size: 12px;
  color: var(--color-text-soft);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 10px;
}

.footer-desc {
  margin: 8px 0 0;
  max-width: 260px;
}

.footer-col h4 {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--color-heading);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  padding: 2px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(100, 120, 150, 0.08);
  padding-top: 8px;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1.6fr 1fr; }
}

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: minmax(0, 1fr); }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ==================== 服务详情弹窗 ==================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 13, 20, 0.85);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 30;
}

.modal-backdrop.open {
  display: flex;
}

.modal {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  background: rgba(18, 26, 40, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 120, 150, 0.25);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.7);
  padding: 18px 18px 14px;
  position: relative;
  animation: modalIn 220ms ease-out;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(100, 120, 150, 0.4);
  background: rgba(20, 30, 50, 0.8);
  color: var(--color-text-soft);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.modal-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.modal-meta {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--color-primary-strong);
}

.modal-desc {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--color-text-soft);
}

.modal-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--color-text-soft);
}

.modal-highlights li {
  padding: 3px 0;
}

.modal-tip {
  margin: 0;
  font-size: 12px;
  color: var(--color-text-soft);
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==================== 抽奖弹窗 ==================== */
.lottery-modal-backdrop,
.result-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 13, 20, 0.9);
  backdrop-filter: blur(12px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 36;
  padding: 16px;
}

.lottery-modal-backdrop.open,
.result-modal-backdrop.open {
  display: flex;
}

.lottery-modal {
  width: 100%;
  max-width: 480px;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 32px;
  border: 2px solid rgba(239, 68, 68, 0.4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(239, 68, 68, 0.2);
  overflow: hidden;
}

.lottery-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  border-bottom: 2px solid #fcd34d;
}

.lottery-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.title-icon {
  font-size: 24px;
}

.lottery-title h3 {
  margin: 0;
  color: #fcd34d;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lottery-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lottery-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lottery-body {
  padding: 24px 20px;
}

.wheel-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.wheel-wrapper {
  position: relative;
  width: 360px;
  height: 360px;
}

#lotteryWheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 8px #1e293b, 0 0 0 10px #fcd34d;
  transition: transform 4s cubic-bezier(0.25, 0.1, 0.15, 1);
}

.wheel-pointer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(145deg, #fbbf24, #f59e0b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 0 #b45309, 0 8px 20px rgba(0, 0, 0, 0.4);
  border: 3px solid #fef3c7;
  cursor: pointer;
  transition: transform 0.15s;
  z-index: 2;
}

.wheel-pointer:active {
  transform: translate(-50%, -48%);
  box-shadow: 0 2px 0 #b45309, 0 5px 15px rgba(0, 0, 0, 0.4);
}

.wheel-pointer span {
  font-size: 22px;
  font-weight: 800;
  color: #991b1b;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
}

.lottery-info {
  text-align: center;
}

.remain-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.15);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  color: #cbd5e1;
  margin-bottom: 10px;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.count-number {
  font-size: 22px;
  font-weight: 800;
  color: #fbbf24;
  margin: 0 2px;
}

.lottery-tip {
  font-size: 13px;
  color: #9aa4b8;
  margin: 8px 0 0;
}

.lottery-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contact-label {
  color: #9aa4b8;
  font-size: 13px;
}

.contact-value {
  color: #fcd34d;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
}

.copy-btn-small {
  padding: 4px 12px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 20px;
  color: #fbbf24;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.2s;
}

.copy-btn-small:hover {
  background: rgba(245, 158, 11, 0.3);
}

/* 中奖结果弹窗 */
.result-modal {
  width: 100%;
  max-width: 360px;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 32px;
  border: 2px solid #fbbf24;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(251, 191, 36, 0.3);
  overflow: hidden;
  position: relative;
}

.result-header {
  padding: 30px 20px 10px;
  text-align: center;
  position: relative;
}

.result-emoji {
  font-size: 56px;
  display: block;
  animation: emojiPop 0.5s ease-out;
}

.result-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.result-body {
  padding: 10px 20px 20px;
  text-align: center;
}

.result-title {
  font-size: 22px;
  color: #fcd34d;
  margin: 0 0 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.prize-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(245, 158, 11, 0.15));
  padding: 16px 20px;
  border-radius: 60px;
  margin-bottom: 16px;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.prize-icon {
  font-size: 32px;
}

.prize-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.result-desc {
  color: #cbd5e1;
  font-size: 14px;
  margin-bottom: 16px;
}

.redpack-animation {
  position: relative;
  height: 60px;
  margin-bottom: 10px;
}

.redpack-float,
.coin-float {
  position: absolute;
  font-size: 24px;
  animation: floatUp 2.5s ease-out infinite;
  opacity: 0;
}

.redpack-float:nth-child(1) { left: 10%; animation-delay: 0s; }
.redpack-float:nth-child(2) { left: 30%; animation-delay: 0.6s; }
.redpack-float:nth-child(3) { left: 50%; animation-delay: 1.2s; }
.coin-float:nth-child(4) { left: 70%; animation-delay: 0.3s; }
.coin-float:nth-child(5) { left: 85%; animation-delay: 0.9s; }

.result-footer {
  padding: 16px 20px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px;
}

.contact-info-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 12px;
}

.qq-icon {
  font-size: 24px;
}

.qq-number-large {
  font-size: 22px;
  font-weight: 700;
  color: #fcd34d;
  letter-spacing: 2px;
}

.contact-actions {
  display: flex;
  gap: 10px;
}

.btn-copy-large,
.btn-contact-large {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn-copy-large {
  background: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-copy-large:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-copy-large svg,
.btn-contact-large svg {
  width: 18px;
  height: 18px;
}

.btn-contact-large {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a1a;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.btn-contact-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.4);
}

.result-note {
  text-align: center;
  font-size: 12px;
  color: #9aa4b8;
  margin: 12px 0 0;
}

@keyframes emojiPop {
  0% { transform: scale(0); opacity: 0; }
  80% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes floatUp {
  0% { transform: translateY(40px) rotate(0deg); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(-60px) rotate(20deg); opacity: 0; }
}

@media (max-width: 480px) {
  .lottery-modal { max-width: 400px; }
  
  /* 标题区域适配 */
  .lottery-header {
    padding: 12px 14px;
  }
  
  .lottery-title {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
  }
  
  .lottery-title .title-icon {
    font-size: 18px;
  }
  
  .lottery-title h3 {
    font-size: 14px;
  }
  
  .lottery-title .title-badge {
    font-size: 7px;
    padding: 2px 4px;
  }
  
  .lottery-title .title-badge-money {
    font-size: 7px;
    padding: 2px 4px;
  }
  
  .lottery-close {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
  
  /* 转盘适配 */
  .wheel-wrapper { width: 300px; height: 300px; }
  #lotteryWheel { width: 300px; height: 300px; }
  .wheel-pointer { width: 60px; height: 60px; }
  .wheel-pointer span { font-size: 18px; }
  
  /* 结果弹窗 */
  .prize-name { font-size: 18px; }
  .contact-actions { flex-direction: column; }
}

/* ==================== 悬浮组件 ==================== */

/* 左上角品牌数据悬浮牌 */
.brand-float-card {
  position: fixed;
  top: 115px;
  left: 20px;
  z-index: 21;
  background: rgba(18, 26, 40, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: brandFloatGlow 3s ease-in-out infinite;
  pointer-events: none;
  min-width: 160px;
}

.brand-float-card:hover {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.15);
}

.brand-float-glow {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.brand-float-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-float-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.brand-float-icon {
  font-size: 16px;
  width: 22px;
  text-align: center;
  filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.4));
}

.brand-float-number {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary-strong);
  line-height: 1;
}

.brand-float-unit {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary-strong);
  margin-left: -2px;
}

.brand-float-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-soft);
  letter-spacing: 0.3px;
  margin-left: 2px;
}

@keyframes brandFloatGlow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(16, 185, 129, 0.1);
  }
  50% {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15), 0 0 0 1px rgba(16, 185, 129, 0.3);
  }
}

@media (max-width: 768px) {
  .brand-float-card { top: 80px; left: 12px; padding: 12px 14px; min-width: 140px; }
  .brand-float-content { gap: 8px; }
  .brand-float-icon { font-size: 14px; width: 20px; }
  .brand-float-number { font-size: 18px; }
  .brand-float-unit { font-size: 10px; }
  .brand-float-label { font-size: 11px; }
}

@media (max-width: 480px) {
  .brand-float-card { 
    top: 115px;
    left: 5px; 
    padding: 6px 8px;
    min-width: 105px;
    border-radius: 12px;
    opacity: 0.8;
    pointer-events: none;
  }
  
  .brand-float-glow { 
    border-radius: 12px; 
  }
  
  .brand-float-content { 
    gap: 4px;
  }
  
  .brand-float-icon { 
    font-size: 11px;
    width: 15px; 
  }
  
  .brand-float-number { 
    font-size: 14px;
  }
  
  .brand-float-unit { 
    font-size: 8px;
  }
  
  .brand-float-label { 
    font-size: 8px;
  }
}

/* XX人正在浏览 */
.viewing-badge {
  position: fixed;
  top: 115px;
  right: 24px;
  z-index: 21;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(239, 68, 68, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 40px;
  padding: 6px 12px;
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.15);
  pointer-events: none;
  white-space: nowrap;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px #ef4444;
  animation: pulse-red 1.8s infinite;
  flex-shrink: 0;
}

.viewing-text {
  font-size: 11px;
  font-weight: 500;
  color: #fca5a5;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 2px;
}

#viewingCount {
  font-size: 13px;
  font-weight: 700;
  color: #ef4444;
  line-height: 1;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #ef4444, 0 0 15px #ef4444; }
  50% { opacity: 0.6; box-shadow: 0 0 3px #ef4444, 0 0 8px #ef4444; }
}

/* PC端稍微大一点 */
@media (min-width: 769px) {
  .viewing-badge {
    gap: 8px;
    padding: 8px 16px;
  }
  .pulse-dot {
    width: 10px;
    height: 10px;
  }
  .viewing-text {
    font-size: 13px;
  }
  #viewingCount {
    font-size: 15px;
  }
}

/* 平板 */
@media (max-width: 768px) {
  .viewing-badge {
    top: 80px;
    right: 16px;
    padding: 5px 10px;
  }
  .viewing-text {
    font-size: 10px;
  }
  #viewingCount {
    font-size: 12px;
  }
}

/* 手机端 - 关键修复 */
@media (max-width: 480px) {
  .viewing-badge {
    top: 115px;
    right: 8px;
    padding: 4px 8px;
    gap: 4px;
    max-width: none;
    width: auto;
  }
  .pulse-dot {
    width: 6px;
    height: 6px;
  }
  .viewing-text {
    font-size: 9px;
  }
  #viewingCount {
    font-size: 11px;
  }
}

/* 假预约弹窗 */
.fake-booking-toast {
  position: fixed;
  bottom: 65px;
  left: 30px;
  z-index: 25;
  pointer-events: none;
}

.toast-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(12, 20, 30, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(16, 185, 129, 0.25);
  border-radius: 40px;
  padding: 10px 20px 10px 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(16, 185, 129, 0.1) inset;
  animation: toastSlide 5s ease-in-out forwards;
}

.toast-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.toast-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.toast-title {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-phone {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-heading);
  letter-spacing: 0.8px;
}

.toast-badge {
  font-size: 11px;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.15);
  padding: 3px 10px;
  border-radius: 30px;
  letter-spacing: 0.3px;
}

.toast-desc {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-project {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
}

.toast-dot {
  width: 3px;
  height: 3px;
  background: var(--color-text-soft);
  border-radius: 50%;
  opacity: 0.5;
}

.toast-time {
  font-size: 12px;
  color: var(--color-text-soft);
  opacity: 0.75;
}

@keyframes toastSlide {
  0% { opacity: 0; transform: translateX(-50px) translateY(15px); }
  10% { opacity: 1; transform: translateX(0) translateY(0); }
  85% { opacity: 1; transform: translateX(0) translateY(0); }
  100% { opacity: 0; transform: translateX(-30px) translateY(-10px); }
}

@media (max-width: 768px) {
  .fake-booking-toast { bottom: 20px; left: 20px; }
  .toast-card { padding: 8px 16px 8px 12px; }
  .toast-icon { width: 32px; height: 32px; font-size: 16px; }
  .toast-phone { font-size: 14px; }
  .toast-project { font-size: 12px; }
}

@media (max-width: 480px) {
  .fake-booking-toast { 
    display: flex; 
    bottom: 55px; 
    left: 10px; 
    max-width: 180px; 
  }
  .toast-card { 
    padding: 5px 10px 5px 8px; 
  }
  .toast-icon { 
    width: 24px; 
    height: 24px; 
    font-size: 12px; 
  }
  .toast-phone { 
    font-size: 11px; 
  }
  .toast-project { 
    font-size: 10px; 
  }
  .toast-time { 
    font-size: 9px; 
  }
  
  .toast-badge {
    font-size: 8px;
    padding: 2px 6px;
    white-space: nowrap;
  }
}

/* 底部滚动公告 */
.notice-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 22;
  background: rgba(6, 20, 18, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(16, 185, 129, 0.4);
  padding: 10px 0;
  overflow: hidden;
  box-shadow: 0 -5px 20px rgba(16, 185, 129, 0.15);
}

.notice-scroll {
  display: flex;
  align-items: center;
  gap: 30px;
  animation: scrollNotice 25s linear infinite;
  white-space: nowrap;
  color: #2dd4bf;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-shadow: 0 0 5px rgba(45, 212, 191, 0.8), 0 0 10px rgba(45, 212, 191, 0.5), 0 0 20px rgba(45, 212, 191, 0.3);
}

.notice-scroll span {
  display: inline-block;
  transition: all 0.3s ease;
}

.notice-divider {
  color: rgba(45, 212, 191, 0.5);
  font-size: 12px;
  text-shadow: none;
  margin: 0 -10px;
}

.notice-scroll:hover {
  animation-play-state: paused;
}

@keyframes scrollNotice {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .notice-bar { padding: 8px 0; }
  .notice-scroll { font-size: 12px; gap: 20px; animation: scrollNotice 20s linear infinite; }
}

@media (max-width: 480px) {
  .notice-bar { padding: 6px 0; }
  .notice-scroll { font-size: 11px; gap: 15px; }
}

/* 回到顶部按钮 */
.back-to-top {
  position: fixed;
  bottom: 200px;
  right: 24px;
  z-index: 23;
  width: 50px;
  height: 50px;
  background: rgba(18, 26, 40, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: var(--color-primary-strong);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(16, 185, 129, 0.15);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(16, 185, 129, 0.2);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

.back-to-top span {
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

/* 客服在线呼吸灯 */
.online-service {
  position: fixed;
  bottom: 70px;
  right: 24px;
  z-index: 23;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: rgba(18, 26, 40, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 20px;
  padding: 12px 16px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.15);
  transition: all 0.25s ease;
  min-width: 140px;
}

.online-service:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 12px 25px rgba(239, 68, 68, 0.25);
}

.online-service-top {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.service-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  background: linear-gradient(145deg, #f472b6, #ec4899);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3);
  flex-shrink: 0;
}

.avatar-emoji {
  font-size: 22px;
}

.online-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid rgba(18, 26, 40, 0.95);
  animation: pulse-green 1.8s infinite;
  box-shadow: 0 0 8px #22c55e;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.9); }
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.service-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.2;
}

.service-status {
  font-size: 11px;
  color: #22c55e;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.service-booking-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-strong));
  color: #0b1120;
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.35);
  border: none;
  border-radius: 30px;
  padding: 8px 0;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.service-booking-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(16, 185, 129, 0.45);
}

/* 移动端：回到顶部 + 客服位置调整 */
@media (max-width: 480px) {
  .back-to-top { bottom: 160px; }  /* 从 130px 改成 140px，往上移 */
  .online-service { bottom: 55px; right: 16px; padding: 10px 12px; min-width: 130px; }
  .service-avatar { width: 34px; height: 34px; }
  .avatar-emoji { font-size: 18px; }
  .service-name { font-size: 12px; }
  .service-status { font-size: 10px; }
  .service-booking-btn { padding: 6px 0; font-size: 12px; }
}

/* ==================== 全局响应式调整 ==================== */
@media (max-width: 960px) {
  :root { --header-height: 64px; }
  .two-column { grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr); gap: 24px; }
}

@media (max-width: 768px) {
  .two-column { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 20px; }
  .section-lead { font-size: 13px; }
}

/* ==================== 红包提醒弹窗（增强版） ==================== */
.redpack-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);      /* 从 0.8 改成 0.5，更透明 */
  backdrop-filter: blur(0px);           /* 从 12px 改成 8px，模糊减少 */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 20px;
}

.redpack-popup-backdrop.open {
  display: flex;
}

.redpack-popup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 400px;
  width: 100%;
}

/* 红包卡片 */
.redpack-card {
  position: relative;
  width: 100%;
  background: linear-gradient(145deg, #dc2626, #991b1b);
  border-radius: 32px;
  padding: 30px 24px 24px;
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4), 0 0 0 3px #fcd34d inset, 0 0 0 6px rgba(252, 211, 77, 0.3) inset;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  animation: redpackGlow 2s ease-in-out infinite;
}

.redpack-card:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.5), 0 0 0 3px #fef3c7 inset, 0 0 0 6px rgba(252, 211, 77, 0.5) inset;
}

@keyframes redpackGlow {
  0%, 100% { 
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.4), 0 0 0 3px #fcd34d inset, 0 0 0 6px rgba(252, 211, 77, 0.3) inset;
  }
  50% { 
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.6), 0 0 0 3px #fef3c7 inset, 0 0 0 6px rgba(252, 211, 77, 0.6) inset;
  }
}

/* 真钱标签 - 新增 */
.redpack-tag {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: 40px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5), 0 0 0 2px #fef3c7 inset;
  letter-spacing: 2px;
  z-index: 5;
  white-space: nowrap;
  border: 1px solid #fcd34d;
  animation: tagPulse 1.5s ease-in-out infinite;
}

.redpack-tag span {
  display: inline-block;
  animation: moneyShake 0.5s ease-in-out infinite;
}

@keyframes tagPulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5), 0 0 0 2px #fef3c7 inset; }
  50% { box-shadow: 0 6px 18px rgba(245, 158, 11, 0.7), 0 0 0 3px #fef3c7 inset; }
}

@keyframes moneyShake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

.redpack-icon {
  text-align: center;
  font-size: 56px;
  line-height: 1;
  margin: 10px 0 12px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.redpack-content {
  text-align: center;
}

.redpack-title {
  font-size: 22px;
  font-weight: 700;
  color: #fcd34d;
  margin: 0 0 4px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

.redpack-subtitle {
  font-size: 13px;
  color: #fef3c7;
  margin: 0 0 16px;
  opacity: 0.9;
}

/* 真钱金额区域 - 增强版 */
.redpack-amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(135deg, rgba(252, 211, 77, 0.2), rgba(252, 211, 77, 0.08));
  border-radius: 60px;
  padding: 16px 20px;
  margin-bottom: 12px;
  border: 2px solid rgba(252, 211, 77, 0.5);
  box-shadow: 0 0 20px rgba(252, 211, 77, 0.2), 0 0 0 1px rgba(252, 211, 77, 0.3) inset;
  position: relative;
  overflow: hidden;
}

/* 真钱闪光效果 */
.redpack-amount::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.amount-symbol {
  font-size: 28px;
  font-weight: 700;
  color: #fcd34d;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.amount-number {
  font-size: 64px;
  font-weight: 900;
  color: #fcd34d;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(252, 211, 77, 0.6), 0 0 20px rgba(252, 211, 77, 0.4);
  letter-spacing: 4px;
  animation: numberGlow 2s ease-in-out infinite;
}

@keyframes numberGlow {
  0%, 100% { text-shadow: 0 2px 10px rgba(252, 211, 77, 0.6), 0 0 20px rgba(252, 211, 77, 0.4); }
  50% { text-shadow: 0 2px 15px rgba(252, 211, 77, 0.9), 0 0 30px rgba(252, 211, 77, 0.6); }
}

/* 真钱标识 */
.redpack-real-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 40px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
  border: 1px solid #fef3c7;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.redpack-real-badge svg {
  width: 18px;
  height: 18px;
}

.redpack-hint {
  font-size: 14px;
  color: #fef3c7;
  margin: 0;
  opacity: 0.95;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 30px;
  backdrop-filter: blur(4px);
  font-weight: 500;
  border: 1px solid rgba(252, 211, 77, 0.3);
}

/* 装饰元素 */
.redpack-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decoration-item {
  position: absolute;
  font-size: 20px;
  opacity: 0.7;
  animation: decorationFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.decoration-item:nth-child(1) { top: 40px; left: 15px; animation-delay: 0s; }
.decoration-item:nth-child(2) { top: 45px; right: 20px; animation-delay: 0.8s; }
.decoration-item:nth-child(3) { bottom: 80px; left: 10px; animation-delay: 1.5s; }
.decoration-item:nth-child(4) { bottom: 90px; right: 15px; animation-delay: 0.3s; }

@keyframes decorationFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
  50% { transform: translateY(-8px) rotate(10deg); opacity: 0.9; }
}

/* 关闭按钮 */
.redpack-close-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.redpack-close-btn:hover {
  color: #fff;
  transform: scale(1.05);
}

.redpack-close-btn svg {
  width: 36px;
  height: 36px;
}

.redpack-close-btn span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
}

/* 移动端适配 */
@media (max-width: 480px) {
  .redpack-popup {
    max-width: 330px;
  }
  
  .redpack-card {
    padding: 28px 16px 20px;
  }
  
  .redpack-tag {
    font-size: 12px;
    padding: 5px 16px;
  }
  
  .redpack-icon {
    font-size: 48px;
  }
  
  .redpack-title {
    font-size: 18px;
  }
  
  .redpack-subtitle {
    font-size: 11px;
  }
  
  .amount-symbol {
    font-size: 24px;
  }
  
  .amount-number {
    font-size: 52px;
  }
  
  .redpack-real-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .redpack-hint {
    font-size: 12px;
    padding: 6px 16px;
  }
  
  .decoration-item {
    font-size: 16px;
  }
}