/* ============================================================
   MELLO MERGE — SHARED STYLES
   Warm cartoon palette matching the game's visual identity
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;500;600;700;800&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Game-matched palette */
  --bg:         #0e0800;
  --bg2:        #1a0f00;
  --orange:     #FF8A00;
  --orange-lt:  #FFAC40;
  --gold:       #FFD020;
  --green:      #3DBE5A;
  --green-dk:   #2A9640;
  --red:        #FF4B4B;
  --sky:        #5EC9F0;
  --brown:      #8B5E3C;
  --white:      #FFFFFF;
  --cream:      #FFF8EC;
  --muted:      #B09060;
  --muted-lt:   #D4B896;
  --teal:       #3DBE90;
  --purple:     #7C3AED;

  /* Card styles */
  --card-bg:    rgba(255, 165, 40, 0.06);
  --card-bd:    rgba(255, 165, 40, 0.16);

  --radius:     18px;
  --font-head:  'Fredoka One', cursive;
  --font-body:  'Nunito', sans-serif;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Gradient text utilities ── */
.grad-orange {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-green {
  background: linear-gradient(135deg, var(--green), #7EE89A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-sky {
  background: linear-gradient(135deg, var(--sky), #A8E6F8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-purple {
  background: linear-gradient(135deg, var(--purple), #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 68px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 8, 0, 0.70);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 165, 40, 0.10);
  transition: background var(--transition);
}
.nav.scrolled { background: rgba(14, 8, 0, 0.95); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img {
  width: 36px; height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(255,138,0,0.55);
}
.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex; align-items: center;
  gap: 28px; list-style: none;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 600;
  color: var(--muted-lt);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #1a0800;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.84rem;
  box-shadow: 0 4px 18px rgba(255,138,0,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  -webkit-text-fill-color: #1a0800;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255,138,0,0.55);
}

.nav-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 5px;
  background: none; border: none; outline: none;
  -webkit-appearance: none; appearance: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
}

/* ══════════════════════════════════════
   STORE BUTTONS
══════════════════════════════════════ */
.store-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.store-btn {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 22px;
  border-radius: 14px;
  border: 1.5px solid rgba(255, 165, 40, 0.22);
  background: rgba(255, 138, 0, 0.08);
  cursor: pointer; min-width: 158px;
  transition: transform var(--transition), background var(--transition),
              border-color var(--transition), box-shadow var(--transition);
}
.store-btn:hover {
  background: rgba(255, 138, 0, 0.16);
  border-color: rgba(255, 138, 0, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(255,138,0,0.22);
}
.store-btn svg { flex-shrink: 0; }
.store-btn-text small {
  display: block; font-size: 0.62rem;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.07em; font-weight: 600;
}
.store-btn-text strong {
  display: block; font-size: 0.94rem;
  font-weight: 800; color: var(--white); margin-top: 1px;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #060400;
  border-top: 1px solid rgba(255, 165, 40, 0.10);
  padding: 50px 5% 30px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 165, 40, 0.08);
}
.footer-brand-name {
  font-family: var(--font-head); font-size: 1.35rem;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px;
}
.footer-brand-tag { color: var(--muted); font-size: 0.84rem; max-width: 210px; }

.footer-col h4 {
  font-size: 0.75rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,248,236,0.55); font-size: 0.88rem;
  transition: color var(--transition); font-weight: 600;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1100px; margin: 22px auto 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-copy { color: var(--muted); font-size: 0.8rem; font-weight: 600; }
.footer-copy a { color: var(--orange-lt); transition: color var(--transition); }
.footer-copy a:hover { color: var(--gold); }

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: var(--muted); font-size: 0.8rem; font-weight: 600;
  transition: color var(--transition);
}
.footer-bottom-links a:hover { color: var(--orange); }

/* Codenova credit badge */
.codenova-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 6px 12px 6px 10px;
  background: rgba(255,138,0,0.07);
  border: 1px solid rgba(255,138,0,0.16);
  border-radius: 10px;
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.codenova-credit:hover {
  background: rgba(255,138,0,0.13);
  border-color: rgba(255,138,0,0.32);
}
.codenova-credit .by-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
  flex-shrink: 0;
}
.codenova-credit img {
  height: 16px;
  width: auto;
  display: block;
  filter: brightness(1.15) saturate(0.9);
}

/* ══════════════════════════════════════
   AMBIENT / BACKGROUND EFFECTS
══════════════════════════════════════ */
.ambient {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(110px); opacity: 0.28;
  will-change: transform;
  animation: orbDrift 14s ease-in-out infinite alternate;
}
.orb-1 { width: 560px; height: 560px; top: -160px; left: -120px;
  background: radial-gradient(circle, #FF8A00, transparent); animation-delay: 0s; }
.orb-2 { width: 420px; height: 420px; top: 80px; right: -100px;
  background: radial-gradient(circle, #3DBE5A, transparent); animation-delay: -5s; }
.orb-3 { width: 380px; height: 380px; bottom: 15%; left: 35%;
  background: radial-gradient(circle, #FFD020, transparent); animation-delay: -9s; }
.orb-4 { width: 300px; height: 300px; bottom: -80px; right: 10%;
  background: radial-gradient(circle, #5EC9F0, transparent); animation-delay: -12s; }
@keyframes orbDrift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(28px, 44px, 0) scale(1.1); }
}

/* ── Floating Fruits BG ── */
.fruits-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.ff {
  position: absolute; user-select: none;
  will-change: transform, opacity;
  animation: ffRise linear infinite;
  opacity: 0;
}
@keyframes ffRise {
  0%   { transform: translateY(105vh) rotate(0deg);   opacity: 0; }
  6%   { opacity: 0.15; }
  94%  { opacity: 0.15; }
  100% { transform: translateY(-8vh)  rotate(600deg); opacity: 0; }
}

/* ── Ambient (sub-pages) ── */
.ambient-mini {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}

/* Privacy page ambient */
.ambient-mini--privacy::before {
  content: '';
  position: absolute;
  top: -200px; left: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,138,0,0.18) 0%, transparent 65%);
  filter: blur(60px);
}
.ambient-mini--privacy::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(61,190,90,0.13) 0%, transparent 65%);
  filter: blur(60px);
}

/* Terms page ambient */
.ambient-mini--terms::before {
  content: '';
  position: absolute;
  top: -200px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,208,32,0.16) 0%, transparent 65%);
  filter: blur(60px);
}
.ambient-mini--terms::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,138,0,0.14) 0%, transparent 65%);
  filter: blur(60px);
}

/* Contact page ambient */
.ambient-mini--contact::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(61,190,90,0.16) 0%, rgba(255,138,0,0.10) 40%, transparent 70%);
  filter: blur(60px);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 5% 70px;
  position: relative; z-index: 1;
}
.hero-inner {
  max-width: 1100px; width: 100%; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

/* left copy */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(61,190,90,0.12);
  border: 1px solid rgba(61,190,90,0.32);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.75rem; font-weight: 700;
  color: #5EE07A; text-transform: uppercase;
  letter-spacing: 0.07em; margin-bottom: 22px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: #5EE07A; border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 7.5vw, 5.8rem);
  line-height: 1.18; margin-bottom: 6px;
  background: linear-gradient(150deg, #FFFFFF 0%, #FFCF6B 45%, #FF8A00 85%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 50px rgba(255,138,0,0.35));
}
.hero-title-alt {
  line-height: 1.02;
}
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--muted-lt); letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.hero-desc {
  color: rgba(255,248,236,0.62);
  font-size: 1rem; line-height: 1.78;
  max-width: 440px; margin-bottom: 34px;
  font-weight: 500;
}

/* ── Phone cluster ── */
.phones-cluster {
  position: relative;
  display: flex; justify-content: center; align-items: flex-start;
  height: 560px;
}
.phone {
  position: absolute;
  border-radius: 44px;
  overflow: hidden;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.12),
    0 40px 90px rgba(0,0,0,0.55);
  background: #1a0e00;
  will-change: transform;
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
}
.phone-notch {
  position: absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 88px; height: 28px;
  background: #0a0500; border-radius: 0 0 16px 16px;
  z-index: 3;
}

/* main phone */
.phone-main {
  width: 220px;
  aspect-ratio: 9 / 19.5;
  left: 50%; top: 30px;
  transform: translateX(-70%);
  z-index: 3;
  animation: phoneA 6s ease-in-out infinite alternate;
}
@keyframes phoneA {
  from { transform: translateX(-70%) translate3d(0,0,0) rotate(-3deg); }
  to   { transform: translateX(-70%) translate3d(0,-20px,0) rotate(-1deg); }
}

/* back left phone */
.phone-left {
  width: 185px;
  aspect-ratio: 9 / 19.5;
  left: 50%; top: 90px;
  transform: translateX(-120%) rotate(-8deg);
  z-index: 2; opacity: 0.65;
  animation: phoneB 6s ease-in-out infinite alternate;
}
@keyframes phoneB {
  from { transform: translateX(-120%) rotate(-8deg) translate3d(0,0,0); }
  to   { transform: translateX(-120%) rotate(-8deg) translate3d(0,-14px,0); }
}

/* back right phone */
.phone-right {
  width: 185px;
  aspect-ratio: 9 / 19.5;
  left: 50%; top: 90px;
  transform: translateX(18%) rotate(8deg);
  z-index: 2; opacity: 0.65;
  animation: phoneC 6s ease-in-out infinite alternate;
}
@keyframes phoneC {
  from { transform: translateX(18%) rotate(8deg) translate3d(0,0,0); }
  to   { transform: translateX(18%) rotate(8deg) translate3d(0,-14px,0); }
}

/* ── Glow ring under phones ── */
.phone-glow {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 60px;
  background: radial-gradient(ellipse, rgba(255,138,0,0.38) 0%, transparent 70%);
  filter: blur(18px);
  z-index: 1;
  will-change: transform, opacity;
  animation: glowPulse 3s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  to   { opacity: 0.25; transform: translateX(-50%) scaleX(1.2); }
}

/* ══════════════════════════════════════
   STATS BAR
══════════════════════════════════════ */
.stats { padding: 0 5% 64px; position: relative; z-index: 1; }
.stats-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius);
  padding: 26px 20px; text-align: center;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,208,32,0.4), transparent);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,138,0,0.35);
  box-shadow: 0 16px 40px rgba(255,138,0,0.1);
}
.stat-icon { font-size: 1.6rem; margin-bottom: 8px; }
.stat-num {
  font-family: var(--font-head); font-size: 2.1rem;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { color: var(--muted-lt); font-size: 0.82rem; font-weight: 600; margin-top: 3px; }

/* ══════════════════════════════════════
   SECTION COMMON
══════════════════════════════════════ */
section { position: relative; z-index: 1; }
.section-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange); margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.14; margin-bottom: 12px;
}
.section-desc {
  color: var(--muted-lt); font-size: 0.95rem;
  max-width: 500px; line-height: 1.78; font-weight: 500;
}

/* ══════════════════════════════════════
   FEATURES
══════════════════════════════════════ */
.features { padding: 80px 5%; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 56px; }
.features-header .section-desc { margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.feat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: var(--radius);
  padding: 30px 22px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.feat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,138,0,0.05), transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.feat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,138,0,0.32);
  box-shadow: 0 20px 50px rgba(255,138,0,0.1);
}
.feat-card:hover::after { opacity: 1; }

.feat-icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 18px; position: relative; z-index: 1;
  flex-shrink: 0;
}
.fi-orange { background: rgba(255,138,0,0.15);  box-shadow: 0 0 22px rgba(255,138,0,0.2); }
.fi-green  { background: rgba(61,190,90,0.15);  box-shadow: 0 0 22px rgba(61,190,90,0.2); }
.fi-gold   { background: rgba(255,208,32,0.15); box-shadow: 0 0 22px rgba(255,208,32,0.2); }
.fi-sky    { background: rgba(94,201,240,0.15); box-shadow: 0 0 22px rgba(94,201,240,0.2); }
.fi-red    { background: rgba(255,75,75,0.15);  box-shadow: 0 0 22px rgba(255,75,75,0.2); }

.feat-card h3 {
  font-family: var(--font-head); font-size: 1.1rem;
  margin-bottom: 8px; position: relative; z-index: 1;
}
.feat-card p {
  color: var(--muted-lt); font-size: 0.86rem;
  line-height: 1.65; position: relative; z-index: 1; font-weight: 500;
}

/* ══════════════════════════════════════
   HOW TO PLAY
══════════════════════════════════════ */
.howto {
  padding: 80px 5%;
  background: linear-gradient(180deg, transparent, rgba(255,138,0,0.04) 50%, transparent);
}
.howto-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.steps { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.step  { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.1rem; color: #1a0800;
  box-shadow: 0 4px 20px rgba(255,138,0,0.4);
}
.step-body h4 { font-weight: 800; margin-bottom: 3px; font-size: 0.97rem; }
.step-body p  { color: var(--muted-lt); font-size: 0.86rem; line-height: 1.65; font-weight: 500; }

/* howto phone pair */
.howto-phones {
  display: flex; gap: 18px;
  align-items: flex-start; justify-content: center;
}
.mini-phone {
  width: 175px;
  aspect-ratio: 9 / 19.5;
  border-radius: 32px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 2px rgba(255,255,255,0.1);
  background: #1a0e00; flex-shrink: 0;
}
.mini-phone:nth-child(2) { transform: translateY(30px); opacity: 0.75; }
.mini-phone img { width: 100%; height: 100%; object-fit: contain; object-position: top; }

/* ══════════════════════════════════════
   PLAY WITH FRIENDS
══════════════════════════════════════ */
.playfriends {
  padding: 80px 5%;
  background: linear-gradient(180deg, transparent, rgba(139,92,246,0.05) 50%, transparent);
}
.playfriends-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.playfriends-phones {
  display: flex; gap: 18px;
  align-items: flex-start; justify-content: center;
}
.pf-num {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9) !important;
  box-shadow: 0 4px 16px rgba(139,92,246,0.4) !important;
}

/* ══════════════════════════════════════
   SCREENSHOTS GALLERY
══════════════════════════════════════ */
.screenshots { padding: 80px 0; }
.screenshots-header { text-align: center; padding: 0 5%; margin-bottom: 44px; }

.gallery-track {
  display: flex; gap: 20px;
  padding: 16px 5% 30px;
  overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.gallery-track::-webkit-scrollbar { display: none; }

.gallery-shot {
  flex-shrink: 0; scroll-snap-align: start;
  width: 188px;
  aspect-ratio: 9 / 19.5;
  border-radius: 28px; overflow: hidden;
  background: #1a0e00;
  box-shadow: 0 20px 55px rgba(0,0,0,0.45), 0 0 0 1.5px rgba(255,255,255,0.1);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-shot::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  z-index: 2;
}
.gallery-shot:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 32px 70px rgba(0,0,0,0.5), 0 0 0 2px rgba(255,138,0,0.4);
}
.gallery-shot img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: top;
}
.shot-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 12px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-size: 0.72rem; font-weight: 700;
  text-align: center; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,248,236,0.8);
  z-index: 3;
}

/* ══════════════════════════════════════
   TESTIMONIAL / REVIEW STRIP
══════════════════════════════════════ */
.reviews { padding: 70px 5%; }
.reviews-inner { max-width: 1100px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 44px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card {
  background: var(--card-bg); border: 1px solid var(--card-bd);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform var(--transition), border-color var(--transition);
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(255,138,0,0.28); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text {
  color: rgba(255,248,236,0.72); font-size: 0.9rem;
  line-height: 1.7; font-weight: 500; font-style: italic; margin-bottom: 16px;
}
.review-author { display: flex; align-items: center; gap: 10px; }
.author-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  background: rgba(255,138,0,0.14); border: 1px solid rgba(255,138,0,0.2);
}
.author-name { font-weight: 700; font-size: 0.88rem; }
.author-platform { font-size: 0.75rem; color: var(--muted); font-weight: 600; }

/* ══════════════════════════════════════
   DOWNLOAD CTA
══════════════════════════════════════ */
.cta-section {
  padding: 100px 5%;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 380px;
  background: radial-gradient(ellipse, rgba(255,138,0,0.13) 0%, transparent 70%);
  filter: blur(30px); pointer-events: none;
}

.cta-icon-wrap {
  width: 96px; height: 96px; border-radius: 26px;
  margin: 0 auto 28px; overflow: hidden;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.12), 0 22px 60px rgba(255,138,0,0.32);
  animation: iconBob 3.5s ease-in-out infinite alternate;
}
@keyframes iconBob { from{transform:scale(1)} to{transform:scale(1.07)} }
.cta-icon-wrap img { width: 100%; height: 100%; object-fit: cover; }

.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
  background: linear-gradient(150deg, #fff 0%, #FFCF6B 50%, #FF8A00 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-section p {
  color: var(--muted-lt); font-size: 1rem;
  max-width: 420px; margin: 0 auto 34px;
  font-weight: 500; line-height: 1.72;
}
.cta-section .store-buttons { justify-content: center; }
.cta-section .store-btn.cta-store-btn {
  padding: 14px 28px;
  background: rgba(255,138,0,0.10);
  border-color: rgba(255,138,0,0.28);
}
.cta-section .store-btn.cta-store-btn:hover {
  background: rgba(255,138,0,0.2);
  border-color: rgba(255,138,0,0.55);
}

/* ══════════════════════════════════════
   LEGAL PAGE SHARED
══════════════════════════════════════ */
.page-hero {
  padding: 60px 5% 55px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,138,0,0.18) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 10px;
}
.page-hero p { color: var(--muted-lt); font-size: 0.95rem; }

.legal-content {
  max-width: 800px; margin: 0 auto;
  padding: 0 5% 80px;
}
.legal-content h2 {
  font-family: var(--font-head); font-size: 1.25rem;
  color: var(--orange-lt); margin: 38px 0 10px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: rgba(255,248,236,0.72); font-size: 0.9rem;
  line-height: 1.82; margin-bottom: 12px;
}
.legal-content ul {
  color: rgba(255,248,236,0.72); font-size: 0.9rem;
  line-height: 1.82; margin: 6px 0 12px 20px;
}
.legal-content ul li { margin-bottom: 5px; }
.legal-content a { color: var(--orange-lt); }
.legal-content strong { color: var(--cream); }
.legal-content .effective {
  display: inline-block;
  background: rgba(255,138,0,0.08);
  border: 1px solid rgba(255,138,0,0.2);
  border-radius: 8px; padding: 7px 16px;
  font-size: 0.82rem; color: var(--muted-lt);
  margin-bottom: 28px; font-weight: 600;
}

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-section {
  min-height: calc(100vh - 70px - 260px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 5% 80px;
}
.contact-wrap {
  max-width: 600px;
  width: 100%;
  text-align: center;
}
.contact-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(61,190,90,0.15), rgba(255,138,0,0.15));
  border: 1.5px solid rgba(61,190,90,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin: 0 auto 28px;
  box-shadow: 0 0 40px rgba(61,190,90,0.15);
  animation: iconPop 3s ease-in-out infinite alternate;
}
@keyframes iconPop {
  from { transform: scale(1);     box-shadow: 0 0 40px rgba(61,190,90,0.15); }
  to   { transform: scale(1.05);  box-shadow: 0 0 60px rgba(61,190,90,0.28); }
}

.contact-wrap h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 16px;
}
.contact-wrap .sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: 24px;
  padding: 44px 40px;
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61,190,90,0.4), rgba(124,58,237,0.4), transparent);
}
.contact-card:hover { border-color: rgba(61,190,90,0.3); }

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}
.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  background: linear-gradient(135deg, var(--green), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: filter 0.3s;
  word-break: break-all;
}
.contact-email-link:hover { filter: brightness(1.3); }
.contact-email-link .mail-icon { -webkit-text-fill-color: initial; font-size: 1.4rem; }

.contact-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--purple));
  border-radius: 2px;
  margin: 28px auto;
}

.contact-note {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}
.contact-note strong { color: rgba(255,255,255,0.7); }

/* ── Response Time Badge ── */
.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61,190,90,0.1);
  border: 1px solid rgba(61,190,90,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 28px;
}
.response-badge .dot {
  width: 7px; height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }

/* ── Also Available Links ── */
.also-links {
  margin-top: 50px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.also-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--card-bd);
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  transition: all 0.3s;
}
.also-link:hover {
  border-color: rgba(255,107,53,0.4);
  color: var(--white);
  background: rgba(255,107,53,0.08);
}
.also-link .al-icon { font-size: 1rem; }

/* ══════════════════════════════════════
   SUB-PAGE SHARED
══════════════════════════════════════ */
.subpage-main { position: relative; z-index: 1; padding-top: 70px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 50px; }
  .hero-desc   { margin: 0 auto 34px; }
  .store-buttons { justify-content: center; }
  .phones-cluster { height: 430px; margin: 0 auto; }
  .phone-main  { transform: translateX(-50%); }
  .phone-left  { transform: translateX(-110%) rotate(-8deg); }
  .phone-right { transform: translateX(10%) rotate(8deg); }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner   { grid-template-columns: repeat(2, 1fr); }
  .howto-inner        { grid-template-columns: 1fr; }
  .howto-phones       { display: none; }
  .playfriends-inner  { grid-template-columns: 1fr; }
  .playfriends-phones { display: none; }
  .reviews-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 780px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(14, 8, 0, 0.97);
    backdrop-filter: blur(24px);
    flex-direction: column; padding: 28px 5%; gap: 22px;
    transform: translateY(-120%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(255,165,40,0.12);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .features-grid { grid-template-columns: 1fr; }
  .store-buttons { flex-direction: column; align-items: center; }
  .phones-cluster { height: 380px; }
  .phone-main  { width: 190px; height: 398px; }
  .phone-left, .phone-right { display: none; }
}
