/* ===== Theme Tokens And Global Reset ===== */
:root {
  color-scheme: dark;
  --bg: #06070d;
  --panel: rgba(14, 17, 26, 0.85);
  --panel-strong: rgba(18, 22, 34, 0.95);
  --line: rgba(255, 255, 255, 0.1);
  --line-highlight: rgba(255, 255, 255, 0.22);
  --text: #f8fafc;
  --muted: #94a3b8;
  --cyan: #ffffff;
  --cyan-glow: rgba(255, 255, 255, 0.15);
  --pink: #ff4b2b;
  --gold: #ffb800;
  --green: #10b981;
  --red: #ff3366;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  font-family: 'Plus Jakarta Sans', 'Outfit', system-ui, -apple-system, sans-serif;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  height: 100%;
}
body {
  min-width: 320px;
  min-height: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

body::selection { background: rgba(255, 255, 255, 0.25); color: #fff; }
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 50% 10%, rgba(35, 22, 55, 0.4), transparent 50%),
    radial-gradient(circle at 90% 90%, rgba(20, 25, 45, 0.35), transparent 45%),
    #06070d;
}

#particleCanvas { width: 100%; height: 100%; }
.aurora {
  display: none;
}
.grid-floor {
  position: absolute;
  inset: 45% -20% -10%;
  transform: perspective(700px) rotateX(58deg);
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(transparent, black 25%, transparent 82%);
  opacity: 0.3;
}

/* ===== Header, Navigation, Dynamic Buttons ===== */
.header {
  position: sticky;
  top: 12px;
  z-index: 50;
  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 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 10, 18, 0.85);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
}

/* ===== Realtime Notification Toast Popup (Clean & Inline) ===== */
.alert-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: min(92vw, 560px);
  margin: 14px auto 8px;
  min-height: 38px;
  padding: 6px 14px 6px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .01em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(18, 20, 30, 0.95);
  color: var(--text);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), inset 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.alert-bar.alert-closing {
  opacity: 0;
  transform: translateY(-8px) scale(0.95);
}
.alert-pulse-dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 1.8s ease-in-out infinite;
}
.alert-text {
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.alert-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 2px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 auto;
  transition: all 0.2s ease;
}
.alert-close:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  transform: scale(1.1);
}

.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: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateZ(-1px) scale(.92);
  transition: opacity .22s ease, transform .22s ease;
}
.nav a:hover,
.nav a:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}
.nav a:hover::before,
.nav a:focus-visible::before {
  opacity: 1;
  transform: translateZ(-1px) scale(1);
}

/* ===== Hamburger Menu Button (Icon Only - No Label Cutoff) ===== */
.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  min-height: 38px;
  padding: 0;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.hamburger:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.1);
}
.hamburger-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 17px;
}
.hamburger-bars span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger .menu-label {
  display: none !important;
}

/* ===== Cyber Slide-Out Drawer ===== */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(4, 6, 14, 0.78);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav-drawer.open {
  opacity: 1;
  visibility: visible;
}
.nav-drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 85vw);
  background: linear-gradient(180deg, #090e24 0%, #050714 100%);
  border-left: 1px solid rgba(0, 240, 255, 0.25);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 240, 255, 0.1);
  padding: 22px 18px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.nav-drawer.open .nav-drawer-content {
  transform: translateX(0);
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
}
.drawer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 15px;
  color: #fff;
}
.drawer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}
.drawer-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.drawer-close:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #ef4444;
}
.drawer-section-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin: 12px 0 6px;
}
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.2s ease;
}
.drawer-link:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.25);
  color: #fff;
  transform: translateX(4px);
}
.drawer-footer {
  margin-top: auto;
  padding-top: 18px;
}
.drawer-download-btn {
  width: 100%;
  display: flex;
  justify-content: center;
}

.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, 1.15fr) minmax(320px, 480px);
  align-items: center;
  gap: 40px;
  padding-top: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.28);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #e2e8f0;
  box-shadow: none;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-family: 'Outfit', 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 40%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
h2 { margin-bottom: 0; font-family: 'Outfit', sans-serif; font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; }
h3 { margin-bottom: 10px; font-weight: 700; }
p { color: var(--muted); line-height: 1.7; font-size: 16px; }

.hero-copy p { max-width: 600px; font-size: 17px; line-height: 1.65; color: #cbd5e1; }
.hero-cta, .download-panel, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.primary-btn, .ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  font-weight: 800;
  border-radius: 12px;
  font-size: 15px;
  min-height: 48px;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
}
.primary-btn {
  color: #ffffff;
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  box-shadow: 0 8px 24px rgba(255, 75, 43, 0.35), inset 0 1px rgba(255,255,255,.3);
  padding-right: 8px; /* Room for size pill */
}
.primary-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 32px rgba(255, 75, 43, 0.5), inset 0 1px rgba(255,255,255,.45);
}
.primary-btn small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 32px;
  padding: 0 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  color: #ffffff;
  font-weight: 800;
  font-size: 11px;
}
.ghost-btn {
  min-width: 120px;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(12px);
}
.ghost-btn:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 26px;
}
.stats-strip div {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(18, 22, 34, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.stats-strip strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.stats-strip span {
  display: block;
  color: #94a3b8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
  font-weight: 600;
}

/* ===== 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: 14px;
  background: var(--panel);
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
}
.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(0, 240, 255, .2), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 42%, rgba(255,0,122,.06));
  opacity: 0;
  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(0, 240, 255, .34);
  box-shadow: 0 24px 60px rgba(0,0,0,.45), 0 0 30px rgba(0, 240, 255, .14), inset 0 1px rgba(255,255,255,.14);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-4px);
}
.interactive-3d:hover::before,
.interactive-3d:focus-within::before {
  opacity: 1;
}

/* ===== Hero 3D Phone Preview ===== */
.phone-stage {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}
.orbit-ring {
  position: absolute;
  width: min(85vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(0, 240, 255, .2);
  border-radius: 50%;
  transform: rotateX(72deg);
  box-shadow: 0 0 50px rgba(0, 240, 255, .15);
  animation: spin 20s linear infinite;
}
.phone-3d {
  width: min(80vw, 305px);
  aspect-ratio: 9 / 18.5;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(30, 36, 60, 0.8), rgba(12, 15, 28, 0.95));
  box-shadow: 0 35px 80px rgba(0,0,0,.65), 0 0 45px rgba(0, 240, 255, .18);
  transform: rotateY(-10deg) rotateX(6deg);
  animation: phoneFloat 5s ease-in-out infinite;
}
.phone-top {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 86px;
  height: 22px;
  border-radius: 20px;
  background: #040508;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #04050a;
}
.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%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.screen-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), transparent 30%, rgba(255, 75, 43, .08));
}
.screen-card {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(6, 8, 16, 0.88);
  backdrop-filter: blur(12px);
}
.screen-card span { color: #cbd5e1; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; }
.screen-card strong { display: block; margin-top: 2px; font-size: 14px; color: #ffffff; }
.floating-chip {
  position: absolute;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 9px;
  background: rgba(14, 17, 26, 0.9);
  backdrop-filter: blur(14px);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: floating 3.8s ease-in-out infinite;
}
.chip-one { left: 0%; top: 20%; color: #ffffff; }
.chip-two { right: -2%; top: 38%; animation-delay: -1s; color: #ff8a75; }
.chip-three { left: 8%; bottom: 16%; animation-delay: -2s; color: #34d399; }

/* ===== 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;
}

/* ===== About Us Section (Monochrome Black & White) ===== */
.about-section .eyebrow {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #d4d4d8;
  box-shadow: none;
}
.about-section .eyebrow::before {
  background: #ffffff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.6);
}
.about-card {
  padding: 34px 32px;
  background: #0d0f14;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}
.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f4f4f5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  box-shadow: none;
}
.about-lead {
  font-size: 16.5px;
  line-height: 1.55;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}
.about-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: #a1a1aa;
}
.about-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.about-highlight-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
}
.about-highlight-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.about-highlight-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 3px 0;
}
.about-highlight-item p {
  font-size: 12.5px;
  line-height: 1.45;
  color: #9ca3af;
  margin: 0;
}

/* ===== Feature Cards & Icons ===== */
.feat-num {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0d0f17;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.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(1140px, calc(100% - 32px));
  margin: 32px auto 20px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(53,243,255,.08), rgba(255,78,205,.06), rgba(255,206,58,.04)),
    rgba(7, 9, 16, .92);
  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: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px 24px 20px;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  letter-spacing: .03em;
}
.footer-brand img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(53,243,255,.16);
  flex-shrink: 0;
}
.footer-brand strong {
  display: block;
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.footer-brand p {
  max-width: 680px;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}
.footer-columns-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  align-items: start;
}
.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: 8px;
  color: var(--muted);
}
.footer-links a {
  width: max-content;
  font-size: 13px;
  transition: color .2s ease, transform .2s ease;
}
.footer-links a:hover {
  color: var(--text);
  transform: translateX(4px);
}
.footer-community .social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-extra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 6px;
}
.footer-support-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-support-box h3 {
  margin: 0;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.support-action-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.official-support-link {
  color: var(--cyan);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity .2s ease, transform .2s ease;
}
.official-support-link:hover {
  opacity: 0.85;
  transform: translateX(3px);
}
.launchpact-badge-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.launchpact-badge-wrap img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform .2s ease;
}
.launchpact-badge-wrap a:hover img {
  transform: scale(1.03);
}
.footer-email {
  max-width: 100%;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  background: rgba(0, 0, 0, .22);
}
.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 Consent Banner ===== */
.cookie-banner {
  position: fixed;
  z-index: 999;
  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 24px;
  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, .15);
  backdrop-filter: blur(20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.cookie-banner[hidden],
.cookie-banner.hidden,
.cookie-banner.is-dismissed {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.cookie-banner.fade-out {
  opacity: 0 !important;
  transform: translateY(16px) scale(0.96) !important;
  pointer-events: none !important;
}
.cookie-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cookie-close:hover {
  background: rgba(255, 0, 122, 0.3);
  color: #fff;
}
.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 transformed to slider */
  .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 ===== */
/* ===== 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(36px, 12vw, 56px);
  }
  .legal-hero p {
    font-size: 14px;
    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; }

  /* Prevent Horizontal Page Swipe/Shift */
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative !important;
    touch-action: pan-y pinch-zoom !important;
  }
  main, .section, .hero, .phone-stage {
    max-width: 100% !important;
    overflow-x: clip !important;
  }
  .orbit-ring {
    width: min(75vw, 290px) !important;
    max-width: 90vw !important;
  }

  /* Cookie Banner Compact Mobile Design */
  .cookie-banner:not([hidden]):not(.hidden):not(.is-dismissed) {
    position: fixed !important;
    z-index: 9999 !important;
    left: 12px !important;
    right: 12px !important;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    width: calc(100% - 24px) !important;
    max-width: 480px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 14px 16px !important;
    border-radius: 18px !important;
    background: rgba(8, 12, 24, 0.98) !important;
    backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(0, 240, 255, 0.35) !important;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 240, 255, 0.15) !important;
  }
  .cookie-kicker { font-size: 9.5px; letter-spacing: 0.12em; color: var(--cyan); }
  .cookie-copy h2 { font-size: 15px; margin: 2px 0 4px; font-weight: 800; }
  .cookie-copy p { font-size: 11px; line-height: 1.35; color: #94a3b8; margin: 0 0 4px; }
  .cookie-copy a { font-size: 11px; color: var(--cyan); display: inline-block; }
  .cookie-actions {
    display: grid !important;
    grid-template-columns: 1fr 1.2fr !important;
    gap: 8px !important;
    margin-top: 4px !important;
  }
  .cookie-actions .primary-btn, .cookie-actions .ghost-btn {
    min-height: 40px !important;
    padding: 0 10px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
    white-space: nowrap !important;
  }

  .header {
    position: sticky !important;
    top: 0 !important;
    z-index: 50 !important;
    width: 100% !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 10px 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    box-sizing: border-box !important;
    border-radius: 0 !important;
    border-top: 0 !important;
    border-inline: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(6, 8, 15, 0.96) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6) !important;
  }
  .header .nav {
    display: none !important;
  }
  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
  }
  .brand {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex-shrink: 0 !important;
  }
  .brand span { display: block; font-size: 14px; letter-spacing: 0.05em; }
  .download-pill { display: none !important; }
  .dynamic-buttons { max-width: calc(100vw - 160px); }

  .hamburger {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
  }
  .hamburger-bars {
    display: flex !important;
    flex-direction: column !important;
    gap: 4.5px !important;
    width: 18px !important;
    margin: 0 auto !important;
  }
  .hamburger-bars span {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
  }
  .hamburger .menu-label {
    display: none !important;
  }

  .alert-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    max-width: calc(100vw - 32px) !important;
    margin: 8px auto 6px auto !important;
    padding: 5px 12px 5px 10px !important;
    font-size: 11.5px !important;
    border-radius: 999px !important;
    position: relative !important;
    z-index: 20 !important;
    box-sizing: border-box !important;
  }
  .alert-pulse-dot {
    width: 7px !important;
    height: 7px !important;
  }
  .alert-close {
    width: 18px !important;
    height: 18px !important;
    font-size: 14px !important;
  }

  .section { width: calc(100% - 18px); padding: 8px 0 32px; }
  .hero {
    min-height: auto;
    gap: 16px;
    padding-top: 4px !important;
    margin-top: 0 !important;
  }
  .eyebrow {
    font-size: 9.5px;
    padding: 4px 10px;
    letter-spacing: 0.08em;
    margin-top: 2px !important;
    margin-bottom: 10px !important;
    white-space: nowrap;
    display: inline-flex;
  }
  .hero h1 {
    font-size: clamp(40px, 12vw, 64px);
    line-height: 0.92;
    margin-bottom: 12px;
  }
  .hero-copy p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  
  /* Ultra-Compact About Section on Mobile */
  .about-section { padding-top: 14px !important; padding-bottom: 18px !important; }
  .about-section .section-head { margin-bottom: 10px !important; text-align: center !important; }
  .about-section .section-head h2 { font-size: 19px !important; margin-bottom: 0 !important; }
  .about-section .eyebrow { margin-bottom: 6px !important; padding: 3px 9px !important; font-size: 9px !important; }
  .about-card { padding: 14px 13px !important; border-radius: 14px !important; }
  .about-badge { padding: 3px 9px !important; font-size: 9px !important; margin-bottom: 8px !important; }
  .about-lead { font-size: 13px !important; line-height: 1.35 !important; margin-bottom: 6px !important; }
  .about-card p { font-size: 11.5px !important; line-height: 1.45 !important; margin-bottom: 0 !important; }
  .about-highlights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 7px !important; margin-top: 10px !important; padding-top: 10px !important; }
  .about-highlight-item { padding: 8px 8px !important; gap: 6px !important; border-radius: 9px !important; }
  .about-highlight-icon { font-size: 15px !important; }
  .about-highlight-item h4 { font-size: 11px !important; line-height: 1.2 !important; margin: 0 0 2px 0 !important; }
  .about-highlight-item p { font-size: 9.5px !important; line-height: 1.25 !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }

  /* Hero CTA grid on mobile so Download APK stays single-line */
  .hero-cta {
    display: grid !important;
    grid-template-columns: 1.4fr 1fr !important;
    gap: 10px !important;
    width: 100% !important;
  }
  .hero-cta .primary-btn {
    padding: 0 10px !important;
    font-size: 13.5px !important;
    min-height: 48px !important;
    gap: 6px !important;
    white-space: nowrap !important;
  }
  .hero-cta .primary-btn span {
    white-space: nowrap !important;
  }
  .hero-cta .primary-btn small {
    font-size: 10px !important;
    min-width: 42px !important;
    height: 26px !important;
    padding: 0 5px !important;
    white-space: nowrap !important;
  }
  .hero-cta .ghost-btn {
    padding: 0 10px !important;
    font-size: 13.5px !important;
    min-height: 48px !important;
    white-space: nowrap !important;
    min-width: 0 !important;
  }

  /* Symmetrical Stats Dock without wrapping */
  .stats-strip {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 6px !important;
    margin-top: 18px !important;
    width: 100% !important;
  }
  .stats-strip div {
    min-width: 0 !important;
    padding: 10px 4px !important;
    text-align: center !important;
    border-radius: 12px !important;
  }
  .stats-strip strong {
    font-size: clamp(12px, 3.8vw, 16px) !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    color: #ffffff !important;
    font-weight: 800 !important;
  }
  .stats-strip span {
    font-size: 9px !important;
    line-height: 1.2 !important;
    margin-top: 3px !important;
    letter-spacing: 0.04em !important;
    color: #94a3b8 !important;
    white-space: nowrap !important;
  }

  /* 3D Phone Mockup on Mobile */
  .phone-stage {
    min-height: 440px !important;
    margin-top: 12px !important;
    perspective: 900px !important;
  }
  .orbit-ring {
    width: min(85vw, 360px) !important;
  }
  .phone-3d {
    width: min(78vw, 265px) !important;
    aspect-ratio: 9 / 18.5 !important;
    border-radius: 34px !important;
    padding: 8px !important;
  }
  .phone-top {
    width: 76px !important;
    height: 18px !important;
    top: 12px !important;
  }
  .screen {
    border-radius: 26px !important;
  }
  .screen-card {
    left: 10px !important;
    right: 10px !important;
    bottom: 12px !important;
    padding: 10px 12px !important;
  }
  .screen-card span { font-size: 10px !important; }
  .screen-card strong { font-size: 12px !important; }
  
  .floating-chip {
    padding: 6px 10px !important;
    font-size: 10px !important;
  }
  .chip-one { left: 4% !important; top: 18% !important; }
  .chip-two { right: 2% !important; top: 35% !important; }
  .chip-three { left: 10% !important; bottom: 14% !important; }

  .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 transformed to slider */
  .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;
  }

    /* ===== Mobile Ultra-Compact Footer ===== */
  .footer {
    width: calc(100% - 16px) !important;
    margin: 16px auto 12px !important;
    border-radius: 14px !important;
  }
  .footer-main {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 14px 12px 10px !important;
    text-align: left !important;
  }
  .footer-brand {
    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    margin-bottom: 2px !important;
  }
  .footer-brand img {
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
  }
  .footer-brand strong {
    margin: 0 !important;
    font-size: 16px !important;
    letter-spacing: 0.05em !important;
  }
  .footer-brand p,
  #footerAboutText {
    display: none !important;
  }
  .footer-columns-row {
    display: grid !important;
    grid-template-columns: 1fr 1.3fr 1fr !important;
    gap: 10px !important;
    padding: 10px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    align-items: start !important;
  }
  .footer-column h3 {
    margin: 0 0 6px !important;
    font-size: 10.5px !important;
    letter-spacing: 0.08em !important;
    color: var(--cyan) !important;
  }
  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    font-size: 11px !important;
  }
  .footer-links a {
    display: inline-block !important;
    color: #cbd5e1 !important;
    padding: 2px 0 !important;
    width: 100% !important;
  }
  .footer-community .social-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-top: 2px !important;
  }
  .footer-community .social-icon {
    width: 28px !important;
    height: 28px !important;
    border-radius: 7px !important;
  }
  .footer-community .social-icon svg {
    width: 14px !important;
    height: 14px !important;
  }
  .footer-extra-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
    padding-top: 6px !important;
  }
  .footer-support-box {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    gap: 4px !important;
  }
  .footer-support-box h3 {
    font-size: 10px !important;
    letter-spacing: 0.08em !important;
    color: var(--cyan) !important;
    margin: 0 0 2px !important;
  }
  .support-action-line {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }
  .footer-email {
    width: auto !important;
    font-size: 10.5px !important;
    min-height: 26px !important;
    padding: 0 8px !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .official-support-link {
    font-size: 11px !important;
  }
  .launchpact-badge-wrap {
    flex: 0 0 auto !important;
    justify-content: flex-end !important;
  }
  .launchpact-badge-wrap img {
    width: 125px !important;
    height: auto !important;
  }
  .footer-bottom {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 8px 12px !important;
    font-size: 10.5px !important;
  }
  .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;
  }
}








/* ===== Features 6-Box Horizontal Scroll-Snap Slider ===== */
.features-box-shell {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  border-radius: 24px;
}
.features-scroll-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.features-scroll-track {
  display: flex !important;
  width: 100%;
  margin: 0;
  padding: 0;
}

.feature-card-box {
  flex: 0 0 100% !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 34px 28px;
  min-height: 230px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.feature-card-box .feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  color: #050509;
  background: linear-gradient(135deg, #ffffff 0%, #ff4b2b 100%);
  box-shadow: 0 8px 20px rgba(255, 75, 43, 0.25);
  display: grid;
  place-items: center;
  position: relative;
}

.feature-card-box .feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.feature-card-box h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  line-height: 1.3;
}

.feature-card-box p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.features-box-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  width: 100%;
}

.feat-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.feat-nav-btn:hover {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 4px 18px rgba(255, 75, 43, 0.5);
}

.feat-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.feat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.feat-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.feat-dot.active {
  width: 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  border-color: #ff4b2b;
  box-shadow: 0 0 14px rgba(255, 75, 43, 0.8);
}

@media (max-width: 640px) {
  .features-box-shell {
    max-width: 100%;
    padding: 0 8px;
  }
  .feature-card-box {
    padding: 26px 20px;
    min-height: 220px;
  }
  .feature-card-box h3 {
    font-size: 18px;
  }
  .feature-card-box p {
    font-size: 13.5px;
  }
}






