/* ============================================
   FB Stream — Dark Gaming Style
   ============================================ */

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

:root {
  --bg: #0a0a12;
  --bg-card: rgba(255,255,255,0.04);
  --bg-card-hover: rgba(125,0,250,0.08);
  --text: #e8e8f0;
  --text-dim: #8888a8;
  --accent: #7d00fa;
  --accent-light: #b44dff;
  --accent-glow: rgba(125,0,250,0.4);
  --blue: #00b4ff;
  --green: #25d366;
  --red: #ff3b5c;
  --gradient: linear-gradient(135deg, #7d00fa 0%, #00b4ff 100%);
  --gradient-text: linear-gradient(135deg, #b44dff, #00b4ff);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-full: 100px;
  --shadow: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px var(--accent-glow);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

body[dir="ltr"] { font-family: var(--font-en); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

/* ---------- Navbar ---------- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0;
  background: rgba(10,10,18,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

#navbar.scrolled {
  padding: 10px 0;
  background: rgba(10,10,18,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; }

.logo-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  background: var(--gradient); border-radius: 12px; font-size: 18px; color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.logo-text { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; }
.logo-accent { color: var(--accent-light); }

.nav-links {
  display: flex; list-style: none; gap: 8px;
}

.nav-links a {
  padding: 8px 16px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; color: var(--text-dim);
  transition: var(--transition);
}

.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.06); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text); font-size: 13px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}

.lang-toggle:hover { background: rgba(125,0,250,0.2); border-color: var(--accent); }

.nav-cta {
  padding: 10px 24px; border-radius: var(--radius-full);
  background: var(--gradient); border: none; color: #fff;
  font-weight: 700; font-size: 14px; cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}

.menu-toggle span {
  width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: var(--transition);
}

/* ---------- Hero ---------- */
#hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; overflow: hidden; padding: 120px 24px 60px;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,18,0.6) 0%, rgba(10,10,18,0.85) 60%, var(--bg) 100%);
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block; padding: 8px 24px;
  background: rgba(125,0,250,0.15); border: 1px solid rgba(125,0,250,0.3);
  border-radius: var(--radius-full); font-size: 14px; font-weight: 600;
  color: var(--accent-light); margin-bottom: 24px;
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 15px rgba(125,0,250,0.2); }
  50% { box-shadow: 0 0 30px rgba(125,0,250,0.4); }
}

.hero-title-main {
  display: block; font-size: clamp(48px, 8vw, 96px); font-weight: 900;
  line-height: 1.1; letter-spacing: -2px;
}

.hero-title-main .accent {
  background: var(--gradient-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}

.hero-title-sub {
  display: block; font-size: clamp(16px, 3vw, 24px); font-weight: 400;
  color: var(--text-dim); margin-top: 8px; letter-spacing: 4px;
}

.hero-desc {
  font-size: 17px; color: var(--text-dim); margin: 32px auto;
  max-width: 600px; line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; border-radius: var(--radius-full);
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: var(--transition); border: none; font-family: inherit;
}

.btn-primary {
  background: var(--gradient); color: #fff;
  box-shadow: 0 4px 25px var(--accent-glow);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 40px var(--accent-glow); }

.btn-ghost {
  background: rgba(255,255,255,0.06); color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.hero-stats {
  display: flex; justify-content: center; align-items: center; gap: 32px;
  margin-top: 48px; padding: 24px; background: rgba(255,255,255,0.04);
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.stat { text-align: center; }
.stat-num { font-size: 32px; font-weight: 900; color: var(--accent-light); font-family: var(--font-en); }
.stat-plus { font-size: 24px; color: var(--accent-light); font-weight: 700; }
.stat-label { display: block; font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-mouse {
  width: 28px; height: 44px; border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px; display: flex; justify-content: center; padding-top: 8px;
}

.scroll-wheel {
  width: 4px; height: 10px; background: var(--accent-light);
  border-radius: 2px; animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ---------- Sections ---------- */
section { padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-block; padding: 6px 20px;
  background: rgba(125,0,250,0.1); border: 1px solid rgba(125,0,250,0.2);
  border-radius: var(--radius-full); font-size: 14px; font-weight: 600;
  color: var(--accent-light); margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  line-height: 1.3; margin-bottom: 12px;
}

.section-desc { font-size: 16px; color: var(--text-dim); max-width: 600px; margin: 0 auto; }

/* ---------- Features ---------- */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.feature-card {
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); overflow: hidden;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px); border-color: rgba(125,0,250,0.3);
  box-shadow: var(--shadow-glow);
}

.feature-img-wrap { position: relative; height: 240px; overflow: hidden; }
.feature-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.feature-card:hover .feature-img-wrap img { transform: scale(1.05); }

.feature-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,18,0.95) 100%);
}

.feature-content { padding: 32px; position: relative; margin-top: -40px; z-index: 2; }

.feature-icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: var(--gradient); border-radius: 16px; font-size: 28px;
  box-shadow: 0 4px 20px var(--accent-glow); margin-bottom: 16px;
}

.feature-content h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.feature-content p { color: var(--text-dim); font-size: 15px; margin-bottom: 16px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.feature-list li { font-size: 14px; color: var(--text-dim); }

/* ---------- Activation Banner ---------- */

/* ---------- Why FB Stream ---------- */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-bottom: 48px;
}

.why-card {
  padding: 32px 24px; text-align: center;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-8px); border-color: rgba(125,0,250,0.3);
  box-shadow: 0 12px 40px rgba(125,0,250,0.15);
  background: var(--bg-card-hover);
}

.why-icon {
  font-size: 48px; margin-bottom: 16px;
  filter: drop-shadow(0 4px 8px rgba(125,0,250,0.3));
}

.why-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }

/* Social Proof */
.social-proof {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.proof-item {
  padding: 24px; text-align: center;
  background: rgba(125,0,250,0.06);
  border: 1px solid rgba(125,0,250,0.15);
  border-radius: var(--radius);
  transition: var(--transition);
}

.proof-item:hover {
  background: rgba(125,0,250,0.1);
  transform: translateY(-4px);
}

.proof-stars { font-size: 18px; margin-bottom: 12px; letter-spacing: 4px; }

.proof-item p {
  font-size: 15px; font-style: italic; color: var(--text);
  line-height: 1.6; margin-bottom: 12px;
}

.proof-item span {
  font-size: 13px; color: var(--accent-light); font-weight: 600;
}

/* ---------- Activation Banner ---------- */
.activation-banner {
  padding: 0;
  margin-top: -40px;
  margin-bottom: 20px;
}

.activation-content {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 28px; border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,59,92,0.12) 0%, rgba(125,0,250,0.12) 100%);
  border: 1px solid rgba(255,59,92,0.3);
  animation: glowBorder 3s ease-in-out infinite;
}

@keyframes glowBorder {
  0%, 100% { box-shadow: 0 0 20px rgba(255,59,92,0.1); }
  50% { box-shadow: 0 0 30px rgba(255,59,92,0.25); }
}

.activation-icon { font-size: 36px; flex-shrink: 0; }

.activation-text { flex: 1; }
.activation-text strong {
  display: block; font-size: 17px; color: var(--red); margin-bottom: 4px;
}
.activation-text span { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

.activation-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-full);
  background: var(--green); color: #fff; font-weight: 700; font-size: 14px;
  white-space: nowrap; transition: var(--transition); flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}

.activation-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.gallery-item {
  position: relative; aspect-ratio: 3/4; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  background: linear-gradient(135deg, rgba(125,0,250,0.3) 0%, rgba(0,180,255,0.2) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.gallery-item.gi-img {
  background-size: cover; background-position: center; background-repeat: no-repeat;
}

.gallery-item::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85) 100%);
  z-index: 1; transition: var(--transition);
}

.gallery-item:hover::before {
  background: linear-gradient(180deg, rgba(125,0,250,0.15) 0%, rgba(0,0,0,0.9) 100%);
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(125,0,250,0.3);
}

.game-title {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  z-index: 2; font-size: 15px; font-weight: 700;
  color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.movie-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  padding: 4px 12px; border-radius: var(--radius-full);
  background: var(--red); color: #fff; font-size: 11px; font-weight: 700;
}

[dir="ltr"] .movie-badge { right: auto; left: 12px; }

.movies-gallery { grid-template-columns: repeat(3, 1fr); }
.movies-gallery .gallery-item { aspect-ratio: 16/10; }

/* ---------- Controllers ---------- */
.controllers-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}

.controllers-text { }
.controllers-text h2 { font-size: 36px; font-weight: 900; margin: 12px 0 16px; }
.controllers-text > p { color: var(--text-dim); font-size: 15px; line-height: 1.8; margin-bottom: 32px; }

.controller-features { display: flex; flex-direction: column; gap: 20px; }

.ctrl-feat {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-sm);
  transition: var(--transition);
}

.ctrl-feat:hover { border-color: rgba(125,0,250,0.3); background: var(--bg-card-hover); }

.ctrl-icon { font-size: 28px; }
.ctrl-feat strong { display: block; font-size: 15px; margin-bottom: 2px; }
.ctrl-feat span { font-size: 13px; color: var(--text-dim); }

.controllers-img {
  position: relative;
}

.controllers-img img {
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.controllers-img::after {
  content: ''; position: absolute; inset: -20px;
  background: radial-gradient(circle at center, var(--accent-glow) 0%, transparent 70%);
  z-index: -1; opacity: 0.5;
}

/* ---------- Download ---------- */
#download { padding: 80px 0; }

.download-card {
  position: relative; padding: 64px 48px; text-align: center;
  background: var(--bg-card); border: 1px solid rgba(125,0,250,0.2);
  border-radius: 24px; overflow: hidden;
}

.download-glow {
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.4; pointer-events: none;
}

.download-content { position: relative; z-index: 2; }

.download-content h2 { font-size: 36px; font-weight: 900; margin-bottom: 12px; }
.download-content > p { color: var(--text-dim); margin-bottom: 32px; }

.download-platforms {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-bottom: 28px;
}

.platform-card {
  padding: 32px 24px; border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}

.platform-card:hover {
  border-color: rgba(125,0,250,0.4);
  background: rgba(125,0,250,0.06);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(125,0,250,0.15);
}

.platform-icon {
  width: 72px; height: 72px; border-radius: 20px;
  background: linear-gradient(135deg, #0078d4 0%, #00bcf2 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 24px rgba(0,120,212,0.3);
}

.platform-icon.android-icon {
  background: linear-gradient(135deg, #3ddc84 0%, #00c853 100%);
  box-shadow: 0 8px 24px rgba(61,220,132,0.3);
}

.platform-card h3 { font-size: 22px; font-weight: 800; }
.platform-desc { font-size: 13px; color: var(--text-dim); line-height: 1.6; min-height: 40px; }

.btn-download {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 32px; border-radius: var(--radius);
  background: var(--gradient); color: #fff; font-size: 15px;
  font-weight: 700; border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 6px 24px var(--accent-glow);
  transition: var(--transition); width: 100%; justify-content: center;
}

.btn-download:hover { transform: translateY(-2px); box-shadow: 0 10px 32px var(--accent-glow); }
.btn-download small { font-size: 11px; opacity: 0.8; display: block; text-align: start; }
.btn-download strong { font-size: 16px; display: block; }

.btn-android {
  background: linear-gradient(135deg, #3ddc84 0%, #00c853 100%);
  box-shadow: 0 6px 24px rgba(61,220,132,0.3);
}

.btn-android:hover { box-shadow: 0 10px 32px rgba(61,220,132,0.4); }

.platform-specs {
  display: flex; gap: 16px; justify-content: center; margin-top: 4px;
}

.platform-specs span {
  font-size: 12px; color: var(--text-dim); padding: 4px 12px;
  background: rgba(255,255,255,0.04); border-radius: var(--radius-full);
}

.download-note {
  font-size: 14px; color: var(--text-dim); margin-top: 8px;
  padding: 12px 20px; background: rgba(125,0,250,0.06);
  border-radius: var(--radius-sm); display: inline-block;
}

/* ---------- Free Trial ---------- */
.trial-section {
  margin-top: 32px; padding: 32px 32px;
  background: linear-gradient(135deg, rgba(255,165,0,0.1) 0%, rgba(255,215,0,0.06) 100%);
  border: 2px dashed rgba(255,165,0,0.4);
  border-radius: var(--radius); text-align: center;
  position: relative; overflow: hidden;
}

.trial-top-label {
  display: inline-block;
  background: rgba(255,165,0,0.2);
  color: #ffa500;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,165,0,0.4);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trial-timer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,165,0,0.3);
  color: #fff;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 10px;
  margin-bottom: 14px;
}

.trial-features-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px;
  max-width: 340px;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
}

.trial-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.trial-soon-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: #fbbf24;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.35);
  padding: 2px 10px;
  border-radius: 20px;
}

.trial-section::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,165,0,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.trial-badge {
  font-size: 40px; margin-bottom: 8px;
  animation: bounce-gift 2s ease-in-out infinite;
}

@keyframes bounce-gift {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15) rotate(-5deg); }
}

.trial-section h3 {
  font-size: 22px; font-weight: 800; margin-bottom: 8px;
  color: #ffa500;
}

.trial-section > p {
  font-size: 14px; color: var(--text-dim); margin-bottom: 20px;
  max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7;
}

.trial-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

.btn-trial {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 28px; border-radius: var(--radius-full);
  background: linear-gradient(135deg, #ff8c00, #ffa500);
  color: #fff; font-size: 14px; font-weight: 700;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 4px 20px rgba(255,140,0,0.3);
  transition: var(--transition);
}

.btn-trial:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,140,0,0.4);
}

.btn-trial-android {
  background: linear-gradient(135deg, #e65100, #ff6d00);
  box-shadow: 0 4px 20px rgba(230,81,0,0.3);
}

.btn-trial-android:hover {
  box-shadow: 0 8px 28px rgba(230,81,0,0.4);
}

/* ---------- Contact ---------- */
.contact-card { display: flex; justify-content: center; }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 20px 48px; background: var(--green);
  border-radius: var(--radius); color: #fff;
  font-size: 16px; transition: var(--transition);
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-4px); box-shadow: 0 12px 40px rgba(37,211,102,0.4);
}

.whatsapp-btn strong { display: block; font-size: 18px; }
.whatsapp-btn span { font-size: 22px; font-weight: 700; font-family: var(--font-en); direction: ltr; }

/* ---------- Footer ---------- */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  text-align: center;
}

.footer-content { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
footer p { font-size: 13px; color: var(--text-dim); }

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: floatPulse 2s infinite;
}

[dir="ltr"] .whatsapp-float { left: auto; right: 24px; }

.whatsapp-float:hover { transform: scale(1.1); }

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ---------- Pricing Section ---------- */
#pricing { padding: 80px 0; }

.pricing-card {
  max-width: 420px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 24px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 40px rgba(34,197,94,0.08);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  background: #22c55e;
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-duration {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: #22c55e;
  line-height: 1;
}

.pricing-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  text-align: right;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}

.needs-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: #fbbf24;
  background: rgba(251,191,36,0.12);
  border: 1px solid rgba(251,191,36,0.35);
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-contact {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-contact p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.pricing-contact-btns {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.pricing-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.pricing-btn:hover { opacity: 0.85; }

.pricing-btn-whatsapp {
  background: #25d366;
  color: #000;
}

.pricing-btn-phone {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}

/* ---------- Payment Section ---------- */
#payment { padding: 80px 0; }

.payment-card {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.payment-logo-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  width: 100%;
  justify-content: center;
}

.payment-logo {
  height: 1cm;
  width: 1cm;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.payment-brand {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f5a623;
}

.payment-info { display: flex; flex-direction: column; gap: 6px; width: 100%; align-items: center; }

.payment-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

.payment-account {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 24px;
}

.payment-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}


/* ---------- Download Counter ---------- */
.download-counter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.download-counter-wrap svg {
  opacity: 0.5;
}

#dl-count {
  color: #22c55e;
  font-weight: 700;
}

/* ---------- Coming Soon ---------- */
.coming-soon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.coming-soon-badge {
  display: inline-block;
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.5);
  color: #fbbf24;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,18,0.98); padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .movies-gallery { grid-template-columns: repeat(2, 1fr); }
  .controllers-layout { grid-template-columns: 1fr; text-align: center; }
  .controllers-text > .section-tag { margin: 0 auto; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 60px; height: 1px; }
  .download-card { padding: 40px 24px; }
  .download-platforms { grid-template-columns: 1fr; }
  .activation-content { flex-direction: column; text-align: center; }
  .activation-text { text-align: center; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .social-proof { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .whatsapp-btn { flex-direction: column; text-align: center; padding: 24px 32px; }
}
