:root {
  --primary: #2F6EF8;
  --primary-glow: rgba(47, 110, 248, 0.2);
  --secondary: #7000FF;
  --secondary-glow: rgba(112, 0, 255, 0.2);
  --accent: #FF00E5;
  --bg-white: #F5FEFF;
  --bg-alt: #EBF9FF;
  --card-bg: #FFFFFF;
  --border: rgba(47, 110, 248, 0.1);
  --text-main: #1A1A1A;
  --text-dim: #64748B;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', 'Noto Sans SC', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Neon Background */
.neon-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.1;
}

.orb-1 {
  width: 800px;
  height: 800px;
  background: var(--primary);
  top: -200px;
  left: -200px;
  animation: orb-float 20s infinite alternate;
  opacity: 0.05;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: var(--secondary);
  bottom: -100px;
  right: -100px;
  animation: orb-float 15s infinite alternate-reverse;
  opacity: 0.05;
}

@keyframes orb-float {
  from { transform: translate(0, 0); }
  to { transform: translate(100px, 50px); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
  opacity: 0.5;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.neon-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-q {
  display: none;
}

.logo-name {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1.5px;
  font-family: 'Space Grotesk', sans-serif;
}

.logo-name span {
  color: var(--primary);
  margin-left: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}

.nav-menu a:hover {
  color: var(--primary);
  text-shadow: 0 0 10px var(--primary-glow);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-neon-outline {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 100px;
  transition: var(--transition);
}

.btn-neon-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--bg-alt);
}

.btn-neon-fill {
  background: var(--text-main);
  color: white;
  text-decoration: none;
  padding: 10px 28px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 15px;
  transition: var(--transition);
}

.btn-neon-fill:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Hero Section */
.hero-neon {
  padding: 160px 0 100px;
}

.hero-flex {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 209, 255, 0.1);
  border: 1px solid var(--primary-glow);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
}

.pulse-icon {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
}

.pulse-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: badge-pulse 1.5s infinite;
}

@keyframes badge-pulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.hero-text h1 {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -3px;
  color: var(--text-main);
}

.hero-text h1 span {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 20px;
  color: var(--text-dim);
  margin-bottom: 56px;
  max-width: 580px;
}

.hero-metrics {
  display: flex;
  gap: 48px;
  margin-bottom: 64px;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric .num {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-main);
  text-shadow: none;
}

.metric small {
  font-size: 20px;
  color: var(--primary);
  font-weight: 800;
  margin-left: 2px;
}

.metric .lab {
  font-size: 14px;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn-main {
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 20px 48px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 20px;
  box-shadow: 0 10px 30px var(--primary-glow);
  transition: var(--transition);
}

.btn-main:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px var(--primary-glow);
}

.cert-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  font-weight: 600;
  font-size: 15px;
}

.cert-line i {
  color: var(--primary);
  width: 20px;
}

/* Mockup Neon */
.mockup-neon {
  width: 100%;
  background: white;
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 16px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(0, 102, 255, 0.02) 0%, transparent 70%);
}

.mockup-neon::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 32px;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), transparent, var(--secondary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* CSS-only Mockup Fallback when image fails */
.mockup-neon.error::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 60%;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent);
  border: 1px solid var(--border);
  border-radius: 12px;
  transform: perspective(1000px) rotateY(-15deg);
  box-shadow: 20px 20px 50px rgba(0,0,0,0.5);
}

.mockup-neon img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* Features Bento */
.features-neon {
  padding: 120px 0;
}

.section-head h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-dim);
  font-size: 18px;
  margin-bottom: 64px;
}

.text-center { text-align: center; }

.bento-grid-neon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 340px);
  gap: 24px;
}

.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.bento-card:hover {
  background: var(--bg-alt);
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.bento-card.large {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
}

.bento-card.wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(0,209,255,0.05), rgba(112,0,255,0.05));
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
}

.icon-box.blue { background: rgba(0, 209, 255, 0.1); color: var(--primary); }
.icon-box.purple { background: rgba(112, 0, 255, 0.1); color: var(--secondary); }
.icon-box.pink { background: rgba(255, 0, 229, 0.1); color: var(--accent); }
.icon-box.green { background: rgba(0, 255, 128, 0.1); color: #00FF80; }

.bento-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
}

.bento-card p {
  color: var(--text-dim);
  font-size: 17px;
}

.card-visual {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.card-visual img {
  width: 240px;
  height: 240px;
  object-fit: contain;
}

.tags-neon {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.tags-neon span {
  background: rgba(255,255,255,0.05);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--border);
}

/* Gaming Section */
.gaming-flex {
  display: flex;
  align-items: center;
  gap: 80px;
  background: linear-gradient(90deg, rgba(0, 102, 255, 0.03) 0%, transparent 100%);
  padding: 80px;
  border-radius: 48px;
  border: 1px solid var(--border);
}

.gaming-visual { flex: 1.2; }
.gaming-text { flex: 1; }

.glass-frame {
  background: var(--card-bg);
  padding: 12px;
  border-radius: 32px;
  border: 1px solid var(--border);
}

.glass-frame img {
  width: 100%;
  border-radius: 20px;
}

.f-tag {
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.gaming-text h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 24px;
}

.gaming-list {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gaming-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-main);
}

.gaming-list i {
  color: var(--primary);
  font-size: 20px;
}

/* Pricing Neon */
.pricing-neon {
  padding: 120px 0;
}

.price-grid-neon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 64px 48px;
  border-radius: 40px;
  transition: var(--transition);
  position: relative;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.price-card:hover {
  border-color: var(--primary);
  transform: translateY(-15px);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.1);
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(112, 0, 255, 0.1) 0%, transparent 100%);
  border: 2px solid var(--secondary);
}

.p-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: white;
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 0 20px var(--secondary-glow);
}

.p-amt {
  font-size: 20px;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 48px;
}

.p-amt span {
  font-size: 64px;
  font-weight: 900;
  color: var(--text-main);
}

.p-list {
  list-style: none;
  text-align: left;
  margin-bottom: 56px;
}

.p-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--text-dim);
  font-weight: 500;
}

.p-list i {
  color: var(--primary);
  width: 18px;
}

.btn-price-neon {
  display: block;
  text-decoration: none;
  border: 2px solid var(--border);
  color: white;
  padding: 16px;
  border-radius: 16px;
  font-weight: 800;
  transition: var(--transition);
}

.btn-price-neon:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: black;
}

.btn-price-fill {
  display: block;
  text-decoration: none;
  background: var(--secondary);
  color: white;
  padding: 16px;
  border-radius: 16px;
  font-weight: 800;
  transition: var(--transition);
  box-shadow: 0 10px 30px var(--secondary-glow);
}

.btn-price-fill:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px var(--secondary-glow);
}

/* Download Section */
.download-neon {
  padding: 120px 0;
}

.download-box {
  background: linear-gradient(135deg, var(--bg-black), #111111);
  border: 1px solid var(--border);
  border-radius: 56px;
  padding: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.download-box::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--primary);
  filter: blur(150px);
  opacity: 0.1;
}

.dl-content h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.dl-content p {
  color: var(--text-dim);
  font-size: 18px;
  margin-bottom: 48px;
}

.dl-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.plat-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: white;
  text-decoration: none;
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  transition: var(--transition);
}

.plat-btn:hover {
  background: white;
  color: black;
}

.dl-visual { flex: 0.8; display: flex; justify-content: flex-end; }
.dl-visual img { width: 200px; border-radius: 24px; box-shadow: 0 0 30px var(--primary-glow); }

/* Footer Neon */
.footer-neon {
  padding: 100px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-brand { max-width: 360px; }
.footer-brand p { color: var(--text-dim); margin-top: 24px; }

.footer-links { display: flex; gap: 80px; flex-wrap: wrap; }
.f-col h5 { font-size: 18px; font-weight: 800; margin-bottom: 32px; color: var(--text-main); }
.f-col a { display: block; color: var(--text-dim); text-decoration: none; margin-bottom: 16px; font-weight: 600; transition: var(--transition); }
.f-col a:hover { color: var(--primary); }

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 14px;
}

/* Floating HUD */
.hud-neon {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  color: var(--text-main);
}

.dot-live { width: 8px; height: 8px; background: #00FF80; border-radius: 50%; box-shadow: 0 0 10px #00FF80; }
.hud-txt { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }
.hud-sep { width: 1px; height: 20px; background: var(--border); }
.hud-val { font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.hud-val i { font-size: 12px; }
.hud-val small { font-size: 10px; opacity: 0.6; margin-left: 2px; }
.hud-ping { font-size: 15px; font-weight: 800; color: #00FF80; }

/* Loading Shimmer - Aggressive Fix */
.loading-shimmer {
  background: #f1f5f9;
  position: relative;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
}

.loading-shimmer img {
  opacity: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 5;
  transition: opacity 0.8s ease-in-out;
}

.loaded img {
  opacity: 1 !important;
}

.loading-text {
  position: absolute;
  z-index: 3;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: text-pulse 1.5s infinite;
}

@keyframes text-pulse {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

.loaded .loading-text {
  display: none !important;
}

.mockup-neon {
  min-height: 400px;
  background: radial-gradient(circle at center, #111 0%, #050505 100%);
}

.loaded .loading-text {
  display: none !important;
}

.loading-shimmer.error {
  background: rgba(255, 0, 0, 0.1);
  animation: none;
}

.loading-shimmer.error::after {
  content: '\f03e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--border);
  font-size: 48px;
}

.loading-shimmer.error::before {
  content: '正在从备用服务器加载...';
  position: absolute;
  bottom: 20px;
  color: var(--text-dim);
  font-size: 12px;
}

/* Extra Decorations */
.hero-neon::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: var(--accent);
  filter: blur(120px);
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 70%);
  pointer-events: none;
}

@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

.section-padding {
  padding: 120px 0;
}

/* Global Nodes */
.map-container {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 48px;
  overflow: hidden;
}

.map-container img {
  width: 100%;
  display: block;
  opacity: 0.6;
}

.map-overlay {
  position: absolute;
  inset: 0;
}

.node-pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--primary);
}

.node-pulse::before {
  content: '';
  position: absolute;
  inset: -10px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  animation: node-ping 2s infinite;
}

.node-pulse span {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 2px 8px;
  border-radius: 4px;
}

@keyframes node-ping {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testi-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 32px;
  transition: var(--transition);
}

.testi-card:hover {
  background: white;
  border-color: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.testi-stars {
  color: #FFD700;
  margin-bottom: 24px;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 16px;
  color: var(--text-dim);
  margin-bottom: 32px;
  font-style: italic;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.testi-user strong {
  display: block;
  font-size: 16px;
}

.testi-user span {
  font-size: 13px;
  color: var(--text-dim);
}

/* Download Official Cards */
.platform-grid-official {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.plat-card-official {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: 40px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.plat-card-official:hover {
  border-color: var(--primary);
  background: var(--bg-alt);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.plat-icon {
  width: 64px;
  height: 64px;
  background: rgba(0, 209, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary);
}

.plat-card-official h3 {
  font-size: 24px;
  font-weight: 800;
}

.plat-card-official p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}

.plat-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-plat-main {
  background: var(--text-main);
  color: white;
  text-decoration: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 800;
  text-align: center;
  transition: var(--transition);
}

.btn-plat-main:hover {
  background: var(--primary);
  box-shadow: 0 10px 20px var(--primary-glow);
}

.btn-plat-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.btn-plat-link:hover {
  text-decoration: underline;
}

/* FAQ Official */
.faq-grid-official {
  max-width: 800px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 24px;
}

.faq-item h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--primary);
}

.faq-item p {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* Reveal Animations */
.animate-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-reveal.visible { opacity: 1; transform: translateY(0); }

.animate-float { animation: float-neon 6s ease-in-out infinite; }
@keyframes float-neon { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

/* Responsive */
@media (max-width: 1100px) {
  .hero-flex { grid-template-columns: 1fr; text-align: center; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-metrics { justify-content: center; }
  .bento-grid-neon { grid-template-columns: 1fr; grid-template-rows: auto; }
  .bento-card.large, .bento-card.wide { grid-column: span 1; flex-direction: column; }
  .gaming-flex { flex-direction: column; padding: 40px; }
  .download-box { flex-direction: column; text-align: center; padding: 40px; gap: 40px; }
}

@media (max-width: 768px) {
  .hero-text h1 { font-size: 52px; }
  .nav-menu { display: none; }
  .hero-btns { flex-direction: column; width: 100%; }
  .btn-main { width: 100%; text-align: center; }
  .dl-platforms { grid-template-columns: 1fr; }
}