/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #FF6B8A;
  --pink-light: #FF8FA3;
  --pink-pale: #FFF0F3;
  --pink-deep: #E8506A;
  --coral: #FF8C69;
  --mint: #48CAE4;
  --purple: #A29BFE;
  --yellow: #FFEAA7;
  --green: #55EFC4;
  --orange: #FF9F43;
  --bg: #FFFBFC;
  --bg-section: #FFF5F7;
  --text: #2D2D2D;
  --text-muted: #888;
  --text-light: #AAA;
  --border: #F0E0E5;
  --shadow-sm: 0 2px 8px rgba(255,107,138,0.08);
  --shadow-md: 0 8px 32px rgba(255,107,138,0.12);
  --shadow-lg: 0 16px 48px rgba(255,107,138,0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== TYPOGRAPHY ===== */
.highlight { color: var(--pink); }
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  background: var(--pink-pale);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.section-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}
.section-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: white;
  box-shadow: 0 4px 16px rgba(255,107,138,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,138,0.45);
}
.btn-ghost {
  background: white;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-2px);
}
.btn-nav {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: white;
  padding: 9px 20px;
  font-size: 14px;
  box-shadow: 0 2px 12px rgba(255,107,138,0.3);
}
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,107,138,0.4);
}
.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,251,252,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark { display: flex; }
.logo-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--pink);
  background: var(--pink-pale);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 108px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}
.shape-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #FFD6E0, transparent);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #C8E6FF, transparent);
  bottom: -100px; left: -100px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #D4F1F4, transparent);
  top: 40%; left: 40%;
}
.hero-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--pink-pale), #FFF);
  border: 1px solid rgba(255,107,138,0.2);
  color: var(--pink);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.badge-icon { font-size: 10px; }
.hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title-sub {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
}
.hero-title-sub em {
  font-style: normal;
  color: var(--pink);
  position: relative;
}
.hero-title-sub em::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--coral));
  border-radius: 2px;
  opacity: 0.6;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  box-shadow: var(--shadow-sm);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 0 12px;
}
.stat-num {
  font-size: 20px;
  font-weight: 900;
  color: var(--pink);
  line-height: 1.2;
}
.stat-num sup { font-size: 12px; }
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
  text-align: center;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  display: inline-block;
}
.hero-mascot {
  width: 100%;
  max-width: 480px;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 16px 40px rgba(255,107,138,0.25));
  /* animation removed: no float */
}
@keyframes mascot-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
/* ── Ping Badge: Glassmorphism redesign ── */
.ping-badge {
  position: absolute;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 138px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ping-badge:hover {
  transform: translateY(-3px);
}

/* Before: warm red glass */
.ping-before {
  top: 14%;
  left: -28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 113, 113, 0.30);
  box-shadow: 0 8px 32px rgba(255, 113, 113, 0.18), inset 0 1px 0 rgba(255,255,255,0.9);
}

/* After: pink-teal glass */
.ping-after {
  bottom: 14%;
  right: -28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 107, 138, 0.28);
  box-shadow: 0 8px 32px rgba(255, 107, 138, 0.20), inset 0 1px 0 rgba(255,255,255,0.9);
}

.ping-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.ping-val {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.ping-val.bad  { color: #F05454; }
.ping-val.good { color: #0ABFA3; }

.ping-drop {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 700;
  color: #0ABFA3;
  background: rgba(10, 191, 163, 0.10);
  border: 1px solid rgba(10, 191, 163, 0.20);
  padding: 2px 8px;
  border-radius: 99px;
  align-self: flex-start;
  margin-top: 2px;
}

.ping-badge-icon {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1px;
}
.ping-badge-icon-bad  span { color: #F05454; }
.ping-badge-icon-good span { color: #0ABFA3; }
.ping-val-unit {
  font-size: 13px;
  font-weight: 700;
  margin-left: 1px;
  opacity: 0.7;
  vertical-align: baseline;
}
.ping-sublabel {
  font-size: 10px;
  color: var(--text-light);
  margin-top: 1px;
}
/* Subtle pulse on the "after" badge */
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(255,107,138,0.20), inset 0 1px 0 rgba(255,255,255,0.9); }
  50%       { box-shadow: 0 8px 40px rgba(255,107,138,0.38), inset 0 1px 0 rgba(255,255,255,0.9); }
}
.ping-after {
  animation: badge-pulse 3s ease-in-out infinite;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 12px;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--text-light);
  border-bottom: 2px solid var(--text-light);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(4px); }
}

/* ===== APP PREVIEW ===== */
.app-preview {
  padding: 100px 0;
  background: var(--bg-section);
}
.preview-window {
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  max-width: 860px;
  margin: 0 auto;
}
.window-bar {
  background: #F8F0F2;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.window-dots { display: flex; gap: 6px; }
.dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.dot-red { background: #FF5F57; }
.dot-yellow { background: #FEBC2E; }
.dot-green { background: #28C840; }
.window-title {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
.win-btn {
  font-size: 12px;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}
.window-body {
  display: flex;
  min-height: 360px;
}
.app-sidebar {
  width: 56px;
  background: #FFF5F7;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 8px;
}
.sidebar-item {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.sidebar-item.active, .sidebar-item:hover {
  background: var(--pink-pale);
  color: var(--pink);
}
.app-main {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.app-game-info {
  display: flex;
  gap: 16px;
  align-items: center;
}
.game-cover {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.game-cover-placeholder {
  width: 100%; height: 100%;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}
.game-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.game-server {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.ping-display {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,206,201,0.1);
  color: #00A8A5;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.app-boost-btn {
  display: flex;
  gap: 12px;
}
.boost-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255,107,138,0.35);
  transition: var(--transition);
}
.boost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,138,0.45);
}
.server-btn {
  background: white;
  border: 2px solid var(--border);
  color: var(--text);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
}
.server-btn:hover { border-color: var(--pink); color: var(--pink); }
.app-game-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.app-game-list::-webkit-scrollbar { height: 4px; }
.app-game-list::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.app-game-list::-webkit-scrollbar-thumb { background: var(--pink-light); border-radius: 2px; }
.game-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.game-thumb-img {
  width: 56px; height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  transition: var(--transition);
}
.game-thumb.active .game-thumb-img {
  box-shadow: 0 0 0 3px var(--pink), 0 4px 12px rgba(255,107,138,0.3);
}
.game-thumb span {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}
.app-screenshot-wrap {
  overflow: hidden;
  line-height: 0;
}
.app-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 480px;
  object-fit: cover;
  object-position: top;
}
.window-footer {
  background: #FFF5F7;
  border-top: 1px solid var(--border);
  padding: 10px 20px;
  text-align: center;
}
.footer-tip {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, transparent);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,138,0.2);
}
.feature-card:hover::before {
  background: linear-gradient(90deg, var(--pink), var(--coral));
}
.feature-card-lg {
  grid-column: span 2;
}
.feature-card-accent {
  background: linear-gradient(135deg, var(--pink-pale), white);
  border-color: rgba(255,107,138,0.2);
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--icon-bg, var(--pink-pale));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icon-color, var(--pink));
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.feature-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pink);
  background: var(--pink-pale);
  padding: 3px 10px;
  border-radius: 20px;
}
.feature-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  padding: 3px 10px;
  border-radius: 20px;
}

/* ===== GAMES ===== */
.games {
  padding: 100px 0;
  background: var(--bg-section);
}
.games-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: white;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active {
  border-color: var(--pink);
  background: var(--pink);
  color: white;
}
.tab-btn:hover:not(.active) {
  border-color: var(--pink);
  color: var(--pink);
}
.tab-count {
  background: rgba(255,255,255,0.3);
  padding: 1px 7px;
  border-radius: 10px;
  font-size: 12px;
}
.tab-btn.active .tab-count { background: rgba(255,255,255,0.3); }
.tab-btn:not(.active) .tab-count {
  background: var(--bg-section);
  color: var(--text-muted);
}
.games-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  transition: var(--transition);
}
.games-search:focus-within {
  border-color: var(--pink);
}
.games-search svg { color: var(--text-muted); flex-shrink: 0; }
.games-search input {
  border: none;
  outline: none;
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: transparent;
  width: 200px;
}
.games-search input::placeholder { color: var(--text-light); }
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.game-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}
.game-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,138,0.2);
}
.game-card-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.game-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}
.game-icon-img {
  background: none !important;
  padding: 0;
}
.game-icon-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.game-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.game-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.tag {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.tag-server { background: #EBF8FB; color: #48CAE4; }
.tag-genre { background: var(--pink-pale); color: var(--pink); }
.tag-hot { background: #FFF3E0; color: #FF9F43; }
.tag-new { background: #E8F5E9; color: #4CAF50; }
/* ── NEW Ping Visual Design ── */
.ping-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 12px;
  padding: 12px 10px;
  background: linear-gradient(135deg, #FFF5F7 0%, #FFF9F0 100%);
  border-radius: 12px;
  border: 1px solid #FFE4EC;
}
.ping-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
}
.ping-label-top {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.ping-num {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.ping-unit {
  font-size: 12px;
  font-weight: 600;
  margin-left: 1px;
  vertical-align: baseline;
  opacity: 0.75;
}
.ping-num-bad  { color: #FF6B6B; }
.ping-num-good { color: #0ABFA3; }
.ping-divider-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Reduction bar */
.ping-reduction-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.ping-reduction-track {
  flex: 1;
  height: 6px;
  background: #F0E8EC;
  border-radius: 99px;
  overflow: hidden;
}
.ping-reduction-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #FF6B8A, #FF8C69);
  transition: width 1s cubic-bezier(.4,0,.2,1);
}
.ping-reduction-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--pink);
  background: var(--pink-pale);
  border: 1px solid #FFD6E0;
  padding: 2px 8px;
  border-radius: 99px;
  white-space: nowrap;
}
.games-note {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  padding-top: 8px;
}

/* ===== REVIEWS ===== */
/* ===== REVIEWS - GPT Redesigned ===== */
.reviews {
  position: relative;
  padding: 110px 0 120px 0;
  background: linear-gradient(135deg, #FFF0F3 0%, #FFFFFF 100%);
  overflow: hidden;
}
.reviews-bg-pattern {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 30% 40%, #FF6B8A22 1.5px, transparent 1.5px),
    radial-gradient(circle at 70% 70%, #FF6B8A18 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.45;
}
.reviews .section-header {
  position: relative;
  z-index: 2;
}
.reviews-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,107,138,0.08);
  border-radius: 20px;
  padding: 10px 28px;
  margin-bottom: 38px;
  gap: 18px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px rgba(255,107,138,0.07);
  position: relative;
  z-index: 2;
}
.reviews-stats-score {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.reviews-stats-score-main {
  font-size: 2.1rem;
  font-weight: 800;
  color: #FF6B8A;
  line-height: 1;
}
.reviews-stats-score-sub {
  font-size: 1rem;
  font-weight: 500;
  color: #E48B9D;
  margin-left: 2px;
}
.reviews-stats-divider {
  width: 1px;
  height: 24px;
  background: #FFB2C4;
  opacity: 0.6;
  border-radius: 2px;
}
.reviews-stats-count {
  font-size: 1rem;
  color: #B67A8A;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.reviews-masonry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.review-card {
  background: linear-gradient(120deg, #FFF5F8 70%, #FFFFFF 100%);
  border: 1.5px solid #FAD5DE;
  border-radius: 28px;
  padding: 34px 28px 24px 28px;
  box-shadow: 0 2px 32px 0 rgba(255,107,138,0.10);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.review-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 32px rgba(255,107,138,0.18);
}
.review-card-featured {
  background: linear-gradient(120deg, #FFEDF4 0%, #FFF0F3 80%, #FFFFFF 100%);
  border: 2px solid rgba(255,107,138,0.2);
  box-shadow: 0 8px 40px 0 rgba(255,107,138,0.18);
}
.review-badge {
  position: absolute;
  top: 22px; right: 24px;
}
.badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #FF6B8A;
  background: linear-gradient(90deg, #FFF0F3 60%, #FFD8E1 100%);
  border-radius: 10px;
  padding: 3px 10px;
  box-shadow: 0 1px 4px rgba(255,107,138,0.10);
}
.badge-verified::before {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  background: url('data:image/svg+xml;utf8,<svg width="12" height="12" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="6" cy="6" r="6" fill="%23FF6B8A"/><path d="M4.5 6.5l1 1 2-2" stroke="white" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center;
  background-size: 12px;
  vertical-align: middle;
}
.review-quote {
  font-size: 56px;
  line-height: 1;
  color: #FF6B8A;
  opacity: 0.18;
  font-family: Georgia, serif;
  margin-bottom: 8px;
  margin-left: -6px;
  user-select: none;
}
.review-text {
  font-size: 14.5px;
  color: #3D2F31;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 28px;
  flex-grow: 1;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2.5px solid #FFF0F3;
  box-shadow: 0 2px 12px rgba(255,107,138,0.15);
}
.avatar-initials {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.avatar-fish { background: linear-gradient(135deg, #FF93AD 0%, #FF6B8A 100%); }
.avatar-game { background: linear-gradient(135deg, #FFB2C4 0%, #FF5577 100%); }
.avatar-momo { background: linear-gradient(135deg, #FFC6D3 0%, #FF6B8A 80%); }
.avatar-rank { background: linear-gradient(135deg, #FFDFEA 0%, #FF6B8A 100%); }
.review-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: #FF6B8A;
  display: block;
  margin-bottom: 2px;
}
.review-stars {
  font-size: 12px;
  color: #FFB800;
  letter-spacing: 1.5px;
  font-weight: 700;
}

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--bg-section);
}
.pricing-header {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 56px;
}
.pricing-mascot {
  width: 180px;
  flex-shrink: 0;
}
.pricing-mascot img {
  width: 100%;
  border-radius: 0;
  filter: drop-shadow(0 8px 24px rgba(255,107,138,0.2));
  /* animation removed: no float */
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 48px;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pricing-card-featured {
  background: linear-gradient(160deg, #FFF0F3, white);
  border: 2px solid var(--pink);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-4px);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card-header {
  margin-bottom: 20px;
}
.pricing-card-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.pricing-subtitle {
  font-size: 13px;
  color: var(--text-muted);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.currency {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
}
.amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.period {
  font-size: 14px;
  color: var(--text-muted);
}
.pricing-monthly {
  font-size: 13px;
  color: var(--pink);
  font-weight: 600;
  margin-bottom: 20px;
  background: var(--pink-pale);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
}
.pricing-features {
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.check {
  width: 20px; height: 20px;
  background: var(--pink-pale);
  color: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.check-vip {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: white;
}
.payment-methods {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.payment-title {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.payment-icon { font-size: 28px; }
.payment-name {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.payment-sub {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
}
.faq-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.faq-tab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--border);
  background: white;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.faq-tab.active {
  border-color: var(--pink);
  background: var(--pink);
  color: white;
}
.faq-tab:hover:not(.active) {
  border-color: var(--pink);
  color: var(--pink);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: rgba(255,107,138,0.2);
}
.faq-item.open {
  border-color: rgba(255,107,138,0.3);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-icon {
  width: 28px; height: 28px;
  background: var(--pink-pale);
  color: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--pink);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 24px 18px;
}
.faq-item.open .faq-answer {
  display: block;
}
.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  padding-top: 4px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.faq-footer {
  text-align: center;
  padding: 32px;
  background: var(--pink-pale);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.faq-footer p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

/* ===== FEEDBACK ===== */
.feedback {
  padding: 80px 0;
  background: var(--bg-section);
}

/* 成功畫面 */
.feedback-success {
  text-align: center;
  padding: 64px 24px;
  max-width: 480px;
  margin: 0 auto;
}
.feedback-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF6B8A20, #FF8C6910);
  border: 2px solid #FF6B8A30;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--pink);
}
.feedback-success h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.feedback-success p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* 表單佈局 */
.feedback-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.feedback-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.feedback-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group-grow {
  flex: 1;
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
}
.required {
  color: var(--pink);
  font-size: 14px;
}
.form-optional {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  background: #f5f5f5;
  padding: 2px 8px;
  border-radius: 20px;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: white;
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--pink-light);
  box-shadow: 0 0 0 3px rgba(255,107,138,0.1);
}
.form-input.error {
  border-color: #FF6B8A;
  background: #FFF5F7;
}
.form-select-wrap {
  position: relative;
}
.form-select {
  padding-right: 36px;
  cursor: pointer;
}
.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
}
.form-group-grow .form-textarea {
  flex: 1;
  min-height: 140px;
}
.form-error {
  font-size: 12px;
  color: var(--pink);
  display: none;
}
.form-error.visible {
  display: block;
}

/* Radio 樣式 */
.form-radio-group {
  display: flex;
  gap: 20px;
  padding: 4px 0;
}
.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}
.form-radio input[type="radio"] {
  display: none;
}
.radio-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: white;
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
}
.form-radio input[type="radio"]:checked + .radio-mark {
  border-color: var(--pink);
  background: var(--pink);
  box-shadow: inset 0 0 0 3px white;
}

/* 文件上傳 */
.file-upload-area {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  cursor: pointer;
  transition: var(--transition);
  min-height: 80px;
}
.file-upload-area:hover {
  border-color: var(--pink-light);
  background: var(--pink-pale);
}
.file-upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 14px;
}
.file-upload-placeholder svg {
  color: var(--pink-light);
}
.file-hint {
  font-size: 12px;
  color: var(--text-light);
}
.file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: var(--pink-pale);
  border-radius: var(--radius-sm);
  font-size: 13px;
}
.file-item-name {
  flex: 1;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.file-item-size {
  color: var(--text-muted);
  font-size: 12px;
  flex-shrink: 0;
}
.file-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: var(--transition);
  flex-shrink: 0;
}
.file-item-remove:hover {
  color: var(--pink);
  background: white;
}

/* 表單底部 */
.feedback-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  gap: 16px;
}
.feedback-tip {
  font-size: 13px;
  color: var(--text-muted);
}
.btn-submit {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  white-space: nowrap;
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(45,45,45,0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #FF6B8A20, #FF8C6910);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--pink);
}
.modal-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}
.modal-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.modal-summary {
  background: var(--bg-section);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.modal-row-label {
  color: var(--text-muted);
  font-size: 13px;
}
.modal-row-value {
  font-weight: 700;
  color: var(--text);
}
.modal-actions {
  display: flex;
  gap: 12px;
}
.modal-actions .btn {
  flex: 1;
  justify-content: center;
}
.btn-outline {
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  padding: 11px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  border-color: var(--pink-light);
  color: var(--pink);
}

/* Spin 動畫 */
@keyframes spin {
  to { transform: rotate(360deg); }
}
.spin {
  animation: spin 0.8s linear infinite;
}

/* 響應式 */
@media (max-width: 768px) {
  .feedback-form {
    padding: 24px 20px;
  }
  .feedback-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .feedback-form-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-submit {
    justify-content: center;
  }
}

/* ===== DOWNLOAD CTA ===== */
.download-cta {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF6B8A 0%, #FF8C69 100%);
  overflow: hidden;
}
.cta-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255,200,100,0.1) 0%, transparent 60%);
}
.cta-mascot-img {
  position: absolute;
  right: 5%;
  bottom: 0;
  height: 90%;
  max-height: 420px;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  opacity: 0.92;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.15));
  z-index: 0;
}
.cta-overlay {
  display: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 40px;
}
.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.download-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  min-width: 200px;
}
.download-btn:hover {
  background: rgba(255,255,255,0.25);
  border-color: white;
  transform: translateY(-2px);
}
.download-btn-active {
  background: white;
  border-color: white;
  color: var(--pink);
}
.download-btn-active:hover {
  background: rgba(255,255,255,0.95);
  transform: translateY(-2px);
}
.download-btn-soon {
  opacity: 0.65;
  cursor: default;
}
.download-btn-soon:hover {
  transform: none;
  background: rgba(255,255,255,0.15);
}
.dl-platform {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  text-align: left;
}
.dl-label {
  display: block;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
}

/* ===== FOOTER ===== */
.footer {
  background: #1A1A2E;
  color: white;
  padding: 64px 0 0;
}
.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer .nav-logo .logo-text { color: white; }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 16px 0 24px;
}
.social-links {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-2px);
}
.footer-links {
  display: contents;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li, .footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 24px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--pink); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-lg { grid-column: span 1; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-masonry-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .payment-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .games-grid { grid-template-columns: 1fr; }
  .games-search { display: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-masonry-grid { grid-template-columns: 1fr; }
  .pricing-header { flex-direction: column; text-align: center; }
  .pricing-mascot { width: 120px; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .download-buttons { flex-direction: column; align-items: center; }
  .download-btn { width: 100%; max-width: 280px; }
}

@media (max-width: 480px) {
  .section-container { padding: 0 16px; }
  .hero-stats { flex-direction: column; }
  .payment-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-tabs { gap: 6px; }
}
