:root {
  /* Core Colors */
  --bg-primary: #0A0E17;
  --bg-secondary: #131A2A;
  --bg-tertiary: #1E293B;

  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  /* Brand Accents */
  --accent-primary: #00F0FF;
  /* Neon Cyan */
  --accent-secondary: #7000FF;
  /* Deep Neon Purple */
  --accent-tertiary: #FF00E5;
  /* Neon Pink */

  /* State Colors */
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  --gradient-glow: linear-gradient(135deg, rgba(0, 240, 255, 0.5), rgba(112, 0, 255, 0.5));

  /* Shadows & Glows */
  --glow-primary: 0 0 20px rgba(0, 240, 255, 0.3);
  --glow-secondary: 0 0 20px rgba(112, 0, 255, 0.3);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-muted {
  color: var(--text-muted);
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-shadow: var(--glow-primary);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

/* Navbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 14, 23, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.brand-keli {
  color: #8B5CF6;
}

.brand-max {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
}

.nav-link:hover {
  color: var(--accent-primary);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.lang-switcher span {
  color: var(--text-muted);
}

.lang-btn {
  background: none;
  border: none;
  padding: 0.25rem 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.lang-btn:hover {
  color: var(--accent-primary);
}

.lang-btn.active-lang {
  color: var(--accent-primary);
  background: rgba(0, 240, 255, 0.1);
}

.header.scrolled {
  background: rgba(10, 14, 23, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--gradient-brand);
  color: white;
  box-shadow: var(--glow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
  color: white;
  text-shadow: none;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: white;
  text-shadow: none;
}

.btn-nav {
  padding: 0.5rem 1.25rem;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-primary);
  border: 1px solid var(--accent-primary);
}

.btn-nav:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
  box-shadow: var(--glow-primary);
  text-shadow: none;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  overflow-x: clip;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.15) 0%, rgba(10, 14, 23, 1) 70%);
}

.hero-glow-1 {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--accent-primary);
  filter: blur(150px);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
  animation: float 10s infinite ease-in-out alternate;
}

.hero-glow-2 {
  position: absolute;
  bottom: 0;
  right: -5%;
  width: 600px;
  height: 600px;
  background: var(--accent-secondary);
  filter: blur(150px);
  opacity: 0.2;
  border-radius: 50%;
  z-index: -1;
  animation: float 12s infinite ease-in-out alternate-reverse;
}

@keyframes float {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, -50px);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.phone-mockup-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.phone-mockup {
  position: absolute;
  width: 240px;
  border-radius: 32px;
  box-shadow: var(--shadow-card), 0 0 50px rgba(0, 240, 255, 0.2);
  border: 5px solid #222;
  border-top-width: 15px;
  border-bottom-width: 15px;
  z-index: 2;
  background-color: var(--bg-secondary);
  aspect-ratio: 9/19.5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.phone-mockup img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-left {
  left: 0;
  transform: translateX(-30px) scale(0.85) rotate(-8deg);
  z-index: 1;
  opacity: 0.8;
  filter: brightness(0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(112, 0, 255, 0.3);
}

.phone-right {
  right: 0;
  transform: translateX(30px) scale(0.85) rotate(8deg);
  z-index: 1;
  opacity: 0.8;
  filter: brightness(0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.3);
}

.phone-center {
  z-index: 3;
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 50px rgba(0, 240, 255, 0.4);
}

.phone-center:hover {
  transform: translateY(-20px) scale(1.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 80px rgba(0, 240, 255, 0.6);
}

.phone-left:hover {
  transform: translateX(-50px) scale(0.95) rotate(-4deg);
  z-index: 4;
  opacity: 1;
  filter: brightness(1);
}

.phone-right:hover {
  transform: translateX(50px) scale(0.95) rotate(4deg);
  z-index: 4;
  opacity: 1;
  filter: brightness(1);
}

.hero-image::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 500px;
  background: conic-gradient(from 0deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary), var(--accent-primary));
  filter: blur(50px);
  opacity: 0.25;
  z-index: 0;
  animation: spin 10s linear infinite;
  border-radius: 50%;
}

@keyframes spin {
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Features */
.features {
  background-color: var(--bg-secondary);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-tertiary);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card);
  border-color: rgba(0, 240, 255, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-secondary);
}

/* Download Section */
.download {
  background: var(--bg-primary);
  text-align: center;
  position: relative;
  padding: 8rem 0;
}

.download-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.download-content h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.download-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.store-badge {
  height: 60px;
  transition: transform 0.3s;
}

.store-badge:hover {
  transform: scale(1.05);
}

.store-badge-coming-soon {
  position: relative;
  display: inline-block;
  opacity: 0.5;
  pointer-events: none;
  filter: grayscale(0.3);
}

.coming-soon-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(139, 92, 246, 0.9);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-primary);
  position: relative;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-detail {
  background: var(--bg-tertiary);
  border-radius: 16px;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-detail[open] {
  border-color: rgba(0, 240, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-detail-question {
  padding: 1.5rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  user-select: none;
  transition: color 0.3s ease;
}

.faq-detail-question::-webkit-details-marker {
  display: none;
}

.faq-detail-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-detail[open] .faq-detail-question::after {
  content: '−';
}

.faq-detail[open] .faq-detail-question {
  color: var(--accent-primary);
}

.faq-detail-answer {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Legal Pages */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

.legal-header {
  text-align: center;
  margin-bottom: 4rem;
}

.legal-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.legal-content {
  background: var(--bg-secondary);
  border-radius: 20px;
  padding: 3rem 4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--accent-primary);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.legal-content ul,
.legal-content ol {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 2rem !important;
  display: block;
}

/* Footer */
.footer {
  background-color: var(--bg-tertiary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-desc {
  color: var(--text-secondary);
  margin: 1.5rem 0;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.25rem;
}

.social-links a:hover {
  background: var(--accent-primary);
  color: var(--bg-primary);
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-list {
  list-style: none;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-list a {
  color: var(--text-secondary);
}

.footer-list a:hover {
  color: var(--accent-primary);
}

.contact-list i {
  color: var(--accent-primary);
  margin-right: 0.5rem;
  width: 20px;
  text-align: center;
}

.contact-list li {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-muted);
}

/* Support Form */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
}

.support-info {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.contact-details a,
.contact-details p {
  color: var(--text-secondary);
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.faq-answer {
  color: var(--text-secondary);
}

.support-form {
  background: var(--bg-secondary);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #A78BFA;
  margin-bottom: 1.5rem;
}

.hero-badge i { font-size: 0.75rem; }

/* Hero Trust Badges */
.hero-trust {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.trust-item i {
  color: var(--accent-primary);
  font-size: 0.9rem;
}

/* Floating Letter Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: rgba(139, 92, 246, 0.08);
  animation: particleFloat var(--duration) ease-in-out var(--delay) infinite alternate;
}

@keyframes particleFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.08; }
  100% { transform: translateY(-40px) rotate(15deg); opacity: 0.15; }
}

/* Game Showcase Section */
.showcase {
  background: var(--bg-secondary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.showcase-item:last-child { margin-bottom: 0; }

.showcase-item.showcase-reverse { direction: rtl; }
.showcase-item.showcase-reverse > * { direction: ltr; }

.showcase-phone {
  display: flex;
  justify-content: center;
}

.showcase-phone img {
  width: 280px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(139, 92, 246, 0.15);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.showcase-phone img:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(139, 92, 246, 0.25);
}

.showcase-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(139, 92, 246, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.showcase-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.showcase-info p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.tag i { color: var(--accent-primary); font-size: 0.7rem; }

/* Stats Section */
.stats-section {
  background: var(--bg-primary);
  padding: 5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(0, 240, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 240, 255, 0.1);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.stat-number {
  font-size: 3rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-card p {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

/* Feature Icon Color Variants */
.icon-purple { background: rgba(139, 92, 246, 0.1); color: #A78BFA; }
.icon-pink { background: rgba(236, 72, 153, 0.1); color: #F472B6; }
.icon-gold { background: rgba(245, 158, 11, 0.1); color: #FBBF24; }
.icon-green { background: rgba(16, 185, 129, 0.1); color: #34D399; }
.icon-red { background: rgba(239, 68, 68, 0.1); color: #F87171; }

/* Download Icon */
.download-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.25);
  animation: pulse-glow 2s ease-in-out infinite;
}

.gplay-badge { height: 85px; margin-top: -12px; }

/* Animations that are useful */
.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    margin-top: 2rem;
    min-height: 400px;
  }

  .phone-mockup-container {
    max-width: 400px;
    height: 440px;
  }

  .phone-mockup {
    width: 200px;
  }

  .phone-left {
    transform: translateX(-20px) scale(0.8) rotate(-8deg);
  }

  .phone-right {
    transform: translateX(20px) scale(0.8) rotate(8deg);
  }

  .phone-center {
    transform: translateY(-8px) scale(1);
  }

  .showcase-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .showcase-item.showcase-reverse {
    direction: ltr;
  }

  .showcase-info {
    order: 2;
  }

  .showcase-phone {
    order: 1;
  }

  .showcase-tags {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-content h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(19, 26, 42, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .hero-text h1 {
    font-size: 2.25rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-image {
    min-height: 350px;
    max-width: 100%;
    overflow: hidden;
  }

  .phone-mockup-container {
    max-width: 300px;
    height: 380px;
  }

  .phone-mockup {
    width: 160px;
  }

  .phone-left,
  .phone-right {
    display: none;
  }

  .phone-center {
    transform: scale(1.15);
  }

  .phone-center:hover {
    transform: scale(1.2);
  }

  .section-title {
    font-size: 1.75rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  /* Stats section mobile */
  .stats h3 {
    font-size: 2.5rem !important;
  }

  .stats p {
    font-size: 0.875rem !important;
    letter-spacing: 1px !important;
  }

  .download-content h2 {
    font-size: 1.75rem;
  }

  .download-badges {
    flex-direction: column;
    align-items: center;
  }

  .store-badge {
    height: 50px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-desc {
    margin: 1.5rem auto;
  }

  .social-links {
    justify-content: center;
  }

  .contact-list li {
    justify-content: center;
  }

  .legal-content {
    padding: 2rem 1.5rem;
  }

  .legal-title {
    font-size: 2rem;
  }

  .lang-switcher {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .phone-mockup-container {
    max-width: 240px;
    height: 340px;
  }

  .phone-mockup {
    width: 140px;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-text h1 {
    font-size: 1.85rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .feature-card {
    padding: 1.5rem 1.25rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  .stats h3 {
    font-size: 2rem !important;
  }

  .download {
    padding: 5rem 0;
  }

  .download-content h2 {
    font-size: 1.5rem;
  }

  .legal-content {
    padding: 1.5rem 1rem;
  }

  .legal-title {
    font-size: 1.75rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }

  .support-info,
  .support-form {
    padding: 2rem 1.25rem;
  }
}

/* ===========================
   Invite Landing Page
   =========================== */
.invite-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 80px;
  background: var(--bg-primary);
  position: relative;
}

.invite-hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: conic-gradient(from 0deg, var(--accent-primary), var(--accent-secondary), var(--accent-tertiary), var(--accent-primary));
  filter: blur(120px);
  opacity: 0.12;
  border-radius: 50%;
  pointer-events: none;
}

.invite-container {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.invite-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.25rem;
  color: white;
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.25);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 8px 30px rgba(0, 240, 255, 0.25); }
  50% { box-shadow: 0 8px 50px rgba(0, 240, 255, 0.45); }
}

.invite-heading {
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.brand-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.invite-desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.invite-code-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-tertiary);
  border: 2px solid rgba(0, 240, 255, 0.2);
  border-radius: 16px;
  padding: 1.25rem 2.5rem;
  margin-bottom: 2rem;
}

.invite-code-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
}

.invite-code-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 3px;
}

.invite-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-primary-invite {
  background: var(--gradient-brand);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.2);
}

.btn-primary-invite:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.35);
}

.btn-store {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.btn-store:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-2px);
}

.invite-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

.invite-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.invite-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--accent-primary);
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
}

.step-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
}

.invite-step-arrow {
  color: var(--text-muted);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .invite-heading {
    font-size: 1.75rem;
  }

  .invite-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-invite,
  .btn-store {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .invite-step-arrow {
    display: none;
  }

  .invite-steps {
    gap: 1.5rem;
  }
}