/* ============================================
   GamePlus TW2 落地頁 - 翡翠皇家風（深綠 + 金）
   ============================================ */

:root {
  --bg-base: #050a08;
  --bg-2: #0a1812;
  --bg-3: #0e2a1f;
  --bg-4: #122a1c;
  --emerald: #00a86b;
  --jade: #50c878;
  --jade-soft: #7fdda0;
  --gold: #ffd700;
  --gold-deep: #d4af37;
  --champagne: #f7e7ce;
  --bronze: #cd7f32;
  --crimson: #b22222;
  --text: #f5f1e6;
  --text-dim: #c9c2a6;
  --text-muted: #7a7560;
  --gradient-luxe: linear-gradient(135deg, #ffd700 0%, #f7e7ce 50%, #d4af37 100%);
  --gradient-emerald: linear-gradient(135deg, #00a86b 0%, #50c878 100%);
  --gradient-cta: linear-gradient(135deg, #d4af37 0%, #ffd700 50%, #f7e7ce 100%);
  --gradient-dark: linear-gradient(160deg, #0e2a1f 0%, #050a08 100%);
  --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.45);
  --shadow-emerald: 0 0 35px rgba(0, 168, 107, 0.5);
  --font-main: 'Noto Sans HK', 'PingFang HK', 'Microsoft JhengHei', sans-serif;
  --font-display: 'Cinzel', 'Noto Serif TC', serif;
  --font-num: 'Cormorant Garamond', 'Noto Serif TC', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  background: var(--bg-base);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
  position: relative;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ============================================
   背景：竹葉紋 + 翡翠光暈
   ============================================ */
.bg-pattern {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(0, 168, 107, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 90%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(80, 200, 120, 0.06) 0%, transparent 60%),
    var(--bg-base);
  pointer-events: none;
  z-index: 0;
}

.bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg,
      transparent 0px, transparent 80px,
      rgba(212, 175, 55, 0.04) 80px, rgba(212, 175, 55, 0.04) 81px),
    repeating-linear-gradient(-45deg,
      transparent 0px, transparent 80px,
      rgba(0, 168, 107, 0.04) 80px, rgba(0, 168, 107, 0.04) 81px);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
}

.glow-1 {
  width: 380px; height: 380px;
  background: var(--emerald);
  top: -80px; left: -80px;
  animation: glowFloat1 20s ease-in-out infinite;
}
.glow-2 {
  width: 320px; height: 320px;
  background: var(--gold);
  top: 50%; right: -100px;
  opacity: 0.25;
  animation: glowFloat2 24s ease-in-out infinite;
}
.glow-3 {
  width: 280px; height: 280px;
  background: var(--jade);
  bottom: -80px; left: 35%;
  animation: glowFloat3 26s ease-in-out infinite;
}

@keyframes glowFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(140px, 90px) scale(1.15); }
}
@keyframes glowFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-130px, -110px) scale(1.1); }
}
@keyframes glowFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(90px, -130px) scale(1.25); }
}

/* ============================================
   通用 CTA - 金箔按鈕
   ============================================ */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 46px;
  background: var(--gradient-cta);
  background-size: 200% 200%;
  color: #1a1208;
  font-weight: 900;
  font-size: 1.18rem;
  border-radius: 4px;
  letter-spacing: 2px;
  box-shadow:
    0 0 0 1px rgba(255, 215, 0, 0.6),
    0 0 0 4px rgba(212, 175, 55, 0.2),
    0 8px 30px rgba(212, 175, 55, 0.45),
    0 0 50px rgba(255, 215, 0, 0.2);
  overflow: hidden;
  white-space: nowrap;
  min-width: 280px;
  animation: ctaPulse 2.4s ease-in-out infinite, ctaGradient 5s ease infinite;
  transition: transform 0.2s;
  cursor: pointer;
  z-index: 5;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.cta:hover, .cta:active {
  transform: translateY(-2px) scale(1.03);
}

.cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg,
    transparent, rgba(255, 255, 255, 0.7), transparent);
  animation: shineSlide 3s infinite;
}

.cta-arrow {
  font-size: 1.3em;
  display: inline-block;
  animation: arrowBounce 1.4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255, 215, 0, 0.6),
      0 0 0 4px rgba(212, 175, 55, 0.2),
      0 8px 30px rgba(212, 175, 55, 0.45),
      0 0 50px rgba(255, 215, 0, 0.2);
  }
  50% {
    box-shadow:
      0 0 0 2px rgba(255, 215, 0, 0.8),
      0 0 0 6px rgba(212, 175, 55, 0.3),
      0 12px 40px rgba(212, 175, 55, 0.65),
      0 0 80px rgba(0, 168, 107, 0.4);
  }
}
@keyframes ctaGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes shineSlide {
  0% { left: -100%; }
  100% { left: 200%; }
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.cta-mini {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: rgba(255, 215, 0, 0.08);
  color: var(--gold);
  font-weight: 900;
  font-size: 0.88rem;
  border-radius: 2px;
  border: 1px solid var(--gold-deep);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
}

.cta-section, .cta-final {
  margin: 40px auto 0;
  display: flex;
}

.cta-final {
  font-size: 1.32rem;
  padding: 24px 52px;
}

/* ============================================
   通用 Section
   ============================================ */
section {
  position: relative;
  padding: 70px 20px;
  z-index: 1;
}

.section-head {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 18px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  border-radius: 2px;
  margin-bottom: 18px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.section-tag::before,
.section-tag::after {
  content: '◆';
  font-size: 0.6rem;
  color: var(--gold-deep);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 900;
  background: var(--gradient-luxe);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.3));
}

.section-sub {
  color: var(--text-dim);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
  color: var(--gold-deep);
  font-size: 0.7rem;
}

.section-divider::before,
.section-divider::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep), transparent);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 0 20px 60px;
  overflow: hidden;
  z-index: 1;
}

.topbar {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.6));
}

.hero-inner {
  position: relative;
  z-index: 5;
  text-align: center;
  padding-top: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.badge-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(0, 168, 107, 0.15) 100%);
  border: 1px solid rgba(212, 175, 55, 0.55);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  border-radius: 2px;
  margin-bottom: 26px;
  backdrop-filter: blur(10px);
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.badge-crown {
  font-size: 1rem;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.7));
}

.hero-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--gold-deep);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.hero-ornament::before,
.hero-ornament::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep));
}

.hero-ornament::after {
  background: linear-gradient(90deg, var(--gold-deep), transparent);
}

.hero-title {
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.title-pre, .title-post {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text);
  letter-spacing: 4px;
  text-shadow: 0 2px 14px rgba(212, 175, 55, 0.4);
}

.title-amount {
  font-family: var(--font-num);
  font-size: 6.4rem;
  background: var(--gradient-luxe);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.6))
          drop-shadow(0 0 50px rgba(212, 175, 55, 0.3));
  letter-spacing: 1px;
  animation: amountShine 3.5s ease-in-out infinite;
  line-height: 0.95;
  font-weight: 700;
  font-style: italic;
}

.title-amount small {
  font-size: 0.4em;
  vertical-align: top;
  margin-right: 6px;
  font-style: normal;
}

@keyframes amountShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 1px;
}

.hero-sub strong {
  color: var(--gold);
  font-weight: 900;
}

.cta-hero {
  margin-bottom: 32px;
}

/* Countdown - 古典金匾風 */
.countdown-box {
  display: inline-block;
  padding: 16px 28px;
  background: linear-gradient(160deg, rgba(14, 42, 31, 0.85) 0%, rgba(5, 10, 8, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.55);
  border-radius: 4px;
  margin-bottom: 32px;
  backdrop-filter: blur(15px);
  box-shadow:
    inset 0 0 30px rgba(0, 168, 107, 0.1),
    0 0 30px rgba(212, 175, 55, 0.15);
  position: relative;
}

.countdown-box::before,
.countdown-box::after {
  content: '◆';
  position: absolute;
  top: -7px;
  font-size: 0.7rem;
  color: var(--gold);
  background: var(--bg-base);
  padding: 0 4px;
}
.countdown-box::before { left: 14px; }
.countdown-box::after { right: 14px; }

.countdown-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 4px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, #0e2a1f 0%, #050a08 100%);
  padding: 10px 18px;
  border-radius: 3px;
  min-width: 68px;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 215, 0, 0.15),
    inset 0 0 15px rgba(0, 168, 107, 0.15);
}

.time-block span {
  font-family: var(--font-num);
  font-size: 2rem;
  color: var(--gold);
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  line-height: 1;
  font-weight: 700;
  font-style: italic;
}

.time-block small {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 5px;
  letter-spacing: 2px;
}

.time-sep {
  font-family: var(--font-num);
  font-size: 2rem;
  color: var(--jade);
  font-weight: 700;
  text-shadow: 0 0 12px rgba(80, 200, 120, 0.7);
  animation: sepBlink 1s ease-in-out infinite;
  font-style: italic;
}

@keyframes sepBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.ti-num {
  font-family: var(--font-num);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
  letter-spacing: 1px;
  font-style: italic;
}

.trust-item small {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 5;
  pointer-events: none;
}

.hero-scroll-hint span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid var(--gold-deep);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--gold);
}

.hero-scroll-hint small {
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 3px;
}

@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 12px); opacity: 0; }
}

/* ============================================
   四大優惠 - 翡翠玉牌
   ============================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}

.benefit-card {
  position: relative;
  background: linear-gradient(160deg, rgba(14, 42, 31, 0.9) 0%, rgba(5, 10, 8, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 4px;
  padding: 28px 18px 22px;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.benefit-card::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 2px;
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow:
    0 0 0 1px rgba(255, 215, 0, 0.3),
    0 12px 40px rgba(0, 168, 107, 0.4),
    0 0 50px rgba(212, 175, 55, 0.2);
}

.benefit-num {
  position: absolute;
  top: 10px; right: 14px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(212, 175, 55, 0.25);
  letter-spacing: 1px;
}

.benefit-icon {
  font-size: 2.3rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
}

.benefit-amount {
  font-family: var(--font-num);
  font-size: 3rem;
  background: var(--gradient-luxe);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 1px;
  font-weight: 700;
  font-style: italic;
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

.benefit-amount small {
  font-size: 0.45em;
  margin-left: 2px;
  font-style: normal;
}

.benefit-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.benefit-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============================================
   遊戲類別 - 翡翠卡牌
   ============================================ */
.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}

.game-cat {
  position: relative;
  background: linear-gradient(135deg, rgba(14, 42, 31, 0.7) 0%, rgba(5, 10, 8, 0.9) 100%);
  border: 1px solid rgba(0, 168, 107, 0.35);
  border-radius: 4px;
  padding: 24px 14px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.game-cat::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(80, 200, 120, 0.18);
  border-radius: 2px;
  pointer-events: none;
}

.game-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(0, 168, 107, 0.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.game-cat:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 168, 107, 0.3);
}

.game-cat:hover .game-glow {
  opacity: 1;
}

.game-icon {
  position: relative;
  font-size: 2.6rem;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 15px rgba(0, 168, 107, 0.5));
}

.game-name {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--jade);
  text-shadow: 0 0 10px rgba(80, 200, 120, 0.4);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.game-desc {
  position: relative;
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.game-tag {
  position: absolute;
  top: 10px; right: 10px;
  background: linear-gradient(135deg, var(--crimson) 0%, #8b0000 100%);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 1.5px;
  border: 1px solid var(--gold-deep);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

/* ============================================
   遊戲供應商 - 金匾
   ============================================ */
.providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.provider-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, rgba(14, 42, 31, 0.8) 0%, rgba(5, 10, 8, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 3px;
  padding: 14px 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
  min-height: 72px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
  font-weight: 900;
  position: relative;
}

.provider-badge::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 2px;
  pointer-events: none;
}

.provider-badge.wide {
  grid-column: span 3;
}

.provider-badge:hover {
  transform: translateY(-3px);
  border-color: var(--jade);
  color: var(--jade);
  text-shadow: 0 0 15px rgba(80, 200, 120, 0.7);
  box-shadow: 0 4px 20px rgba(0, 168, 107, 0.3);
}

.provider-badge small {
  display: block;
  font-family: var(--font-main);
  font-size: 0.65rem;
  color: var(--text-dim);
  margin-top: 3px;
  letter-spacing: 0;
  font-weight: 600;
  text-shadow: none;
}

/* ============================================
   信任區
   ============================================ */
.trust-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto 50px;
}

.trust-feature {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(14, 42, 31, 0.55) 0%, rgba(5, 10, 8, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 4px;
  padding: 18px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.trust-feature:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 25px rgba(212, 175, 55, 0.2);
}

.tf-icon-wrap {
  flex-shrink: 0;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--emerald) 0%, #006c3f 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 175, 55, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 215, 0, 0.2),
    0 0 20px rgba(0, 168, 107, 0.4);
}

.tf-icon {
  font-size: 1.85rem;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.tf-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
  letter-spacing: 1.5px;
}

.tf-desc {
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.payment-row {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.payment-label {
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 4px;
  margin-bottom: 18px;
}

.payment-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 14px 22px;
  font-weight: 900;
  min-width: 110px;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.payment-badge .pb-main {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 1.5px;
}

.payment-badge.fps {
  background: linear-gradient(135deg, #00a86b 0%, #006c3f 100%);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(0, 168, 107, 0.4);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.payment-badge.bank {
  background: linear-gradient(135deg, #14241a 0%, #050a08 100%);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.payment-badge.usdt {
  background: linear-gradient(135deg, #1a7a5b 0%, #0e4d36 100%);
  color: var(--gold);
  box-shadow: 0 4px 20px rgba(38, 161, 123, 0.4);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.payment-badge small {
  display: block;
  font-size: 0.7rem;
  margin-top: 4px;
  font-weight: 600;
  font-family: var(--font-main);
  opacity: 0.95;
  color: var(--champagne);
  text-shadow: none;
}

/* ============================================
   玩家好評 - 印章卷軸
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.review-card {
  position: relative;
  background: linear-gradient(135deg, rgba(14, 42, 31, 0.7) 0%, rgba(5, 10, 8, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  padding: 26px 22px 22px;
  backdrop-filter: blur(10px);
}

.review-card::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 2px;
  pointer-events: none;
}

.review-quote {
  position: absolute;
  top: -4px; left: 18px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 1;
  opacity: 0.25;
  font-weight: 900;
}

.review-stars {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  position: relative;
  z-index: 1;
}

.review-text {
  font-size: 0.94rem;
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.ra-avatar {
  width: 40px; height: 40px;
  background: var(--gradient-emerald);
  border: 2px solid var(--gold-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.ra-name {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--gold);
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.ra-loc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================
   最終 CTA
   ============================================ */
.final-cta {
  position: relative;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 168, 107, 0.32) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.28) 0%, transparent 50%);
  pointer-events: none;
}

.final-inner {
  position: relative;
  z-index: 2;
}

.final-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 900;
  margin-bottom: 14px;
  margin-top: 16px;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: 2px;
}

.final-highlight {
  display: inline-block;
  font-family: var(--font-num);
  font-size: 2.7rem;
  background: var(--gradient-luxe);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
  margin-top: 10px;
  letter-spacing: 1px;
  font-weight: 700;
  font-style: italic;
}

.final-sub {
  color: var(--text-dim);
  margin-bottom: 30px;
  font-size: 1rem;
  letter-spacing: 1px;
}

.final-trust {
  margin-top: 28px;
  color: var(--gold-deep);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: rgba(3, 6, 4, 0.92);
  padding: 28px 20px;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  position: relative;
  z-index: 2;
}

.age-warning {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 16px;
  background: rgba(178, 34, 34, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 3px;
  flex-wrap: wrap;
  justify-content: center;
}

.age-icon {
  background: var(--crimson);
  color: var(--gold);
  font-weight: 900;
  font-size: 0.85rem;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  border: 1px solid var(--gold-deep);
  box-shadow: 0 0 10px rgba(178, 34, 34, 0.5);
}

.age-text {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-family: var(--font-display);
  letter-spacing: 2px;
}

/* ============================================
   浮動客服 - 翡翠玉牌
   ============================================ */
.float-service {
  position: fixed;
  right: 14px;
  bottom: 90px;
  width: 60px;
  height: 60px;
  background: var(--gradient-emerald);
  border: 2px solid var(--gold-deep);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 900;
  text-align: center;
  line-height: 1;
  box-shadow:
    0 4px 25px rgba(0, 168, 107, 0.5),
    0 0 0 1px rgba(255, 215, 0, 0.25);
  z-index: 100;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

.float-icon {
  font-size: 1.5rem;
  margin-bottom: 2px;
}

.float-text {
  font-size: 0.6rem;
  font-family: var(--font-display);
  letter-spacing: 1px;
}

.float-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  animation: pulseRing 2s infinite;
  pointer-events: none;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================
   浮動底部 CTA
   ============================================ */
.float-bottom-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gradient-cta);
  background-size: 200% 200%;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  color: #1a1208;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 -4px 25px rgba(212, 175, 55, 0.4);
  z-index: 99;
  animation: ctaGradient 5s ease infinite;
  border-top: 1px solid rgba(255, 215, 0, 0.5);
}

.fbc-emoji {
  font-size: 1.3rem;
}

.fbc-main {
  flex: 1;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.fbc-arrow {
  background: rgba(0, 0, 0, 0.35);
  color: var(--gold);
  padding: 6px 12px;
  border-radius: 2px;
  font-size: 1rem;
}

/* ============================================
   Desktop
   ============================================ */
@media (min-width: 768px) {
  .hero-inner { padding-top: 50px; max-width: 800px; }
  .title-pre, .title-post { font-size: 2.3rem; }
  .title-amount { font-size: 8.5rem; }
  .hero-sub { font-size: 1.22rem; }
  .section-title { font-size: 2.4rem; }
  .section-sub { font-size: 1.1rem; }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    gap: 20px;
  }

  .benefit-card { padding: 32px 22px 26px; }
  .benefit-icon { font-size: 2.8rem; }
  .benefit-amount { font-size: 3.4rem; }
  .benefit-title { font-size: 1.15rem; }
  .benefit-desc { font-size: 0.88rem; }
  .benefit-num { font-size: 1.8rem; top: 12px; right: 18px; }

  .games-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
    gap: 18px;
  }

  .providers-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1100px;
    gap: 14px;
  }

  .provider-badge.wide { grid-column: span 1; }
  .provider-badge { padding: 18px 10px; font-size: 1.45rem; min-height: 82px; }

  .trust-features {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
  }

  .final-title { font-size: 2.3rem; }
  .final-highlight { font-size: 3.6rem; }

  .float-bottom-cta { display: none; }
  body { padding-bottom: 0; }

  .float-service {
    width: 72px;
    height: 72px;
    right: 28px;
    bottom: 28px;
  }
}

@media (min-width: 1024px) {
  .hero-inner { max-width: 900px; }
  .title-amount { font-size: 9.5rem; }
  .cta { font-size: 1.28rem; padding: 22px 56px; }
  .cta-final { font-size: 1.45rem; padding: 26px 60px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
