/* ===== Theme Tokens And Global Reset ===== */
:root {
  color-scheme: dark;
  --bg: #050509;
  --panel: rgba(13, 16, 28, 0.72);
  --panel-strong: rgba(17, 22, 38, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7fbff;
  --muted: #aeb8c9;
  --cyan: #35f3ff;
  --pink: #ff4ecd;
  --gold: #ffce3a;
  --green: #5dff9b;
  --red: #ff4a67;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }
html { background: var(--bg); }
body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
}

body::selection { background: rgba(53, 243, 255, 0.28); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img, video { max-width: 100%; display: block; }

/* ===== Animated Site Background ===== */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(53, 243, 255, .18), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 78, 205, .14), transparent 26%),
    radial-gradient(circle at 52% 88%, rgba(255, 206, 58, .1), transparent 34%),
    #050509;
}

#particleCanvas { width: 100%; height: 100%; }
.aurora {
  position: absolute;
  width: 42vmax;
  height: 42vmax;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .3;
  mix-blend-mode: screen;
  animation: drift 16s ease-in-out infinite alternate;
}
.aurora-one { left: -12vmax; top: 18%; background: #35f3ff; }
.aurora-two { right: -16vmax; bottom: 4%; background: #ff4ecd; animation-delay: -5s; }
.grid-floor {
  position: absolute;
  inset: 45% -20% -10%;
  transform: perspective(700px) rotateX(58deg);
  background-image:
    linear-gradient(rgba(53, 243, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(transparent, black 25%, transparent 82%);
}

/* ===== Realtime Notification Toast ===== */
.alert-bar {
  position: fixed;
  top: 88px;
  right: max(12px, calc((100vw - 1180px) / 2));
  left: auto;
  z-index: 24;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(520px, calc(100vw - 24px));
  min-height: 48px;
  padding: 12px 16px 12px 14px;
  text-align: left;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .01em;
  border: 1px solid rgba(53, 243, 255, .26);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 20%, rgba(53, 243, 255, .32), transparent 28%),
    linear-gradient(135deg, rgba(17, 22, 38, .94), rgba(35, 13, 31, .92));
  color: var(--text);
  box-shadow: 0 18px 46px rgba(0,0,0,.42), 0 0 28px rgba(53,243,255,.16), inset 0 1px rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
  pointer-events: none;
  animation: alertToastIn .45s cubic-bezier(.2,.8,.2,1) both, alertGlow 2.6s ease-in-out infinite;
}
.alert-bar::before {
  content: "!";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--cyan), var(--pink), var(--gold));
  color: #050509;
  font-weight: 950;
  box-shadow: 0 0 22px rgba(53,243,255,.28);
}

/* ===== Header, Navigation, Dynamic Buttons ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(1180px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5, 5, 9, .72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: .08em;
}
.brand img, .footer-brand img { width: 38px; height: 38px; }

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  perspective: 900px;
}
.nav a {
  position: relative;
  isolation: isolate;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  transform-style: preserve-3d;
  transition: color .2s ease, transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.nav a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(53,243,255,.16), rgba(255,78,205,.12)),
    rgba(255,255,255,.04);
  opacity: 0;
  transform: translateZ(-1px) scale(.92);
  transition: opacity .22s ease, transform .22s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  inset: 8px 14px auto;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.78), transparent);
  opacity: 0;
  transition: opacity .22s ease;
}
.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
  border-color: rgba(53,243,255,.22);
  background: rgba(255,255,255,.03);
  box-shadow: 0 14px 28px rgba(0,0,0,.28), 0 0 22px rgba(53,243,255,.18);
  transform: translateY(-3px) rotateX(12deg) rotateY(-5deg);
}
.nav a:hover::before,
.nav a:focus-visible::before {
  opacity: 1;
  transform: translateZ(-1px) scale(1);
}
.nav a:hover::after,
.nav a:focus-visible::after {
  opacity: .75;
}
.nav a:active,
.nav a.clicked {
  animation: headerClick .42s ease;
}

.header-actions, .dynamic-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-actions {
  justify-self: end;
  margin-left: auto;
}
.dynamic-buttons {
  max-width: 400px;
  overflow-x: auto;
  scrollbar-width: none;
}
.dynamic-buttons::-webkit-scrollbar { display: none; }

.download-pill, .dyn-btn, .primary-btn, .ghost-btn {
  border: 0;
  border-radius: 8px;
  min-height: 42px;
  transform-style: preserve-3d;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.download-pill {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 900;
  color: #050509;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  box-shadow:
    0 16px 34px rgba(53, 243, 255, .24),
    0 8px 0 rgba(0,0,0,.28),
    inset 0 1px rgba(255,255,255,.55);
}
.download-pill::before {
  content: "";
  position: absolute;
  inset: -80% -35%;
  z-index: -1;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.62) 50%, transparent 65%);
  transform: translateX(-60%) rotate(12deg);
  transition: transform .55s ease;
}
.download-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255,255,255,.55), transparent 34%);
  opacity: 0;
  transition: opacity .2s ease;
}
.download-pill:hover,
.download-pill:focus-visible {
  box-shadow:
    0 22px 44px rgba(53, 243, 255, .32),
    0 9px 0 rgba(0,0,0,.34),
    inset 0 1px rgba(255,255,255,.65);
}
.download-pill:hover::before,
.download-pill:focus-visible::before {
  transform: translateX(60%) rotate(12deg);
}
.download-pill:active,
.download-pill.clicked {
  animation: headerClick .42s ease;
}
.download-pill.clicked::after {
  animation: headerRipple .48s ease;
}

.dyn-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  padding: 0 12px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  box-shadow: inset 0 1px rgba(255,255,255,.18), 0 10px 28px rgba(0,0,0,.35);
  white-space: nowrap;
}
.dyn-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.dyn-btn svg path:first-child {
  fill: currentColor;
}
.dyn-btn::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: -40px;
  min-width: max-content;
  transform: translateX(-50%) translateY(6px);
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--muted);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.dyn-btn:hover::after { opacity: 1; transform: translateX(-50%) translateY(0); }
.dyn-btn:hover, .download-pill:hover, .primary-btn:hover, .ghost-btn:hover { transform: translateY(-3px) rotateX(6deg); }
.dyn-btn.featured { font-weight: 950; box-shadow: 0 0 0 1px rgba(255,206,58,.35), 0 0 32px rgba(255,206,58,.22); }
.dyn-btn.clicked { animation: clickPop .42s ease; }
.color-purple { background-image: linear-gradient(135deg, rgba(168,85,247,.75), rgba(53,243,255,.25)); }
.color-blue { background-image: linear-gradient(135deg, rgba(53,243,255,.62), rgba(93,255,155,.18)); }
.color-red { background-image: linear-gradient(135deg, rgba(255,74,103,.7), rgba(255,206,58,.18)); }
.color-gold { background-image: linear-gradient(135deg, rgba(255,206,58,.72), rgba(255,78,205,.22)); }
.color-neon { background-image: linear-gradient(135deg, rgba(53,243,255,.65), rgba(255,78,205,.45), rgba(93,255,155,.22)); }
.pulse { animation: pulse 1.9s ease-in-out infinite; }
.floating { animation: floating 3s ease-in-out infinite; }
.bounce { animation: bounce 2.5s ease-in-out infinite; }
.rotate3d { animation: rotate3d 4s ease-in-out infinite; }

/* ===== Mobile Hamburger Button ===== */
.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== Shared Page Sections And Buttons ===== */
.section {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  min-height: calc(100svh - 70px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  align-items: center;
  gap: 34px;
  padding-top: 40px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 9vw, 128px);
  line-height: .85;
  letter-spacing: 0;
  text-shadow: 0 0 36px rgba(53, 243, 255, .42);
}
h2 { margin-bottom: 0; font-size: clamp(32px, 5vw, 62px); line-height: .96; }
h3 { margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.7; }

.hero-copy p { max-width: 650px; font-size: 18px; }
.hero-cta, .download-panel, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-btn, .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  font-weight: 950;
}
.primary-btn {
  color: #050509;
  background: linear-gradient(135deg, var(--cyan), var(--green) 46%, var(--gold));
  box-shadow: 0 16px 42px rgba(53, 243, 255, .22);
  padding-right: 8px; /* Room for the size badge */
}
.primary-btn small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 30px;
  padding: 0 6px;
  border-radius: 6px;
  background: rgba(5, 5, 9, 0.15);
  color: #050509;
  font-weight: 800;
  font-size: 11px;
  border-left: 1px solid rgba(5, 5, 9, 0.1);
}
.ghost-btn {
  min-width: 116px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .08);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin-top: 24px;
}
/* ===== Shared 3D Card Hover System ===== */
.stats-strip div, .download-panel, .feature-card, .top-user-card, .rating-form, .review-card, .contact-panel, .step-card, .ad-shell {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.stats-strip div::before,
.download-panel::before,
.feature-card::before,
.top-user-card::before,
.rating-form::before,
.review-card::before,
.contact-panel::before,
.step-card::before,
.ad-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(53,243,255,.24), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.08), transparent 42%, rgba(255,78,205,.07));
  opacity: 0;
  transition: opacity .22s ease;
}
.stats-strip div::after,
.download-panel::after,
.feature-card::after,
.top-user-card::after,
.rating-form::after,
.review-card::after,
.contact-panel::after,
.step-card::after,
.ad-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(53,243,255,.78), transparent 34%, rgba(255,78,205,.52), transparent 70%, rgba(255,206,58,.48)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.interactive-3d {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.interactive-3d:hover,
.interactive-3d:focus-within {
  border-color: rgba(53,243,255,.34);
  box-shadow: 0 28px 74px rgba(0,0,0,.42), 0 0 34px rgba(53,243,255,.16), inset 0 1px rgba(255,255,255,.12);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px);
}
.interactive-3d:hover::before,
.interactive-3d:focus-within::before,
.interactive-3d:hover::after,
.interactive-3d:focus-within::after {
  opacity: 1;
}
.interactive-3d.clicked {
  animation: cardClick .42s ease;
}
.stats-strip div { padding: 14px; }
.stats-strip strong { display: block; font-size: 22px; }
.stats-strip span { color: var(--muted); font-size: 12px; }

/* ===== Hero 3D Phone Preview ===== */
.phone-stage {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.orbit-ring {
  position: absolute;
  width: min(80vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(53, 243, 255, .25);
  border-radius: 50%;
  transform: rotateX(72deg);
  box-shadow: 0 0 44px rgba(53,243,255,.18);
  animation: spin 18s linear infinite;
}
.phone-3d {
  width: min(76vw, 315px);
  aspect-ratio: 9 / 18.4;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255,255,255,.2), rgba(255,255,255,.04));
  box-shadow: 0 35px 80px rgba(0,0,0,.55), 0 0 42px rgba(255,78,205,.22);
  transform: rotateY(-14deg) rotateX(8deg);
  animation: phoneFloat 5s ease-in-out infinite;
}
.phone-top {
  width: 84px;
  height: 20px;
  margin: 0 auto -10px;
  border-radius: 0 0 14px 14px;
  background: #050509;
  position: relative;
  z-index: 2;
}
.screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #080812;
}
.slider {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slider img {
  flex: 0 0 100%;
  width: 100%;
  object-fit: cover;
  opacity: .72;
}
.screen-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(53,243,255,.12), transparent 36%, rgba(255,78,205,.22));
}
.screen-card {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(5,5,9,.76);
}
.screen-card span { color: var(--cyan); font-size: 12px; font-weight: 900; }
.screen-card strong { display: block; margin-top: 4px; }
.floating-chip {
  position: absolute;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  font-weight: 950;
  box-shadow: 0 0 28px rgba(53,243,255,.18);
  animation: floating 3.8s ease-in-out infinite;
}
.chip-one { left: 2%; top: 20%; }
.chip-two { right: 0; top: 36%; animation-delay: -1s; }
.chip-three { left: 12%; bottom: 18%; animation-delay: -2s; color: var(--green); }

/* ===== Section Headings And Download Panel ===== */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 24px;
}

.download-panel {
  display: grid;
  grid-template-columns: 1fr auto auto;
  padding: 22px;
}
.progress-wrap {
  width: min(520px, 100%);
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}
.progress-wrap span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--gold));
  transition: width .45s ease;
}

/* ===== Feature Cards ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.feature-card, .step-card { padding: 24px; transform: translateZ(0); }
.feature-card:hover, .top-user-card:hover, .step-card:hover { border-color: rgba(53,243,255,.38); }
.feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  color: #050509;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  box-shadow: 0 0 20px rgba(53,243,255,.2);
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.feat-num {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  border: 1px solid var(--cyan);
}

.steps {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 8px 0 10px;
  scroll-snap-type: x mandatory;
}
.steps::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 58px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(53,243,255,.55), rgba(255,78,205,.42), rgba(255,206,58,.5), transparent);
  opacity: .75;
}
/* ===== Ads Slider ===== */
.ad-shell {
  position: relative;
  overflow: hidden;
}
.ad-track {
  display: flex;
  transition: transform .45s ease;
}
.ad-card {
  position: relative;
  flex: 0 0 100%;
  min-height: 260px;
  overflow: hidden;
}
.ad-card img, .ad-card video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  opacity: .72;
}
.ad-card span {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 5px;
  font-size: 15px;
  color: var(--muted);
}
.ad-card strong { color: var(--text); font-size: clamp(24px, 5vw, 46px); }
.ad-controls {
  position: absolute;
  right: 16px;
  top: 16px;
  display: flex;
  gap: 8px;
}
.ad-controls button, .modal-close {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(5,5,9,.64);
}

/* ===== Top Users And Profile Modal ===== */
.top-users-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.top-user-card {
  min-height: 280px;
  padding: 18px;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.rank-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  min-width: 42px;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 8px;
  color: #050509;
  background: linear-gradient(135deg, var(--gold), var(--green));
  font-weight: 950;
}
.avatar-wrap {
  position: relative;
  display: inline-flex;
  margin-bottom: 16px;
}
.avatar-wrap img {
  width: 92px;
  height: 92px;
  border: 2px solid rgba(53,243,255,.36);
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 0 26px rgba(53,243,255,.18);
}
.verified-badge,
.monetized-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
}
.verified-badge {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  color: #050509;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 0 18px rgba(53,243,255,.28);
}
.verified-badge.inline {
  position: static;
  transform: none;
}
.monetized-pill {
  margin-top: 10px;
  color: #050509;
  background: linear-gradient(135deg, var(--gold), #ffffff);
}
.monetized-pill.inline {
  margin-top: 0;
}
.top-user-name,
.top-user-username,
.top-user-followers {
  display: block;
}
.top-user-name {
  margin-top: 6px;
  font-size: 22px;
  font-weight: 950;
}
.top-user-username {
  margin-top: 4px;
  color: var(--cyan);
  font-weight: 800;
}
.top-user-followers {
  margin-top: 12px;
  color: var(--muted);
}
.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}
.user-modal {
  width: min(760px, calc(100% - 24px));
  transform-style: preserve-3d;
  animation: modalPop .28s ease both;
}
.user-detail-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.user-detail-head img {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  object-fit: cover;
  border: 2px solid rgba(53,243,255,.34);
}
.user-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.user-title-row h3 {
  margin: 0;
  font-size: clamp(26px, 5vw, 42px);
}
.user-detail-head p,
.user-bio {
  margin: 6px 0 0;
}
.user-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.user-stat-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.user-stat-grid strong,
.user-stat-grid span {
  display: block;
}
.user-stat-grid strong {
  font-size: 24px;
}
.user-stat-grid span,
.user-links span {
  color: var(--muted);
  font-size: 13px;
}
.user-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}
.user-links h4 {
  flex: 0 0 100%;
  margin: 0 0 4px;
}
.user-links .social-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
}
.user-links .social-icon svg {
  width: 24px;
  height: 24px;
}

/* ===== APK Install Guide Cards ===== */
.steps { grid-auto-columns: minmax(190px, 1fr); }
.step-card {
  min-height: 245px;
  display: grid;
  align-content: start;
  gap: 12px;
  scroll-snap-align: start;
}
.step-card .step-number {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  margin: 0;
  color: rgba(255,206,58,.38);
  font-size: 32px;
  line-height: 1;
  font-weight: 950;
}
.step-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 8px;
  border: 1px solid rgba(53,243,255,.28);
  border-radius: 18px;
  color: #050509;
  background: linear-gradient(135deg, var(--cyan), #9df7ff 42%, var(--pink));
  box-shadow: 0 0 30px rgba(53,243,255,.18), inset 0 1px rgba(255,255,255,.44);
  animation: stepFloat 3.2s ease-in-out infinite;
}
.step-card:nth-child(2n) .step-icon { animation-delay: -.7s; }
.step-card:nth-child(3n) .step-icon { animation-delay: -1.4s; }
.step-icon::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 22px;
  border: 1px solid rgba(53,243,255,.22);
  animation: stepPulse 2.6s ease-in-out infinite;
}
.step-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.step-card h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.15;
}
.step-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

/* ===== Ratings, Reviews, Likes, Dislikes ===== */
.rating-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  align-items: start;
  gap: 16px;
}
.rating-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  align-content: start;
  align-self: start;
}
.score-card strong { display: block; font-size: 54px; line-height: 1; }
.score-card span { color: var(--muted); }
.rating-inputs {
  display: grid;
  gap: 12px;
}
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  color: var(--text);
  background: rgba(255,255,255,.07);
  outline: none;
}
textarea { min-height: 86px; resize: vertical; }
.stars { display: flex; gap: 6px; }
.star {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}
.star.active { color: var(--gold); text-shadow: 0 0 18px rgba(255,206,58,.8); }
.form-note { min-height: 22px; margin: 0; font-size: 13px; }
.review-panel {
  display: grid;
  gap: 12px;
  align-content: start;
}
.review-feed { display: grid; gap: 10px; align-content: start; }
.review-card { padding: 14px 16px; }
.review-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.review-head strong { font-size: 16px; }
.review-stars {
  display: inline-flex;
  gap: 1px;
  color: rgba(255,255,255,.22);
}
.review-stars .filled { color: var(--gold); text-shadow: 0 0 14px rgba(255,206,58,.55); }
.review-card p { margin: 8px 0 12px; color: var(--muted); }
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.review-reaction {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255,255,255,.05);
  font-size: 13px;
  font-weight: 900;
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}
.review-like span {
  color: var(--pink);
}
.review-dislike span {
  color: var(--cyan);
}
.review-reaction:hover {
  transform: translateY(-2px);
  border-color: rgba(255,78,205,.4);
  color: var(--text);
}
.review-like.liked {
  color: var(--text);
  background: rgba(255,78,205,.12);
}
.review-dislike.disliked {
  color: var(--text);
  background: rgba(53,243,255,.12);
}
.review-toggle {
  justify-self: center;
  min-width: 190px;
}

/* ===== Contact, Support Email, And Social Icons ===== */
.contact-panel {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
}
.support-email {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(53,243,255,.12);
  color: var(--cyan);
  font-weight: 900;
}
.social-row { display: flex; flex-wrap: wrap; gap: 10px; }
.social-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255,255,255,.42), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.06));
  color: #fff;
  box-shadow: inset 0 1px rgba(255,255,255,.18), 0 12px 28px rgba(0,0,0,.28);
  transform-style: preserve-3d;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, filter .22s ease;
  animation: socialFloat 3.4s ease-in-out infinite;
}
.social-icon:nth-child(2n) { animation-delay: -.8s; }
.social-icon:nth-child(3n) { animation-delay: -1.5s; }
.social-icon::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,.34), transparent 65%);
  transform: translateX(-70%) rotate(18deg);
  transition: transform .5s ease;
}
.social-icon span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.social-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.35));
}
.social-icon svg rect,
.social-icon svg circle,
.social-icon svg path {
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.social-icon svg path,
.social-icon svg rect,
.social-icon svg circle {
  fill: none;
}
.social-icon .cutout {
  fill: rgba(255,255,255,.92);
  stroke: rgba(255,255,255,.92);
}
.social-facebook {
  background: linear-gradient(145deg, #1877f2, #0b45b8);
  box-shadow: 0 0 26px rgba(24,119,242,.28), inset 0 1px rgba(255,255,255,.22);
}
.social-facebook svg path:first-child,
.social-twitter svg path,
.social-telegram svg path,
.social-youtube svg .youtube-screen {
  fill: currentColor;
  stroke: currentColor;
}
.social-youtube svg .youtube-play {
  fill: #fff;
  stroke: #fff;
}
.social-instagram {
  background: radial-gradient(circle at 30% 105%, #feda75 0 18%, #fa7e1e 34%, #d62976 55%, #962fbf 76%, #4f5bd5 100%);
  box-shadow: 0 0 30px rgba(214,41,118,.32), inset 0 1px rgba(255,255,255,.22);
}
.social-whatsapp {
  background: linear-gradient(145deg, #25d366, #128c7e);
  box-shadow: 0 0 28px rgba(37,211,102,.28), inset 0 1px rgba(255,255,255,.22);
}
.social-youtube {
  background: linear-gradient(145deg, #ff0033, #b90020);
  box-shadow: 0 0 28px rgba(255,0,51,.3), inset 0 1px rgba(255,255,255,.22);
}
.social-telegram {
  background: linear-gradient(145deg, #2aabee, #1976d2);
  box-shadow: 0 0 28px rgba(42,171,238,.28), inset 0 1px rgba(255,255,255,.22);
}
.social-discord {
  background: linear-gradient(145deg, #5865f2, #3a42b6);
  box-shadow: 0 0 28px rgba(88,101,242,.3), inset 0 1px rgba(255,255,255,.22);
}
.social-discord svg path:first-child { fill: currentColor; stroke: currentColor; }
.social-github {
  background: linear-gradient(145deg, #24292f, #050505);
  box-shadow: 0 0 28px rgba(255,255,255,.16), inset 0 1px rgba(255,255,255,.2);
}
.social-github svg path {
  fill: currentColor;
  stroke: currentColor;
}
.social-twitter {
  background: linear-gradient(145deg, #171717, #050505);
  box-shadow: 0 0 28px rgba(255,255,255,.15), inset 0 1px rgba(255,255,255,.2);
}
.social-website,
.social-link {
  background: linear-gradient(145deg, #35f3ff, #5dff9b);
  color: #041017;
  box-shadow: 0 0 28px rgba(53,243,255,.26), inset 0 1px rgba(255,255,255,.25);
}
.social-icon:hover {
  transform: translateY(-6px) rotateX(14deg) rotateY(-8deg) scale(1.06);
  border-color: rgba(255,255,255,.38);
  box-shadow: 0 0 28px rgba(53,243,255,.2), 0 18px 34px rgba(0,0,0,.38);
  filter: saturate(1.18);
}
.social-icon:hover::before {
  transform: translateX(72%) rotate(18deg);
}
.social-icon:active {
  transform: translateY(-2px) scale(.94);
}

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

/* ===== Footer ===== */
.footer {
  position: relative;
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto 18px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53,243,255,.1), rgba(255,78,205,.08), rgba(255,206,58,.06)),
    rgba(7, 9, 16, .86);
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--gold));
  opacity: .9;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(4, minmax(130px, .7fr));
  gap: 24px;
  padding: 28px;
}
.footer-brand {
  align-items: flex-start;
  flex-wrap: nowrap;
  letter-spacing: .03em;
}
.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(53,243,255,.16);
}
.footer-brand strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}
.footer-brand p {
  max-width: 360px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.footer-column h3 {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 9px;
  color: var(--muted);
}
.footer-links a {
  width: max-content;
  transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover {
  color: var(--text);
  transform: translateX(4px);
}
.footer-community .social-row {
  justify-content: flex-start;
}
.footer-support {
  min-width: 0;
}
.footer-support p {
  max-width: 220px;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.footer-email {
  max-width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.support-muted {
  display: inline-flex;
  color: var(--muted);
  font-size: 13px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  background: rgba(0, 0, 0, .18);
}
.footer-bottom a {
  color: var(--gold);
  font-weight: 900;
}

/* ===== Modals: Generic, Install Guide, Update, User Detail ===== */
.modal {
  width: min(520px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  color: var(--text);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.modal::backdrop { background: rgba(0,0,0,.62); }
.modal-close { float: right; }
.modal li { margin: 10px 0; color: var(--muted); }

.cookie-banner {
  position: fixed;
  z-index: 50;
  right: max(18px, calc((100vw - 1180px) / 2));
  bottom: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  width: min(680px, calc(100vw - 36px));
  padding: 20px;
  border: 1px solid rgba(89, 238, 255, .3);
  border-radius: 18px;
  background: rgba(8, 10, 19, .96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .48), 0 0 30px rgba(44, 220, 255, .1);
  backdrop-filter: blur(18px);
}
.cookie-banner[hidden] { display: none; }
.cookie-kicker { display: block; color: var(--cyan); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.cookie-copy h2 { margin: 5px 0 7px; font-size: 22px; }
.cookie-copy p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.cookie-copy a { display: inline-block; margin-top: 9px; color: var(--cyan); font-size: 13px; }
.cookie-actions { display: flex; align-items: center; gap: 9px; }
.cookie-actions .primary-btn, .cookie-actions .ghost-btn { min-width: max-content; min-height: 42px; padding: 0 14px; }

.install-modal {
  width: min(760px, calc(100% - 24px));
  padding: 0;
  overflow: hidden;
  border-color: rgba(53,243,255,.22);
  background:
    radial-gradient(circle at 18% 10%, rgba(53,243,255,.18), transparent 30%),
    radial-gradient(circle at 82% 0%, rgba(255,78,205,.14), transparent 32%),
    rgba(10, 13, 24, .96);
  animation: modalPop .28s ease both;
}
.install-modal .modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  float: none;
  z-index: 2;
}
.install-modal-head {
  padding: 28px 72px 18px 28px;
}
.install-modal-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  margin-bottom: 12px;
  border: 1px solid rgba(53,243,255,.28);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(53,243,255,.08);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.install-modal h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}
.install-modal-head p,
.install-mini-step p,
.install-modal-note {
  color: var(--muted);
}
.install-modal-head p {
  max-width: 600px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}
.install-modal-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0 20px 20px;
}
.install-mini-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  min-height: 126px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    rgba(8, 11, 21, .82);
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 16px 34px rgba(0,0,0,.22);
  transform: translateY(10px);
  opacity: 0;
  animation: miniStepIn .45s ease forwards;
}
.install-mini-step:nth-child(2) { animation-delay: .07s; }
.install-mini-step:nth-child(3) { animation-delay: .14s; }
.install-mini-step:nth-child(4) { animation-delay: .21s; }
.install-mini-step::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--pink), var(--gold));
  opacity: .55;
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .25s ease, opacity .25s ease;
}
.install-mini-step:hover {
  transform: translateY(-4px) rotateX(4deg);
  border-color: rgba(53,243,255,.28);
  box-shadow: 0 22px 44px rgba(0,0,0,.32), 0 0 26px rgba(53,243,255,.12);
}
.install-mini-step:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.mini-step-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  color: #041017;
  background: linear-gradient(135deg, var(--cyan), #a8b6ff 48%, var(--pink));
  box-shadow: 0 0 26px rgba(53,243,255,.18);
  animation: miniIconFloat 2.8s ease-in-out infinite;
}
.install-mini-step:nth-child(2n) .mini-step-icon { animation-delay: -.8s; }
.mini-step-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.install-mini-step strong {
  display: block;
  margin: 2px 0 6px;
  font-size: 18px;
}
.install-mini-step p {
  margin: 0;
  line-height: 1.45;
  font-size: 14px;
}
.install-modal-note {
  margin: 0;
  padding: 14px 28px 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.18);
  font-size: 13px;
}

/* ===== Scroll Reveal Utility ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Legal Pages: Privacy And Terms ===== */
.legal {
  min-height: 100vh;
  overflow-x: hidden;
}
.legal-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(53,243,255,.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(255,78,205,.14), transparent 30%),
    linear-gradient(180deg, #050509, #070811 52%, #050509);
}
.legal-bg::before {
  content: "";
  position: absolute;
  inset: 44% -18% -12%;
  transform: perspective(760px) rotateX(62deg);
  background-image:
    linear-gradient(rgba(53,243,255,.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(transparent, black 28%, transparent 82%);
}
.legal-bg span {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .28;
  animation: legalOrb 9s ease-in-out infinite alternate;
}
.legal-bg span:nth-child(1) { left: 8%; top: 12%; background: var(--cyan); }
.legal-bg span:nth-child(2) { right: 10%; top: 20%; background: var(--pink); animation-delay: -2s; }
.legal-bg span:nth-child(3) { left: 42%; bottom: 4%; background: var(--gold); animation-delay: -4s; }
.legal-shell {
  width: min(1100px, calc(100% - 28px));
  margin: 0 auto;
  padding: 24px 0 70px;
}
.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(7, 10, 18, .72);
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
  animation: legalDrop .45s ease both;
}
.legal-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: .08em;
}
.legal-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(53,243,255,.28);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(53,243,255,.18), rgba(255,78,205,.12)),
    rgba(255,255,255,.04);
  box-shadow: inset 0 1px rgba(255,255,255,.14), 0 14px 30px rgba(0,0,0,.28);
  font-weight: 900;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.legal-back span {
  font-size: 26px;
  line-height: 1;
}
.legal-back:hover {
  transform: translateY(-3px) rotateX(8deg);
  border-color: rgba(53,243,255,.48);
  box-shadow: 0 0 28px rgba(53,243,255,.16), 0 18px 34px rgba(0,0,0,.35);
}
.legal-hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(53,243,255,.18), transparent 24%),
    linear-gradient(135deg, rgba(12,16,28,.92), rgba(13,7,22,.9));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.08);
  animation: legalRise .55s ease .05s both;
}
.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 34%, rgba(255,255,255,.08), transparent 62%);
  transform: translateX(-100%);
  animation: legalSweep 4.8s ease-in-out infinite;
}
.legal-kicker {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(53,243,255,.3);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(53,243,255,.08);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.legal-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 0 18px;
  font-size: clamp(52px, 9vw, 128px);
  line-height: .92;
}
.legal-hero p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  color: #c7d3ff;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}
.legal-grid article,
.legal-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(12, 16, 28, .78);
  box-shadow: inset 0 1px rgba(255,255,255,.07), 0 18px 42px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
}
.legal-grid article {
  padding: 20px;
  animation: legalRise .55s ease both;
}
.legal-grid article:nth-child(2) { animation-delay: .08s; }
.legal-grid article:nth-child(3) { animation-delay: .16s; }
.legal-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
.legal-grid p,
.legal-card p {
  color: var(--muted);
  line-height: 1.65;
}
.legal-hero a,
.legal-card a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-hero a:hover,
.legal-card a:hover { color: #fff; }
.guideline-document {
  overflow-wrap: anywhere;
  padding: clamp(24px, 5vw, 52px);
}
.guideline-document-meta {
  margin: 0 0 7px;
  color: #e8edff !important;
  font-weight: 650;
}
.guideline-document-meta:first-child {
  color: var(--cyan) !important;
  font-size: 20px;
  letter-spacing: .04em;
}
.guideline-section-title {
  margin: 34px 0 12px;
  padding: 12px 14px;
  border-left: 3px solid var(--cyan);
  border-radius: 0 10px 10px 0;
  background: linear-gradient(90deg, rgba(80,238,255,.11), transparent);
  color: #fff;
  font-size: clamp(20px, 2.5vw, 27px);
  line-height: 1.3;
}
.guideline-paragraph {
  margin: 0 0 12px;
  color: var(--muted) !important;
  font-size: 15px;
  line-height: 1.78;
}
.guideline-list {
  display: grid;
  gap: 9px;
  margin: 4px 0 18px;
  padding: 16px 18px 16px 38px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  background: rgba(255,255,255,.025);
  color: var(--muted);
  line-height: 1.7;
}
.guideline-list li::marker { color: var(--cyan); }
.guideline-document a { font-weight: 700; }
.monetisation-document::before {
  content: "Creator monetisation";
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 15px;
  padding: 0 11px;
  border: 1px solid rgba(255, 185, 74, .35);
  border-radius: 999px;
  background: rgba(255, 185, 74, .08);
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.monetisation-document .guideline-section-title { border-left-color: var(--gold); background: linear-gradient(90deg, rgba(255,185,74,.12), transparent); }
.monetisation-document .guideline-list li::marker { color: var(--gold); }
.privacy-document::before {
  content: "Data transparency";
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 15px;
  padding: 0 11px;
  border: 1px solid rgba(80,238,255,.3);
  border-radius: 999px;
  background: rgba(80,238,255,.08);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.privacy-document .guideline-section-title { border-left-color: var(--cyan); background: linear-gradient(90deg, rgba(80,238,255,.11), transparent); }
.terms-document::before {
  content: "Player agreement";
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 15px;
  padding: 0 11px;
  border: 1px solid rgba(255, 91, 165, .32);
  border-radius: 999px;
  background: rgba(255, 91, 165, .08);
  color: var(--pink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.terms-document .guideline-section-title { border-left-color: var(--pink); background: linear-gradient(90deg, rgba(255,91,165,.1), transparent); }
.terms-document .guideline-list li::marker { color: var(--pink); }
.cookies-full-document::before {
  content: "Cookie & storage details";
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 15px;
  padding: 0 11px;
  border: 1px solid rgba(80,238,255,.3);
  border-radius: 999px;
  background: rgba(80,238,255,.08);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cookies-full-document .guideline-section-title { border-left-color: var(--cyan); background: linear-gradient(90deg, rgba(80,238,255,.11), transparent); }

/* Legal-page brand: a clearer, more intentional home link in every policy header. */
.legal-topbar { padding: 14px 16px; }
.legal-brand {
  position: relative;
  gap: 13px;
  min-height: 52px;
  padding: 4px 12px 4px 4px;
  border-radius: 12px;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  transition: background .22s ease, transform .22s ease;
}
.legal-brand::after {
  content: "Official website";
  position: absolute;
  left: 68px;
  bottom: 2px;
  color: var(--cyan);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  opacity: .78;
}
.legal-brand img {
  width: 50px;
  height: 50px;
  padding: 3px;
  border: 1px solid rgba(80,238,255,.28);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(80,238,255,.13), rgba(255,91,165,.1));
  box-shadow: 0 0 18px rgba(80,238,255,.12);
}
.legal-brand span {
  padding-bottom: 9px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 950;
  letter-spacing: .12em;
  text-shadow: 0 0 22px rgba(80,238,255,.2);
}
.legal-brand small {
  align-self: flex-end;
  margin: 0 0 8px -5px;
  padding-left: 10px;
  border-left: 1px solid rgba(255,255,255,.2);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.legal-brand:hover { background: rgba(80,238,255,.06); transform: translateY(-1px); }
@media (max-width: 640px) {
  .legal-topbar { padding: 9px; }
  .legal-brand { gap: 9px; min-height: 44px; padding: 3px 8px 3px 3px; }
  .legal-brand img { width: 42px; height: 42px; border-radius: 10px; }
  .legal-brand span { display: block; padding-bottom: 7px; font-size: 14px; letter-spacing: .08em; }
  .legal-brand small { display: none; }
  .legal-brand::after { left: 56px; bottom: 1px; font-size: 7px; }
}
.cookies-hero::after { background: linear-gradient(100deg, transparent, rgba(110, 131, 255, .2), transparent); }
.cookies-document {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 5vw, 46px);
}
.cookies-document::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--cyan), #7b6dff, var(--pink));
}
.policy-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 13px;
  padding: 0 11px;
  border: 1px solid rgba(80,238,255,.3);
  border-radius: 999px;
  background: rgba(80,238,255,.08);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.cookies-document h2 {
  position: relative;
  margin: 30px 0 10px;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 10px;
  background: rgba(255,255,255,.025);
  color: #fff;
  font-size: clamp(20px, 2.4vw, 26px);
}
.cookies-document .policy-status + h2 { margin-top: 0; }
.cookies-document p {
  position: relative;
  max-width: 900px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
}
.legal-card {
  padding: clamp(22px, 4vw, 34px);
  animation: legalRise .55s ease .18s both;
}
.legal-card h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 32px);
}
.legal-card p + h2 {
  margin-top: 28px;
}
.legal-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.legal-page-nav a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  transition: .2s ease;
}
.legal-page-nav a:hover, .legal-page-nav a[aria-current="page"] { border-color: var(--cyan); color: var(--cyan); background: rgba(80, 238, 255, .08); }

/* ===== Animations ===== */
@keyframes drift { to { transform: translate3d(8vmax, -5vmax, 0) scale(1.12); } }
@keyframes legalOrb { to { transform: translate3d(26px, -18px, 0) scale(1.08); } }
@keyframes legalDrop {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes legalRise {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes legalSweep {
  0%, 45% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(100%); }
}
@keyframes alertToastIn {
  from { opacity: 0; transform: translate3d(18px, -14px, 0) scale(.96); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes alertGlow {
  50% { box-shadow: 0 18px 46px rgba(0,0,0,.42), 0 0 34px rgba(255,78,205,.18), inset 0 1px rgba(255,255,255,.16); }
}
@keyframes pulse { 50% { box-shadow: 0 0 34px rgba(53,243,255,.32); } }
@keyframes floating { 50% { transform: translateY(-8px); } }
@keyframes bounce { 50% { transform: translateY(-5px) scale(1.03); } }
@keyframes rotate3d { 50% { transform: rotateY(10deg) translateY(-4px); } }
@keyframes clickPop { 50% { transform: scale(.94); } }
@keyframes headerClick {
  0% { transform: translateY(-3px) rotateX(12deg) scale(1); }
  45% { transform: translateY(2px) rotateX(0) scale(.94); }
  100% { transform: translateY(-3px) rotateX(10deg) scale(1); }
}
@keyframes headerRipple {
  0% { opacity: .8; transform: scale(.2); }
  100% { opacity: 0; transform: scale(1.8); }
}
@keyframes cardClick {
  0% { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px) scale(1); }
  45% { transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateY(-2px) scale(.97); }
  100% { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-8px) scale(1); }
}
@keyframes modalPop {
  from { opacity: 0; transform: perspective(900px) rotateX(10deg) translateY(18px) scale(.96); }
  to { opacity: 1; transform: perspective(900px) rotateX(0deg) translateY(0) scale(1); }
}
@keyframes miniStepIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes miniIconFloat {
  50% { transform: translateY(-5px) rotateX(10deg) rotateY(-8deg); }
}
@keyframes stepFloat {
  50% { transform: translateY(-7px) rotateX(10deg) rotateY(-8deg); }
}
@keyframes stepPulse {
  0%, 100% { opacity: .2; transform: scale(.92); }
  50% { opacity: .9; transform: scale(1.08); }
}
@keyframes spin { to { transform: rotateX(72deg) rotateZ(360deg); } }
@keyframes phoneFloat { 50% { transform: rotateY(-8deg) rotateX(5deg) translateY(-12px); } }

/* ===== Tablet Responsive Layout ===== */
@media (max-width: 980px) {
  .alert-bar {
    top: 82px;
    right: 8px;
    left: 8px;
    width: auto;
  }
  .header { grid-template-columns: auto 1fr auto; }
  .hamburger { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5,5,9,.92);
  }
  .nav.open { display: flex; }
  .nav a { padding: 11px; }
  .hero { grid-template-columns: 1fr; padding-top: 56px; }
  .phone-stage { min-height: 520px; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .download-panel, .rating-layout, .contact-panel { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .contact-panel { display: grid; }
  .legal-grid { grid-template-columns: 1fr; }
  .legal-hero { min-height: auto; }
}

/* ===== Mobile Responsive Layout ===== */
@media (max-width: 640px) {
  .legal-shell {
    width: calc(100% - 18px);
    padding: 12px 0 38px;
  }
  .legal-topbar {
    margin-bottom: 12px;
    padding: 8px;
  }
  .legal-brand span {
    font-size: 13px;
  }
  .legal-brand img {
    width: 34px;
    height: 34px;
  }
  .legal-back {
    min-height: 36px;
    padding: 0 11px;
    font-size: 13px;
  }
  .legal-hero {
    padding: 22px 16px;
  }
  .legal-hero h1 {
    font-size: clamp(42px, 16vw, 70px);
  }
  .legal-hero p {
    font-size: 15px;
    line-height: 1.55;
  }
  .legal-grid {
    gap: 10px;
    margin: 12px 0;
  }
  .legal-grid article,
  .legal-card {
    padding: 16px;
  }
  .legal-grid strong {
    font-size: 16px;
  }
  .legal-grid p,
  .legal-card p {
    font-size: 13px;
    line-height: 1.55;
  }
  .legal-card h2 {
    font-size: 20px;
  }
  .legal-page-nav { gap: 6px; }
  .legal-page-nav a { padding: 7px 9px; font-size: 11px; }
  .cookie-banner { right: 9px; bottom: 9px; grid-template-columns: 1fr; gap: 14px; width: calc(100vw - 18px); padding: 16px; }
  .cookie-copy h2 { font-size: 20px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .primary-btn, .cookie-actions .ghost-btn { flex: 1; min-width: 0; padding: 0 10px; }
  .alert-bar {
    top: 96px;
    min-height: 44px;
    padding: 10px 12px;
    font-size: 13px;
  }
  .alert-bar::before {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }
  .header {
    width: calc(100% - 16px);
    gap: 10px;
  }
  .brand span { display: none; }
  .download-pill { display: none; }
  .dynamic-buttons { max-width: calc(100vw - 140px); }
  .section { width: calc(100% - 18px); padding: 64px 0; }
  .hero { min-height: auto; gap: 10px; }
  .hero-copy p { font-size: 16px; }
  .hero-cta > * { flex: 1 1 140px; min-height: 48px; }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .stats-strip div:last-child {
    grid-column: 1 / -1;
  }
  .stats-strip div {
    min-width: 0;
    padding: 12px 10px;
  }
  .stats-strip strong {
    font-size: 16px;
    line-height: 1.1;
    overflow-wrap: break-word;
  }
  .stats-strip span {
    font-size: 10px;
    line-height: 1.2;
  }
  .phone-stage { min-height: 470px; }
  .top-users-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .top-user-card {
    min-height: 150px;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: center;
    padding: 14px;
  }
  .top-user-card .rank-badge {
    top: 10px;
    right: 10px;
  }
  .avatar-wrap {
    grid-row: span 4;
    margin-bottom: 0;
  }
  .avatar-wrap img {
    width: 74px;
    height: 74px;
    border-radius: 16px;
  }
  .top-user-name {
    margin-top: 0;
    padding-right: 48px;
    font-size: 18px;
  }
  .top-user-username,
  .top-user-followers {
    margin-top: 2px;
    font-size: 13px;
  }
  .monetized-pill {
    margin-top: 6px;
  }
  .user-detail-head {
    grid-template-columns: 1fr;
  }
  .user-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .feature-card {
    min-height: auto;
    padding: 16px;
  }
  .feature-card:first-child {
    grid-column: span 1;
    min-height: auto;
  }
  .feature-card:nth-child(4n + 2),
  .feature-card:nth-child(4n + 5) {
    min-height: auto;
  }
  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }
  .feature-card h3 {
    margin-bottom: 6px;
    font-size: 16px;
  }
  .feature-card p {
    font-size: 13px;
  }
  .section-head { display: block; }
  .ratings-section .section-head h2 {
    font-size: clamp(36px, 12vw, 52px);
    line-height: 1;
  }
  .rating-form {
    gap: 10px;
    padding: 14px;
  }
  .score-card strong {
    font-size: 48px;
  }
  .rating-inputs {
    gap: 10px;
  }
  .stars {
    gap: 5px;
  }
  .star {
    width: 35px;
    height: 35px;
  }
  textarea {
    min-height: 76px;
  }
  .review-card {
    padding: 12px;
  }
  .review-head strong {
    font-size: 15px;
  }
  .review-card p {
    margin: 7px 0 10px;
    font-size: 13px;
    line-height: 1.45;
  }
  .review-reaction {
    min-height: 30px;
    font-size: 12px;
  }
  .review-toggle {
    width: 100%;
    min-width: 0;
  }
  .download-panel { padding: 16px; }
  .steps {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-columns: initial;
    overflow: visible;
    gap: 8px;
    padding-bottom: 0;
  }
  .steps::before { display: none; }
  .step-card {
    min-height: 160px;
    padding: 10px;
    gap: 6px;
  }
  .step-card:first-child {
    grid-column: span 1;
    min-height: 160px;
  }
  .step-card:nth-child(3),
  .step-card:nth-child(5) {
    min-height: 160px;
  }
  .step-card .step-number {
    top: 8px;
    right: 8px;
    font-size: 18px;
  }
  .step-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .step-icon svg {
    width: 22px;
    height: 22px;
  }
  .step-card h3 {
    font-size: 14px;
    line-height: 1.1;
  }
  .step-card p {
    font-size: 10px;
    line-height: 1.3;
  }
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    padding: 14px;
    text-align: left;
  }
  .footer-brand {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column: 1 / -1;
    gap: 9px;
    align-items: center;
  }
  .footer-brand img {
    width: 40px;
    height: 40px;
  }
  .footer-brand strong {
    margin-bottom: 2px;
    font-size: 16px;
  }
  .footer-brand p {
    max-width: none;
    font-size: 11px;
    line-height: 1.3;
  }
  .footer-column h3 {
    margin-bottom: 7px;
    font-size: 10px;
  }
  .footer-links {
    gap: 5px;
    font-size: 12px;
  }
  .footer-support,
  .footer-community {
    grid-column: 1 / -1;
  }
  .footer-community .social-row {
    gap: 7px;
  }
  .footer-community .social-icon {
    width: 33px;
    height: 33px;
    border-radius: 10px;
  }
  .footer-community .social-icon svg {
    width: 18px;
    height: 18px;
  }
  .footer-support p {
    max-width: none;
    margin-bottom: 7px;
    font-size: 11px;
    line-height: 1.35;
  }
  .footer-email {
    width: max-content;
    max-width: 100%;
    min-height: 31px;
    padding: 0 10px;
    font-size: 12px;
    line-height: 1.2;
  }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 9px 14px;
    font-size: 10px;
  }
  .install-modal {
    width: calc(100% - 18px);
    max-height: calc(100dvh - 28px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .install-modal-head {
    padding: 18px 56px 10px 16px;
  }
  .install-modal .modal-close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
  }
  .install-modal-badge {
    min-height: 24px;
    padding: 0 8px;
    margin-bottom: 10px;
    font-size: 10px;
  }
  .install-modal h3 {
    margin-bottom: 8px;
    font-size: clamp(24px, 8vw, 34px);
    line-height: 1.05;
  }
  .install-modal-head p {
    font-size: 14px;
    line-height: 1.45;
  }
  .install-modal-steps {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 10px 10px;
  }
  .install-mini-step {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    min-height: auto;
    padding: 12px;
  }
  .mini-step-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }
  .mini-step-icon svg {
    width: 22px;
    height: 22px;
  }
  .install-mini-step strong {
    margin: 0 0 4px;
    font-size: 15px;
  }
  .install-mini-step p,
  .install-modal-note {
    font-size: 12px;
    line-height: 1.35;
  }
  .install-mini-step::after {
    inset-inline: 12px auto;
    width: 140px;
  }
  .install-modal-note {
    padding: 10px 16px 12px;
  }
}

/* ===== AI & SEO Optimized Sections: Stats, FAQ, Success Stories ===== */
.stats-overview-section {
  padding-bottom: 20px;
}
.methodology-text {
  max-width: 800px;
  margin-bottom: 30px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}
.stats-grid-detailed {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card-detailed {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  text-align: center;
}
.stat-card-detailed strong {
  display: block;
  font-size: 32px;
  color: var(--cyan);
  margin-bottom: 8px;
}
.stat-card-detailed span {
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.success-stories {
  margin-top: 40px;
}
.story-card {
  padding: 30px;
  border: 1px solid rgba(53, 243, 255, 0.2);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(53, 243, 255, 0.05), transparent);
  text-align: center;
}
.story-card p {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
}
.story-card cite {
  font-weight: 800;
  color: var(--gold);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}
.faq-item h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--cyan);
}
.faq-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

@media (max-width: 768px) {
  .stats-grid-detailed { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}

/* ===== Accessibility: Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
