* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* High-Impact Brand Colors */
  --bg: #030408;
  --surface: #0e1020;
  --red: #6e7fff;
  --red2: #b070ff;
  --cyan: #00f0ff;
  --white: #ffffff;
  --muted: #cbd5e1; /* Even lighter for muted text */
  --border: rgba(255, 255, 255, 0.15);

  /* Vivid Gradients */
  --gradient-main: linear-gradient(135deg, #6e7fff 0%, #b070ff 100%);
  --gradient-purple: linear-gradient(135deg, #6e7fff 0%, #b070ff 100%);
  --gradient-cyan: linear-gradient(135deg, #00f0ff 0%, #6e7fff 100%);
  --gradient-glow: radial-gradient(circle, rgba(110, 127, 255, 0.25) 0%, transparent 70%);

  /* Premium Backgrounds */
  --dark-bg: #030408;
  --card-bg: rgba(22, 24, 48, 0.95); /* More opaque for readability */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.12);

  /* Typography System - Professional & Consistent */
  --font-family-primary: 'DM Sans', sans-serif;

  /* Font Sizes - Responsive Scale */
  --font-size-xs: clamp(0.75rem, 2vw, 0.875rem); /* 12px - 14px */
  --font-size-sm: clamp(0.875rem, 2.5vw, 1rem); /* 14px - 16px */
  --font-size-base: clamp(1rem, 3vw, 1.125rem); /* 16px - 18px */
  --font-size-lg: clamp(1.125rem, 3.5vw, 1.25rem); /* 18px - 20px */
  --font-size-xl: clamp(1.25rem, 4vw, 1.5rem); /* 20px - 24px */
  --font-size-2xl: clamp(1.5rem, 5vw, 2rem); /* 24px - 32px */
  --font-size-3xl: clamp(2rem, 6vw, 2.5rem); /* 32px - 40px */
  --font-size-4xl: clamp(2.5rem, 7vw, 3rem); /* 40px - 48px */
  --font-size-5xl: clamp(3rem, 8vw, 4rem); /* 48px - 64px */
  --font-size-6xl: clamp(3.5rem, 10vw, 5rem); /* 56px - 80px */

  /* Font Weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-snug: 1.3;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6;
  --line-height-loose: 1.8;

  /* Letter Spacing */
  --letter-spacing-tight: -0.025em;
  --letter-spacing-normal: 0;
  --letter-spacing-wide: 0.025em;

  /* Typography Colors */
  --text-primary: #ffffff;
  --text-secondary: #e2e8f0;
  --text-muted: #94a3b8;
  --text-accent: #6e7fff;
  --border-color: rgba(255, 255, 255, 0.15);
  --primary: #6e7fff;
  --secondary: #b070ff;
  --accent: linear-gradient(135deg, #6e7fff 0%, #b070ff 100%);
}

body {
  font-family: var(--font-family-primary);
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-base);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy - Professional & Consistent */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-primary);
  color: var(--text-primary);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin: 0 0 1rem 0;
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-snug);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-snug);
  margin-bottom: 1rem;
}

h4 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: 0.875rem;
}

h5 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: 0.75rem;
}

h6 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: 0.75rem;
}

/* Paragraphs */
p {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: 1.5rem;
  font-weight: var(--font-weight-normal);
}

/* Small text */
small,
.text-sm {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
  color: var(--text-muted);
}

/* Links */
a {
  color: var(--text-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

/* Loading Screen */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: loaderPulse 1.5s ease-in-out infinite;
  margin-bottom: 2rem;
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(92, 111, 255, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 30px rgba(92, 111, 255, 0);
  }
}

.loader-bar {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-progress {
  width: 0;
  height: 100%;
  background: var(--gradient-main);
  border-radius: 2px;
  animation: loadProgress 2s ease-out forwards;
}

@keyframes loadProgress {
  to {
    width: 100%;
  }
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.15s ease,
    background 0.15s ease;
  mix-blend-mode: difference;
}

.cursor-follower {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.08s ease;
}

.cursor.hover {
  transform: scale(2);
  background: rgba(92, 111, 255, 0.3);
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-animation .gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: floatOrb 20s ease-in-out infinite;
}

.bg-animation .gradient-orb:nth-child(1) {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(92, 111, 255, 0.4) 0%, transparent 70%);
  top: -300px;
  left: -200px;
  animation-delay: 0s;
}

.bg-animation .gradient-orb:nth-child(2) {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(88, 86, 214, 0.4) 0%, transparent 70%);
  top: 40%;
  right: -200px;
  animation-delay: -7s;
}

.bg-animation .gradient-orb:nth-child(3) {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
  bottom: -150px;
  left: 30%;
  animation-delay: -14s;
}

.bg-animation .gradient-orb:nth-child(4) {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(175, 82, 222, 0.3) 0%, transparent 70%);
  top: 60%;
  left: -100px;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(50px, -50px) scale(1.1) rotate(90deg);
  }
  50% {
    transform: translate(0, 50px) scale(0.9) rotate(180deg);
  }
  75% {
    transform: translate(-50px, -25px) scale(1.05) rotate(270deg);
  }
}

/* Grid Pattern Overlay */
.grid-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: perspective(500px) rotateX(60deg) translateY(0);
  }
  100% {
    transform: perspective(500px) rotateX(60deg) translateY(50px);
  }
}

/* Floating Particles */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  animation: rise 15s infinite;
  opacity: 0;
}

@keyframes rise {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

/* Meteor Effect */
.meteors {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.meteor {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(to bottom, rgba(92, 111, 255, 0.8), transparent);
  animation: meteorFall 3s linear infinite;
  opacity: 0;
}

@keyframes meteorFall {
  0% {
    transform: translateY(-100px) translateX(0) rotate(45deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) translateX(200px) rotate(45deg);
    opacity: 0;
  }
}
.navbutton-QR {
  width: 100px;
  height: 100px;
  border: 2px solid var(--primary);
  transition: transform 0.4s ease;
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 10%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* background: rgba(7, 8, 15, 0.95); */
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.5s ease;
  transform: translateY(-100%);
  animation: navSlideDown 0.8s ease 2.5s forwards;
}

@keyframes navSlideDown {
  to {
    transform: translateY(0);
  }
}

.navbar.scrolled {
  padding: 0.7rem 5%;
  background: rgba(30, 34, 61, 0.98);
  box-shadow: 0 10px 30px rgba(92, 111, 255, 0.2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-main);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(92, 111, 255, 0.4);
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(360deg) scale(1.1);
}

.logo-text {
  font-size: 1rem;
  font-weight: 800;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.logo:hover .logo-text {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: var(--letter-spacing-normal);
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: var(--accent);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: clip-path 0.3s ease;
}

.nav-links a:hover::before {
  width: 100%;
}

.nav-links a:hover::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a.active {
  color: var(--accent);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  position: relative;
  overflow: hidden;
  text-transform: none;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(92, 111, 255, 0.5);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: rgba(92, 111, 255, 0.1);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gradient-main);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(92, 111, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(92, 111, 255, 0.5);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: var(--font-size-base);
}

.btn-glow {
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 4px 20px rgba(92, 111, 255, 0.4);
  }
  to {
    box-shadow:
      0 4px 40px rgba(92, 111, 255, 0.6),
      0 0 60px rgba(92, 111, 255, 0.3);
  }
}

/* Magnetic Button Effect */
.btn-magnetic {
  transition: transform 0.3s ease;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.hero-text {
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(92, 111, 255, 0.15);
  border: 1px solid rgba(92, 111, 255, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  margin-bottom: 2rem;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 2.4s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge .live-dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.hero h1 {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-extrabold);
  font-family: var(--font-family-primary);
  line-height: var(--line-height-tight);
  margin-bottom: 2rem;
  letter-spacing: var(--letter-spacing-tight);
  overflow: hidden;
  color: var(--text-primary);
}

.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: lineReveal 0.8s ease forwards;
}

.hero h1 .line:nth-child(1) {
  animation-delay: 2.5s;
}
.hero h1 .line:nth-child(2) {
  animation-delay: 2.7s;
}

@keyframes lineReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 .gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.hero h1 .gradient-purple {
  background: var(--gradient-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero h1 .gradient-purple::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-purple);
  transform: scaleX(0);
  animation: underlineReveal 0.8s ease 3.2s forwards;
}

@keyframes underlineReveal {
  to {
    transform: scaleX(1);
  }
}

.hero p {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  color: var(--text-secondary);
  margin-bottom: 3.5rem;
  max-width: 600px;
  line-height: var(--line-height-relaxed);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 2.9s forwards;
}

/* Download Dropdown */
.download-dropdown {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 3.1s forwards;
}

.download-toggle {
  position: relative;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(30, 31, 33, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.download-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

.dropdown-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.dropdown-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.dropdown-section h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--accent-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.dropdown-item:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateX(5px);
  color: white;
}

.dropdown-item:last-child {
  margin-bottom: 0;
}

.dropdown-item i {
  font-size: 1.1rem;
  color: var(--accent);
}

.dropdown-item:hover i {
  color: white;
}

.mobile-qr .qr-codes {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.qr-item {
  flex: 1;
  text-align: center;
}

.qr-placeholder {
  width: 80px;
  height: 80px;
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 2rem;
  color: var(--accent);
}

.qr-item span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.mobile-qr p {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transition: left 0.5s ease;
}

.download-btn:hover::before {
  left: 100%;
}

.download-btn:hover {
  background: var(--accent-bg);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent);
}

.download-btn i {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.download-btn:hover i {
  transform: scale(1.2);
}

.download-btn .text {
  text-align: left;
}

.download-btn .text small {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
}

.download-btn .text span {
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-base);
  color: var(--text-primary);
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 3.3s forwards;
}

.hero-stat {
  text-align: left;
  position: relative;
}

.hero-stat::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

.hero-stat:last-child::after {
  display: none;
}

.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: #1b2255;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-stat {
  background: rgba(12, 15, 30, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  padding: 1rem;
  overflow: hidden;
  min-width: 150px;
  box-shadow: 0 30px 80px rgba(15, 18, 46, 0.25);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.hero-stat:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 40px 110px rgba(16, 23, 78, 0.35);
  background: rgba(21, 27, 63, 0.92);
}

.hero-stat .stat-background {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}

.hero-stat .stat-background .glow-orb {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(99, 102, 241, 0) 60%);
  filter: blur(10px);
  animation: pulseGlow 4s ease-in-out infinite;
}

.hero-stat .icon-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  animation: floatIcon 6s ease-in-out infinite;
}

.glass-card {
  text-align: center;
}
.hero-stat .icon-wrapper .icon-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.25), transparent 45%);
  border-radius: inherit;
}

.hero-stat .icon-wrapper i {
  position: relative;
  z-index: 1;
  color: #f8fafc;
  font-size: 1.25rem;
}

.hero-stat .corner-glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.28) 0%, rgba(96, 165, 250, 0) 70%);
  filter: blur(12px);
  pointer-events: none;
  animation: shimmerPulse 5s ease-in-out infinite;
}

.hero-stat .number {
  color: #e2e8f0;
}

.hero-stat .label {
  color: #94a3b8;
}

@keyframes pulseGlow {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.16;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.26;
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes shimmerPulse {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(-6px, 6px) scale(1.08);
    opacity: 0.35;
  }
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  opacity: 0;
  animation: heroVisualReveal 1s ease 2.3s forwards;
}

@keyframes heroVisualReveal {
  0% {
    opacity: 0;
    transform: scale(0.8) rotateY(-30deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateY(0);
  }
}

.phone-mockup {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #0e1020 0%, #07080f 100%);
  border-radius: 40px;
  border: 3px solid var(--border-color);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset,
    0 30px 60px rgba(102, 126, 234, 0.1);
  overflow: hidden;
  transform: rotateY(-15deg) rotateX(5deg);
  transform-style: preserve-3d;
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%,
  100% {
    transform: rotateY(-15deg) rotateX(5deg) translateY(0);
  }
  50% {
    transform: rotateY(-15deg) rotateX(5deg) translateY(-20px);
  }
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  height: 650px;
  background: radial-gradient(circle, rgba(92, 111, 255, 0.3) 0%, transparent 70%);
  filter: blur(40px);
  animation: phoneGlowPulse 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes phoneGlowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0f0f16 0%, #050507 100%);
  padding: 20px 15px;
  position: relative;
}

.phone-notch {
  width: 120px;
  height: 25px;
  background: #000;
  border-radius: 0 0 15px 15px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.stream-preview {
  width: 100%;
  height: 200px;
  background: var(--gradient-fire);
  border-radius: 20px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
}

.stream-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="40" r="25" fill="rgba(255,255,255,0.3)"/><path d="M30 80 Q50 60 70 80" stroke="rgba(255,255,255,0.3)" fill="none" stroke-width="3"/></svg>');
  background-size: cover;
}

.stream-preview::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: streamShine 3s infinite;
}

@keyframes streamShine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

.live-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  animation: liveBadgePulse 2s infinite;
}

@keyframes liveBadgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(92, 111, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(92, 111, 255, 0);
  }
}

.live-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.viewer-count {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.streamer-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 15px;
}

.streamer-avatar {
  width: 40px;
  height: 40px;
  background: var(--gradient-purple);
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: avatarRing 2s infinite;
}

@keyframes avatarRing {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(92, 111, 255, 0.7);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(92, 111, 255, 0);
  }
}

.streamer-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.streamer-category {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.chat-preview {
  margin-top: 15px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  height: 180px;
  overflow: hidden;
}

.chat-message {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 10px;
  font-size: 0.75rem;
  animation: chatSlide 0.5s ease;
}

@keyframes chatSlide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.chat-message .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
}

.chat-message .content span {
  font-weight: 600;
}

.gift-animation {
  position: absolute;
  bottom: 80px;
  right: 20px;
  font-size: 2rem;
  animation:
    floatGift 2s ease-in-out infinite,
    giftSpin 5s linear infinite;
}

@keyframes floatGift {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

@keyframes giftSpin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* Floating Elements Around Phone */
.floating-element {
  position: absolute;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.floating-element.heart {
  top: 10%;
  right: -20%;
  font-size: 3rem;
  animation:
    float 4s ease-in-out infinite,
    heartbeat 1s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.floating-element.star {
  bottom: 20%;
  left: -15%;
  font-size: 2.5rem;
  animation:
    float 4s ease-in-out infinite,
    starRotate 3s linear infinite;
}

@keyframes starRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.floating-element.diamond {
  top: 30%;
  left: -25%;
  font-size: 2rem;
  animation:
    float 4s ease-in-out infinite,
    diamondShine 2s ease-in-out infinite;
}

@keyframes diamondShine {
  0%,
  100% {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8)) brightness(1.3);
  }
}

.floating-element.gift {
  bottom: 30%;
  right: -25%;
  font-size: 2.5rem;
  animation:
    float 4s ease-in-out infinite,
    giftBounce 0.5s ease-in-out infinite;
}

@keyframes giftBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

/* Orbiting Elements */
.orbit-container {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: orbitRotate 20s linear infinite;
}

@keyframes orbitRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orbit-element {
  position: absolute;
  font-size: 1.5rem;
  animation: counterRotate 20s linear infinite;
}

@keyframes counterRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.orbit-element:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-element:nth-child(2) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.orbit-element:nth-child(3) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.orbit-element:nth-child(4) {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Multi-Destination Streaming Section */
.multistream-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(92, 111, 255, 0.05) 50%, var(--dark-bg) 100%);
  position: relative;
}

.multistream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.multistream-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.multistream-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.multistream-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(92, 111, 255, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(92, 111, 255, 0.2);
}

.multistream-card:hover::before {
  transform: scaleX(1);
}

.multistream-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: transform 0.4s ease;
}

.multistream-card:hover .multistream-icon {
  transform: scale(1.1) rotate(5deg);
}

.multistream-card h3 {
  font-size: 1.6rem; /* Larger */
  font-weight: 800; /* Extra bold */
  margin-bottom: 1.2rem;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 2px;
}

.multistream-card p {
  color: var(--text-secondary);
  font-weight: 600; /* Bolder */
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.learn-more-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.learn-more-link:hover {
  color: var(--primary);
  transform: translateX(5px);
}

/* Features Section */
.features {
  padding: 5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  background: var(--gradient-main);
  padding: 0.4rem 1.25rem;
  border-radius: 50px;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: 1.5rem;
  animation: tagPulse 2s ease-in-out infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 0 auto 15px;
  color: var(--text-primary);
}

@keyframes tagPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.section-header h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  font-family: var(--font-family-primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  color: var(--text-primary);
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-main);
  border-radius: 2px;
}

.section-header p {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 1.5rem auto 0;
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
}

/* Logo Text */
.logo-text {
  color: var(--text-secondary);
  /* font-size: var(--font-size-2xl); */
  font-size: 25px;
  font-weight: var(--font-weight-bold);
  transform: translateY(50px) rotate(10deg);
  animation: charReveal 0.5s ease forwards;
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 3rem;
  backdrop-filter: blur(30px);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(92, 111, 255, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02) rotateX(5deg);
  border-color: rgba(92, 111, 255, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 0 30px rgba(92, 111, 255, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  background: inherit;
  border-radius: inherit;
  filter: blur(15px);
  opacity: 0.5;
  z-index: -1;
}

.feature-icon.gradient-1 {
  background: var(--gradient-fire);
}
.feature-icon.gradient-2 {
  background: var(--gradient-purple);
}
.feature-icon.gradient-3 {
  background: var(--gradient-cyan);
}
.feature-icon.gradient-4 {
  background: linear-gradient(135deg, #a855f7 0%, #c084fc 100%);
}
.feature-icon.gradient-5 {
  background: linear-gradient(135deg, #34c759 0%, #30d158 100%);
}
.feature-icon.gradient-6 {
  background: linear-gradient(135deg, #9333ea 0%, #af52de 100%);
}

.feature-card h3 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  font-family: var(--font-family-primary);
  letter-spacing: var(--letter-spacing-tight);
  margin-bottom: 1.2rem;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-card:hover h3 {
  color: var(--accent);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: var(--line-height-relaxed);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
}

/* Floating Icon Animation */
.feature-icon i {
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* How It Works */
.how-it-works {
  padding: 5rem 0;
  position: relative;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
  margin-top: 4rem;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 4px; /* Thicker */
  background: var(--gradient-main); /* Vibrant gradient */
  z-index: 0;
  animation: lineGrow 1s ease forwards;
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 15px rgba(110, 127, 255, 0.4);
}

@keyframes lineGrow {
  to {
    transform: scaleX(1);
  }
}

.steps-container.animated::before {
  animation: lineGrow 1s ease forwards;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 120px;
  height: 120px;
  background: var(--card-bg);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.step-number::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--gradient-main);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 2px dashed rgba(92, 111, 255, 0.3);
  animation: dashRotate 10s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

@keyframes dashRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.step:hover .step-number {
  transform: scale(1.1);
}

.step-number i {
  font-size: 2.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.4s ease;
}

.step:hover .step-number i {
  transform: scale(1.2);
}

.step h3 {
  font-size: var(--font-size-2xl);
  font-family: var(--font-family-primary);
  letter-spacing: var(--letter-spacing-tight);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.step p {
  color: var(--text-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  max-width: 280px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

/* Streamers Section */
.streamers {
  padding: 5rem 0;
  position: relative;
}

.streamers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.streamer-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
  /* cursor: pointer; */
  transition: all 0.4s ease;
}

.streamer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 24px;
  transition: border-color 0.4s ease;
  z-index: 3;
}

.streamer-card:hover::before {
  border-color: var(--accent);
}

.streamer-card:hover {
  transform: translateY(-10px) scale(1.03);
  z-index: 10;
  box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
}

.streamer-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.streamer-card:hover .streamer-card-bg {
  transform: scale(1.1);
}

.streamer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  z-index: 1;
}

.streamer-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.streamer-card:hover .streamer-card-content {
  transform: translateY(0);
  opacity: 1;
}

.streamer-card .live-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
  animation: livePulse 2s infinite;
  color: white;
}

@keyframes livePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(102, 126, 234, 0);
  }
}

.streamer-card .live-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

.streamer-card .viewers {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.3rem 0.6rem;
  border-radius: 10px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.streamer-card h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.3rem;
  color: white;
}

.streamer-card .category {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Watch Button Overlay */
.streamer-card .watch-overlay {
  position: absolute;
  inset: 0;
  background: rgba(102, 126, 234, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 4;
}

.streamer-card:hover .watch-overlay {
  opacity: 0.8;
}

.watch-btn {
  padding: 1rem 2rem;
  background: white;
  color: var(--accent);
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: scale(0);
  transition: transform 0.3s ease 0.1s;
}

.streamer-card:hover .watch-btn {
  transform: scale(1);
}

/* Gifts Section */

.gifts .container {
  max-width: 1200px;
  margin: 0 auto; /* center whole section */
}
.gifts {
  padding: 5rem 0;
  position: relative;
}

.gifts-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  justify-content: center;
}

.gifts-text h2 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-tight);
  color: var(--text-primary);
}

.gifts-text p {
  color: var(--text-secondary);
  font-size: var(--font-size-lg);
  margin-bottom: 2rem;
}

.gift-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gift-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.gift-feature:hover {
  transform: translateX(10px);
  background: var(--accent-bg);
  border-color: var(--accent);
}

.gift-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: transform 0.4s ease;
  color: var(--text-primary);
}

.gift-feature:hover .gift-feature-icon {
  transform: rotate(10deg) scale(1.1);
}

.gift-feature h4 {
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.3rem;
  color: var(--text-primary);
}

.gift-featur.step p {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  color: var(--text-secondary) !important;
  line-height: var(--line-height-relaxed);
}

.gifts-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.gifts-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  perspective: 1000px;
}

.gift-item {
  width: 100px;
  height: 100px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gift-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gift-item:hover::before {
  opacity: 0.1;
}

.gift-item:hover {
  transform: translateY(-10px) rotateY(10deg) scale(1.1);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
  border-color: var(--accent);
}

.gift-item .emoji {
  font-size: 2.5rem;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.gift-item:hover .emoji {
  transform: scale(1.3) rotate(10deg);
  animation: giftWiggle 0.5s ease;
}

@keyframes giftWiggle {
  0%,
  100% {
    transform: scale(1.3) rotate(0deg);
  }
  25% {
    transform: scale(1.3) rotate(-10deg);
  }
  75% {
    transform: scale(1.3) rotate(10deg);
  }
}

.gift-item .price {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

/* Coin Animation */
.coin-burst {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent);
  border-radius: 50%;
  animation: coinBurst 1s ease forwards;
  pointer-events: none;
}

@keyframes coinBurst {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(2) translateY(-50px);
    opacity: 0;
  }
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, var(--accent), transparent);
  animation: statRotate 4s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

@keyframes statRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--primary-bg);
  border-radius: 22px;
  z-index: 0;
}

.stat-card:hover::before {
  opacity: 0.5;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
  color: white;
}

.stat-card:hover .stat-icon {
  transform: scale(1.2) rotate(360deg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

/* Google Play Integration Section */
.google-play-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
  position: relative;
}

.google-play-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr; /* Increased video column width */
  gap: 5rem; /* Increased gap for better breathing room */
  align-items: center;
}

.google-play-text h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.google-play-text p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.app-feature i {
  color: var(--primary);
  font-size: 1rem;
}

.download-buttons {
  display: flex;
  align-items: center;
  gap: 15px; /* space between buttons */
  flex-wrap: wrap; /* responsive */
}

.download-buttons a {
  display: inline-block;
}

.download-buttons svg {
  height: 50px; /* control size */
  width: auto;
}

/* Optional: keep rating inline */
.rating-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 15px;
}

.rating-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}

.stars i {
  color: #ffd700;
  font-size: 0.9rem;
}

.phone-mockup-large {
  width: 350px;
  height: 700px;
  background: linear-gradient(145deg, #1a1a2e 0%, #0f0f1a 100%);
  border-radius: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  overflow: hidden;
  margin: 0 auto;
  transform: rotateY(-15deg) rotateX(5deg);
  animation: floatPhone 6s ease-in-out infinite;
}

.phone-screen-large {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0f0f16 0%, #050507 100%);
  padding: 30px 20px;
  position: relative;
}

.app-preview {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.app-logo img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
}

.app-info h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: white;
  margin-bottom: 0.25rem;
}

.app-info p {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.app-screenshots {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screenshot {
  width: 100%;
  height: 400px;
  background: var(--gradient-main);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.screenshot-content {
  text-align: center;
  color: white;
}

.screenshot-content i {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.screenshot-content p {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  color: rgba(92, 111, 255, 0.15);
  font-family: 'DM Sans', sans-serif;
  line-height: 1;
  transition: color 0.4s ease;
}

.testimonial-card:hover::before {
  color: rgba(92, 111, 255, 0.3);
}

.testimonial-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  border-color: rgba(92, 111, 255, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  color: #c084fc;
  margin-bottom: 1rem;
}

.testimonial-stars i {
  animation: starPop 0.3s ease forwards;
  opacity: 0;
  transform: scale(0);
}

.testimonial-stars i:nth-child(1) {
  animation-delay: 0.1s;
}
.testimonial-stars i:nth-child(2) {
  animation-delay: 0.2s;
}
.testimonial-stars i:nth-child(3) {
  animation-delay: 0.3s;
}
.testimonial-stars i:nth-child(4) {
  animation-delay: 0.4s;
}
.testimonial-stars i:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes starPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial-content p {
  font-size: var(--font-size-base);
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-relaxed);
  font-weight: var(--font-weight-normal);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1);
}

.testimonial-avatar.gradient-1 {
  background: var(--gradient-fire);
}
.testimonial-avatar.gradient-2 {
  background: var(--gradient-purple);
}
.testimonial-avatar.gradient-3 {
  background: var(--gradient-cyan);
}

.testimonial-info h4 {
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.2rem;
}

.testimonial-info p {
  font-size: var(--font-size-xs);
  color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  position: relative;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: 1.5rem;
  line-height: var(--line-height-tight);
}

.contact-info h2 .gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradientFlow 3s ease infinite;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-lg);
  margin-bottom: 2.5rem;
  line-height: var(--line-height-relaxed);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.contact-method::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--gradient-main);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.contact-method:hover::before {
  transform: scaleY(1);
}

.contact-method:hover {
  transform: translateX(10px);
  border-color: rgba(92, 111, 255, 0.3);
  background: rgba(92, 111, 255, 0.1);
}

.contact-method-icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.contact-method:hover .contact-method-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-method-text h4 {
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.25rem;
  font-size: var(--font-size-lg);
}

.contact-method-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
}

.social-contact {
  margin-top: 2.5rem;
}

.social-contact h4 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.social-icon:hover::before {
  transform: scale(1);
}

.social-icon i,
.social-icon svg {
  position: relative;
  z-index: 1;
}

.social-icon:hover {
  border-color: transparent;
  transform: translateY(-5px) scale(1.1) rotate(360deg);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 2rem;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-main);
}

.contact-form-wrapper h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
}

.contact-form-wrapper > p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  line-height: var(--line-height-normal);
}

.form-group label span {
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(14, 16, 32, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-primary);
  transition: all 0.3s ease;
  outline: none;
  min-height: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  color: var(--text-primary);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(92, 111, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(92, 111, 255, 0.15);
}

/* Honeypot field - hidden from users but visible to bots */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  transform: translateY(-2px);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

.form-group select option {
  background: var(--surface);
  color: var(--text-primary);
}

.form-group textarea {
  min-height: 95px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-checkbox input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
  cursor: pointer;
  margin-top: 2px;
}

.form-checkbox label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--primary);
  text-decoration: none;
}

.form-checkbox label a:hover {
  text-decoration: underline;
}

.submit-btn {
  background: var(--gradient-main);
  color: white;
  border: none;
  padding: 1.1rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
  box-shadow: 0 4px 20px rgba(92, 111, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(92, 111, 255, 0.5);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px) rotate(15deg);
}

/* CTA Section */
.cta {
  padding: 2rem 0;
  position: relative;
}

.cta-card {
  background: linear-gradient(135deg, rgba(92, 111, 255, 0.2) 0%, rgba(88, 86, 214, 0.2) 100%);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(92, 111, 255, 0.1) 0%, transparent 50%);
  animation: rotateCTA 30s linear infinite;
}

@keyframes rotateCTA {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.05) 50%, transparent 55%);
  background-size: 300% 300%;
  animation: ctaShine 4s infinite;
}

@keyframes ctaShine {
  0% {
    background-position: 200% 200%;
  }
  100% {
    background-position: -100% -100%;
  }
}

.cta-card h2 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-card h2 .gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--font-size-lg);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

.cta-rating .stars {
  color: #c084fc;
}

/* Footer */
.footer {
  background: rgba(5, 5, 10, 0.9);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 0 2rem;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-main);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--gradient-main);
  border-color: transparent;
  transform: translateY(-3px) rotate(360deg);
}

.footer-col h4 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--letter-spacing-wide);
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: var(--font-size-sm);
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 20px;
}

.footer-links a:hover::before {
  width: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--font-size-sm);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: var(--font-size-xs);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* Success Message */
.success-message {
  display: none;
  background: linear-gradient(135deg, rgba(52, 199, 89, 0.2) 0%, rgba(48, 209, 88, 0.2) 100%);
  border: 1px solid rgba(52, 199, 89, 0.3);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  margin-top: 1rem;
}

.success-message.show {
  display: block;
  animation: successPop 0.5s ease;
}

@keyframes successPop {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-message i {
  font-size: 3rem;
  color: #34c759;
  margin-bottom: 1rem;
  animation: successCheck 0.5s ease 0.3s forwards;
  transform: scale(0);
}

@keyframes successCheck {
  0% {
    transform: scale(0) rotate(-45deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.success-message h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.success-message p {
  color: rgba(255, 255, 255, 0.7);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-main);
  z-index: 9999;
  transform-origin: left;
  transform: scaleX(0);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: none;
  box-shadow: 0 4px 20px rgba(92, 111, 255, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 30px rgba(92, 111, 255, 0.5);
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text {
    order: 1;
  }

  .hero-visual {
    order: 0;
    margin-bottom: 3rem;
  }

  .hero p {
    margin: 0 auto 2.5rem;
  }

  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .streamers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gifts-content,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .gifts-visual {
    order: -1;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 5%;
  }

  .nav-links {
    display: none;
  }

  .nav-buttons {
    display: none;
  }

  .cursor,
  .cursor-follower {
    display: none;
  }

  .hero {
    padding: 7rem 0 3rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-buttons {
    gap: 0.75rem;
  }

  .download-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 1rem;
  }

  .hero-stat {
    flex: 1 1 130px;
    text-align: center;
  }

  .hero-stat::after {
    display: none;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
    transform: rotateY(0) rotateX(0);
  }

  .phone-glow {
    width: 280px;
    height: 520px;
  }

  .phone-mockup:hover {
    transform: rotateY(0) rotateX(0);
  }

  @keyframes floatPhone {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }

  .floating-element,
  .orbit-container {
    display: none;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .steps-container {
    flex-direction: column;
    gap: 3rem;
  }

  .steps-container::before {
    display: none;
  }

  .step-number {
    width: 88px;
    height: 88px;
    margin-bottom: 1rem;
  }

  .streamers-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gifts-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .gift-item {
    width: 100%;
    height: auto;
    min-height: 88px;
    aspect-ratio: 1/1;
  }

  .contact-info h2 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-method {
    align-items: flex-start;
  }

  .social-icons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-card {
    padding: 3rem 1.5rem;
  }

  .cta-card h2 {
    font-size: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-main);
  border-radius: 5px;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: rgba(92, 111, 255, 0.3);
  color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.98);
  z-index: 2000;
  padding: 2rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mobile-menu.active {
  display: flex;
  animation: menuFadeIn 0.3s ease;
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.mobile-menu-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.mobile-menu-links a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-main);
  transition: width 0.3s ease;
}

.mobile-menu-links a:hover {
  color: var(--primary);
}

.mobile-menu-links a:hover::after {
  width: 100%;
}

/* Ripple Effect */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Text Reveal Animation */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  animation: textRevealUp 0.8s ease forwards;
}

@keyframes textRevealUp {
  to {
    transform: translateY(0);
  }
}

/* Glitch Effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--primary);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch1 5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 var(--accent);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch2 5s infinite linear alternate-reverse;
}

@keyframes glitch1 {
  0% {
    clip: rect(31px, 9999px, 94px, 0);
  }
  25% {
    clip: rect(62px, 9999px, 42px, 0);
  }
  50% {
    clip: rect(85px, 9999px, 73px, 0);
  }
  75% {
    clip: rect(24px, 9999px, 56px, 0);
  }
  100% {
    clip: rect(71px, 9999px, 89px, 0);
  }
}

@keyframes glitch2 {
  0% {
    clip: rect(65px, 9999px, 39px, 0);
  }
  25% {
    clip: rect(17px, 9999px, 82px, 0);
  }
  50% {
    clip: rect(49px, 9999px, 15px, 0);
  }
  75% {
    clip: rect(92px, 9999px, 68px, 0);
  }
  100% {
    clip: rect(33px, 9999px, 47px, 0);
  }
}

/* Neon Text */
.neon-text {
  text-shadow:
    0 0 5px var(--primary),
    0 0 10px var(--primary),
    0 0 20px var(--primary),
    0 0 40px var(--primary);
  animation: neonFlicker 1.5s infinite alternate;
}

@keyframes neonFlicker {
  0%,
  19%,
  21%,
  23%,
  25%,
  54%,
  56%,
  100% {
    text-shadow:
      0 0 5px var(--primary),
      0 0 10px var(--primary),
      0 0 20px var(--primary),
      0 0 40px var(--primary);
  }
  20%,
  24%,
  55% {
    text-shadow: none;
  }
}

/* Typing Animation */
.typing {
  overflow: hidden;
  border-right: 3px solid var(--primary);
  white-space: nowrap;
  animation:
    typing 3s steps(30, end),
    blink 0.75s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: var(--primary);
  }
}

/* Morphing Background */
.morph-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: var(--dark-bg);
}

.morph-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--gradient-main);
  filter: blur(100px);
  opacity: 0.3;
  animation: morphShape 15s ease-in-out infinite;
}

@keyframes morphShape {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: translate(100px, 50px) rotate(90deg);
  }
  50% {
    border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
    transform: translate(50px, 100px) rotate(180deg);
  }
  75% {
    border-radius: 60% 40% 70% 30% / 60% 30% 40% 70%;
    transform: translate(-50px, 50px) rotate(270deg);
  }
}

/* ===== FAQ SECTION (new) ===== */
.faq {
  padding: 5rem 0;
  position: relative;
}
.faq-container {
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.faq-item:hover {
  border-color: rgba(92, 111, 255, 0.3);
}

.faq-question {
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: rgba(92, 111, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: 0.3s;
}

.hero {
  position: relative;
  overflow: hidden;
}

/* Center video */
.hero-video {
  margin-top: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 100%;
  height: 100%;
  object-fit: cover;

  border-radius: 20px; /* optional nice look */
  z-index: 0;
}

/* Dark overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1; /* overlay above video */
}

/* Content above video */
.hero .container {
  position: relative;
  z-index: 2; /* content on top */
}

.faq-item.active .faq-icon {
  background: var(--primary);
  color: #fff;
}

.faq-question h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  flex: 1;
}

.faq-toggle {
  width: 30px;
  height: 30px;
  /* background: rgba(255,255,255,0.05); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: var(--primary);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  padding: 0 2rem;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s;
  color: rgba(255, 255, 255, 0.7);
  border-top: 0px solid transparent;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding: 1rem 2rem 1rem 2rem;
  border-top: 1px solid rgba(92, 111, 255, 0.2);
}

.faq-cta {
  text-align: center;
  margin-top: 3rem;
  letter-spacing: 0.1em;
  /* margin-bottom: 3rem; */
}

/* ===== BLOG SECTION (new) ===== */

.blog {
  padding: 5rem 0;
  position: relative;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: 0.4s;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(120, 78, 254, 0.2);
}

.blog-card-featured {
  grid-column: span 2;
}

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-main);
  padding: 0.3rem 1rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
}

.blog-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: 0.3s;
}

.blog-card:hover .blog-overlay {
  opacity: 1;
}

.read-more-btn {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transform: translateY(10px);
  transition: 0.3s;
}

.blog-card:hover .read-more-btn {
  transform: translateY(0);
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.blog-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.blog-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-purple);
}

.author-info span {
  display: block;
  font-size: 0.8rem;
}

.author-name {
  font-weight: 600;
}

.author-role {
  color: rgba(255, 255, 255, 0.5);
}

.blog-cta {
  text-align: center;
  margin-top: 3rem;
  letter-spacing: 0.1em;
}

@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-video {
    margin-top: 0;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .blog-card-featured {
    grid-column: span 1;
  }

  .blog-image {
    height: 200px;
  }

  .faq-question {
    padding: 1rem 1.1rem;
    gap: 0.75rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 1.1rem;
    font-size: 0.92rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 1.1rem 1rem 1.1rem;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 480px) {
  .mobile-menu-links a {
    font-size: 1.15rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .gifts-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrapper {
    padding: 1.25rem;
  }

  .cta-card {
    border-radius: 24px;
    padding: 2rem 1rem;
  }

  .cta-rating {
    flex-wrap: wrap;
    text-align: center;
  }

  .testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50% !important;
    overflow: hidden;
    flex-shrink: 0;
  }

  .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ===== CAMERAFI-INSPIRED NEW STYLES ===== */

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: flex !important;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.nav-chevron {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 60%;
  transform: translateX(-30%);
  background: rgba(15, 15, 25, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.75rem;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 999;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 8px);
}
.nav-dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  padding: 0.9rem 1rem !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  color: white !important;
  transition: background 0.2s ease !important;
}
.nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}
.nav-dropdown-item::before,
.nav-dropdown-item::after {
  display: none !important;
}
.nav-dropdown-item .dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.nav-dropdown-item > div > strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.nav-dropdown-item > div > span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600; /* Bolder */
}

/* Sign In Button */
.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: var(--font-size-xs);
}

/* Hero Platform Badges */
.hero-platforms {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 2.85s forwards;
}
.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: white;
  transition: all 0.2s ease;
}
.platform-badge:hover {
  background: rgba(92, 111, 255, 0.15);
  border-color: rgba(92, 111, 255, 0.3);
  color: white;
}
.platform-badge .fab {
  font-size: 0.95rem;
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
  padding: 5rem 0;
  position: relative;
}
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin: 2.5rem 0 3rem;
  flex-wrap: wrap;
}
.product-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.65);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-tab:hover {
  border-color: rgba(92, 111, 255, 0.4);
  color: white;
  background: rgba(92, 111, 255, 0.08);
}
.product-tab.active {
  background: var(--gradient-main);
  border-color: transparent;
  color: white;
  box-shadow: 0 4px 20px rgba(92, 111, 255, 0.35);
}

.device-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 24px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(92, 111, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.device-video:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(92, 111, 255, 0.3);
}
.product-panels {
  position: relative;
}
.product-panel {
  display: none;
}
.product-panel.active {
  display: block;
  animation: fadeInUp 0.5s ease;
}
.product-panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3.5rem;
}
.product-label {
  display: inline-block;
  background: rgba(92, 111, 255, 0.1);
  border: 1px solid rgba(92, 111, 255, 0.25);
  color: var(--primary);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.product-panel-text h3 {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 2px;
}

.product-panel-text p {
  color: var(--text-secondary);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-weight: 600; /* High visibility */
}
.product-features-list {
  list-style: none;
  margin-bottom: 2rem;
}
.product-features-list li {
  font-size: 1.1rem;
  font-weight: 600; /* Bolder for visibility */
  color: var(--text-secondary) !important;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-features-list li i {
  color: var(--accent);
  font-size: 1.3rem;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.3));
  flex-shrink: 0;
}

/* Product Device Mockups */
.product-panel-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-device-mockup {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(145deg, #1a1a2e, #0d0d1a);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  overflow: hidden;
  animation: floatPhone 6s ease-in-out infinite;
}
.device-screen {
  padding: 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Live Preview Screen */
.live-preview-screen {
  background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
}
.streaming-platforms {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 2rem;
}
.streaming-platforms span {
  background: rgba(255, 255, 255, 0.08);
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.streaming-platforms span:hover {
  transform: scale(1.1);
}
.live-preview-screen .live-badge {
  position: relative;
  top: auto;
  left: auto;
  margin-bottom: 1rem;
}
.live-preview-screen .viewer-count {
  position: relative;
  top: auto;
  right: auto;
}

/* Studio Preview Screen */
.studio-preview-screen {
  background: linear-gradient(135deg, #0d1a2e, #0a0f1a);
  min-height: 280px;
}
.studio-overlay-demo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.overlay-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 500;
  animation: floatPhone 4s ease-in-out infinite;
}
.overlay-item.text-overlay {
  background: rgba(255, 200, 0, 0.15);
  border: 1px solid rgba(255, 200, 0, 0.3);
  color: #c084fc;
  animation-delay: 0s;
}
.overlay-item.image-overlay {
  background: rgba(0, 212, 255, 0.15);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  animation-delay: -2s;
}
.overlay-item.filter-overlay {
  background: rgba(175, 82, 222, 0.15);
  border: 1px solid rgba(175, 82, 222, 0.3);
  color: #af52de;
  animation-delay: -4s;
}

/* Gifts Preview Screen */
.gifts-preview-screen {
  background: linear-gradient(135deg, #1a0d2e, #0f0a1a);
  min-height: 280px;
}
.gifts-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  text-align: center;
  font-size: 2.5rem;
}
.gifts-demo-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  animation: floatGift 3s ease-in-out infinite;
}
.gifts-demo-grid span:hover {
  transform: scale(1.15);
  background: rgba(92, 111, 255, 0.15);
}
.gifts-demo-grid span:nth-child(1) {
  animation-delay: 0s;
}
.gifts-demo-grid span:nth-child(2) {
  animation-delay: -0.5s;
}
.gifts-demo-grid span:nth-child(3) {
  animation-delay: -1s;
}
.gifts-demo-grid span:nth-child(4) {
  animation-delay: -1.5s;
}
.gifts-demo-grid span:nth-child(5) {
  animation-delay: -2s;
}
.gifts-demo-grid span:nth-child(6) {
  animation-delay: -2.5s;
}

/* ===== PLATFORMS SECTION ===== */
.platforms-section {
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
}
.platforms-label {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 500;
}
.platforms-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.platform-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
  cursor: default;
}
.platform-logo-item:hover {
  color: rgba(255, 255, 255, 0.85);
  transform: translateY(-4px);
}
.platform-logo-item i {
  font-size: 2.2rem;
}
.platform-logo-item span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ===== FEATURE CHECKLIST ===== */
.feature-checklist {
  list-style: none;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.2rem 0;
}
.feature-checklist li i {
  color: var(--primary);
  font-size: 0.75rem;
}

/* ===== FOOTER APP DOWNLOAD BUTTONS ===== */
.footer-app-links {
  display: flex;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
  flex-wrap: wrap;
}
.footer-app-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 0.5rem 1.1rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.footer-app-btn:hover {
  background: rgba(92, 111, 255, 0.15);
  border-color: rgba(92, 111, 255, 0.3);
  color: white;
}
.footer-app-btn i {
  font-size: 1rem;
}
.footer-links li a i {
  font-size: 0.8rem;
  width: 16px;
  margin-right: 0.3rem;
  opacity: 0.7;
}

/* ===== MOBILE MENU SECTION DIVIDERS ===== */
.mobile-menu-section {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
  padding: 1.25rem 0 0.5rem;
}
.mobile-menu-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.75rem 0;
}
.mobile-menu-links a i {
  width: 20px;
  opacity: 0.7;
}

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 900px) {
  .product-panel-content {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }
  .product-panel-text h3 {
    font-size: 1.75rem;
  }
  .platforms-logos {
    gap: 2rem;
  }
  .nav-dropdown-menu {
    display: none;
  }
  .product-tab {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 600px) {
  .platforms-logos {
    gap: 1.5rem;
  }
  .platform-logo-item i {
    font-size: 1.8rem;
  }
  .hero-platforms {
    gap: 0.4rem;
  }
  .platform-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.7rem;
  }
  .product-tabs {
    gap: 0.5rem;
  }
  .gifts-demo-grid {
    gap: 0.75rem;
    font-size: 2rem;
  }
  .gifts-demo-grid span {
    width: 58px;
    height: 58px;
  }
  .footer-app-links {
    flex-direction: column;
  }
}

/* ===== RESPONSIVE TYPOGRAPHY SYSTEM ===== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
  :root {
    --font-size-xs: 0.8125rem;
    --font-size-sm: 0.9375rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.25rem;
    --font-size-6xl: 4rem;
  }

  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  h3 {
    font-size: var(--font-size-2xl);
  }

  h4 {
    font-size: var(--font-size-xl);
  }

  p {
    font-size: var(--font-size-base);
  }
}

/* Mobile (481px - 768px) */
@media (max-width: 768px) {
  :root {
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 0.9375rem;
    --font-size-lg: 1rem;
    --font-size-xl: 1.125rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2rem;
    --font-size-5xl: 2.5rem;
    --font-size-6xl: 3rem;
  }

  h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: 1.25rem;
  }

  h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: 1rem;
  }

  h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: 0.875rem;
  }

  h4 {
    font-size: var(--font-size-lg);
    margin-bottom: 0.75rem;
  }

  h5,
  h6 {
    font-size: var(--font-size-base);
    margin-bottom: 0.625rem;
  }

  p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
  }

  .btn {
    padding: 0.625rem 1.25rem;
    font-size: var(--font-size-sm);
  }

  .btn-large {
    padding: 0.75rem 2rem;
    font-size: var(--font-size-base);
  }

  .section-header h2 {
    font-size: var(--font-size-3xl);
  }

  .section-header p {
    font-size: var(--font-size-base);
  }

  .hero-badge {
    font-size: var(--font-size-xs);
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
  }

  .platform-badge {
    font-size: var(--font-size-sm);
    padding: 0.4rem 1rem;
  }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
  :root {
    --font-size-xs: 0.6875rem;
    --font-size-sm: 0.8125rem;
    --font-size-base: 0.875rem;
    --font-size-lg: 0.9375rem;
    --font-size-xl: 1rem;
    --font-size-2xl: 1.25rem;
    --font-size-3xl: 1.5rem;
    --font-size-4xl: 1.75rem;
    --font-size-5xl: 2rem;
    --font-size-6xl: 2.5rem;
  }

  h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: 1rem;
  }

  h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: 0.875rem;
  }

  h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: 0.75rem;
  }

  h4 {
    font-size: var(--font-size-lg);
    margin-bottom: 0.625rem;
  }

  p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    margin-bottom: 1rem;
  }

  .btn {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
    gap: 0.4rem;
  }

  .btn-large {
    padding: 0.625rem 1.5rem;
    font-size: var(--font-size-sm);
  }

  .btn-sm {
    padding: 0.375rem 0.875rem;
    font-size: var(--font-size-xs);
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-header h2 {
    font-size: var(--font-size-3xl);
  }

  .section-header p {
    font-size: var(--font-size-sm);
  }

  .hero-badge {
    font-size: var(--font-size-xs);
    padding: 0.3rem 0.8rem;
    margin-bottom: 1rem;
    gap: 0.4rem;
  }

  .platform-badge {
    font-size: var(--font-size-xs);
    padding: 0.3rem 0.8rem;
    gap: 0.4rem;
  }

  .form-group label {
    font-size: var(--font-size-xs);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: var(--font-size-sm);
    padding: 0.875rem 1rem;
    min-height: 2.75rem;
  }

  .form-group textarea {
    min-height: 100px;
  }

  small,
  .text-sm {
    font-size: var(--font-size-xs);
  }
}

/* Extra Small Mobile (Up to 320px) */
@media (max-width: 320px) {
  :root {
    --font-size-xs: 0.625rem;
    --font-size-sm: 0.75rem;
    --font-size-base: 0.8125rem;
    --font-size-lg: 0.875rem;
    --font-size-xl: 0.9375rem;
    --font-size-2xl: 1.125rem;
    --font-size-3xl: 1.25rem;
    --font-size-4xl: 1.5rem;
    --font-size-5xl: 1.75rem;
    --font-size-6xl: 2rem;
  }

  h1 {
    line-height: var(--line-height-tight);
  }

  p {
    margin-bottom: 0.875rem;
  }

  .btn {
    padding: 0.4rem 0.8rem;
    min-width: auto;
  }
}

/* Responsive for Google Play Section */
@media (max-width: 991px) {
  .google-play-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .google-play-text {
    order: 1;
  }

  .product-panel-visual {
    order: 2;
    max-width: 700px;
    margin: 0 auto;
  }

  .download-buttons {
    justify-content: center;
  }

  .rating-info {
    justify-content: center;
    margin-left: 0;
    margin-top: 1rem;
  }
}
