@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Orbitron:wght@400;500;700;900&display=swap');

:root {
  --bg-primary: #0d0d0d;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #252525;
  --bg-card: #1f1f1f;
  --text-primary: #f5f5f5;
  --text-secondary: #b0b0b0;
  --purple-primary: #9333ea;
  --purple-light: #a855f7;
  --accent-gradient: linear-gradient(135deg, #9333ea 0%, #a855f7 50%, #7c3aed 100%);
  --shadow-purple: 0 4px 20px rgba(147, 51, 234, 0.3);
  --transition-normal: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 40% 30% at 10% 20%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 35% 25% at 90% 15%, rgba(168, 85, 247, 0.08) 0%, transparent 45%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3 { font-family: 'Orbitron', sans-serif; font-weight: 700; }
a { color: var(--purple-light); text-decoration: none; transition: color var(--transition-normal); }
a:hover { color: var(--purple-primary); }
section { margin-bottom: 60px; }

html.snap-exited {
  scroll-snap-type: none !important;
  scroll-behavior: auto !important;
}

html.snap-exited body {
  pointer-events: auto;
}

.snap-section {
  width: 100%;
  min-height: 100vh;
  scroll-snap-align: start;
  position: relative;
}

.snap-section.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 40px;
}

.snap-section.feature-section {
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.kenna-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(147, 51, 234, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  font-family: 'Orbitron', sans-serif;
}

.kenna-navbar nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
  padding: 0;
  margin: 0;
  align-items: center;
}

.kenna-navbar nav ul li a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 14px;
  position: relative;
  transition: all var(--transition-normal);
  text-decoration: none;
  letter-spacing: 1px;
}

.kenna-navbar nav ul li a:hover { color: var(--purple-primary); }

.kenna-navbar nav ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -6px;
  left: 0;
  background: var(--accent-gradient);
  transition: width var(--transition-normal);
}

.kenna-navbar nav ul li a:hover::after { width: 100%; }

.kenna-navbar nav ul li.logo-item a {
  font-size: 22px;
  font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.kenna-toggle { display: none; font-size: 24px; color: var(--text-primary); background: none; border: none; cursor: pointer; }
.kenna-toggle:hover { color: var(--purple-primary); }

@media (max-width: 768px) {
  .kenna-navbar { padding: 0 20px; }
  .kenna-navbar nav ul {
    display: none;
    flex-direction: column;
    gap: 20px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    padding: 30px;
    border-bottom: 1px solid rgba(147, 51, 234, 0.2);
  }
  .kenna-navbar nav ul.active { display: flex; animation: slideDown 0.3s ease forwards; }
  .kenna-toggle { display: block; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.ruby-balance {
  font-family: 'Orbitron', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--purple-primary);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(147, 51, 234, 0.1);
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(147, 51, 234, 0.2);
}

.hero {
  position: relative;
  text-align: center;
  padding-top: 140px;
  padding-bottom: 100px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(147, 51, 234, 0.4);
  animation: glow 3s ease-in-out infinite alternate;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-gradient);
  color: var(--bg-primary);
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-purple);
}

.hero .btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4); }

.hero .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-primary);
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
  pointer-events: none;
  box-shadow: 0 0 10px var(--purple-primary);
}

.hero .particle:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s; }
.hero .particle:nth-child(2) { left: 75%; top: 25%; animation-delay: 1.5s; }
.hero .particle:nth-child(3) { left: 30%; top: 60%; animation-delay: 3s; }
.hero .particle:nth-child(4) { left: 85%; top: 70%; animation-delay: 4.5s; }
.hero .particle:nth-child(5) { left: 10%; top: 80%; animation-delay: 6s; }
.hero .particle:nth-child(6) { left: 60%; top: 15%; animation-delay: 7.5s; }
.hero .particle:nth-child(7) { left: 45%; top: 85%; animation-delay: 2s; }
.hero .particle:nth-child(8) { left: 90%; top: 40%; animation-delay: 5s; }

@keyframes particleFloat {
  0%, 100% { opacity: 0; transform: translate(0, 0) scale(1); }
  10% { opacity: 0.6; }
  50% { opacity: 0.3; transform: translate(30px, -30px) scale(1.2); }
  90% { opacity: 0.5; }
}

@keyframes glow {
  from { filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.4)); }
  to { filter: drop-shadow(0 0 40px rgba(147, 51, 234, 0.6)); }
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

.scroll-indicator i { font-size: 1.5rem; color: var(--purple-primary); }

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

@media (max-width: 768px) {
  .hero h2 { font-size: 2rem; }
  .hero p { font-size: 1rem; padding: 0 20px; }
}

.feature-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  overflow: hidden;
}

.feature-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

.feature-section:nth-child(1)::before { background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(147, 51, 234, 0.4) 0%, transparent 60%); }
.feature-section:nth-child(2)::before { background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(168, 85, 247, 0.35) 0%, transparent 60%); }
.feature-section:nth-child(3)::before { background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(147, 51, 234, 0.3) 0%, transparent 60%); }
.feature-section:nth-child(4)::before { background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(168, 85, 247, 0.35) 0%, transparent 60%); }

.feature-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  width: 90%;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.feature-section:nth-child(odd) .feature-content { flex-direction: row; }
.feature-section:nth-child(even) .feature-content { flex-direction: row-reverse; }

.feature-visual { flex: 1.5; position: relative; }

.feature-bg {
  width: 100%;
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(147, 51, 234, 0.2);
}

.feature-info { flex: 1; padding: 40px; }

.feature-icon {
  font-size: 4rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-info h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--purple-primary);
  font-family: 'Orbitron', sans-serif;
}

.feature-info p { font-size: 1.2rem; color: var(--text-secondary); line-height: 1.8; }

@media (max-width: 992px) {
  .feature-content { flex-direction: column !important; text-align: center; gap: 40px; }
  .feature-info h3 { font-size: 2rem; }
  .feature-bg { aspect-ratio: 16/9; max-width: 100%; }
  .feature-icon { font-size: 3rem; }
}

.card-tiers {
  max-width: 1400px;
  margin: 0 auto 60px;
  padding: 60px 40px;
  text-align: center;
}

.card-tiers h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tiers-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tiers-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.frames-grid {
  margin-bottom: 30px;
}

.holographic-grid {
  margin-bottom: 50px;
}

.tier-card {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  padding: 30px 24px;
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 2px solid;
  transition: all 0.4s ease;
  text-align: center;
}

.tier-card:hover {
  transform: translateY(-8px);
}

.tier-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.tier-card:hover .tier-icon {
  transform: scale(1.15);
}

.tier-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.tier-card .chance {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

.tier-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Standard - Gray/Silver */
.tier-standard {
  border-color: rgba(156, 163, 175, 0.3);
  background: linear-gradient(180deg, rgba(156, 163, 175, 0.08) 0%, rgba(156, 163, 175, 0.02) 100%);
}
.tier-standard .tier-icon {
  color: #9ca3af;
  text-shadow: 0 0 15px rgba(156, 163, 175, 0.4);
}
.tier-standard h3 {
  color: #9ca3af;
}
.tier-standard .chance {
  background: rgba(156, 163, 175, 0.15);
  color: #9ca3af;
}
.tier-card.tier-standard:hover {
  border-color: rgba(156, 163, 175, 0.6);
  box-shadow: 0 10px 30px rgba(156, 163, 175, 0.15);
}

/* Fine - Green/Teal */
.tier-fine {
  border-color: rgba(20, 184, 166, 0.4);
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.08) 0%, rgba(20, 184, 166, 0.02) 100%);
}
.tier-fine .tier-icon {
  color: #14b8a6;
  text-shadow: 0 0 20px rgba(20, 184, 166, 0.5);
}
.tier-fine h3 {
  color: #14b8a6;
}
.tier-fine .chance {
  background: rgba(20, 184, 166, 0.15);
  color: #14b8a6;
}
.tier-card.tier-fine:hover {
  border-color: rgba(20, 184, 166, 0.7);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.25);
}

/* Elite - Purple */
.tier-elite {
  border-color: rgba(147, 51, 234, 0.4);
  background: linear-gradient(180deg, rgba(147, 51, 234, 0.08) 0%, rgba(147, 51, 234, 0.02) 100%);
}
.tier-elite .tier-icon {
  color: var(--purple-light);
  text-shadow: 0 0 20px rgba(147, 51, 234, 0.5);
}
.tier-elite h3 {
  color: var(--purple-light);
}
.tier-elite .chance {
  background: rgba(147, 51, 234, 0.15);
  color: var(--purple-light);
}
.tier-card.tier-elite:hover {
  border-color: rgba(147, 51, 234, 0.7);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.25);
}

/* Mythic - Gold */
.tier-mythic {
  border-color: rgba(234, 179, 8, 0.5);
  background: linear-gradient(180deg, rgba(234, 179, 8, 0.08) 0%, rgba(234, 179, 8, 0.02) 100%);
}
.tier-mythic .tier-icon {
  color: #eab308;
  text-shadow: 0 0 25px rgba(234, 179, 8, 0.6);
}
.tier-mythic h3 {
  color: #eab308;
}
.tier-mythic .chance {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
}
.tier-card.tier-mythic:hover {
  border-color: rgba(234, 179, 8, 0.8);
  box-shadow: 0 10px 40px rgba(234, 179, 8, 0.35);
  animation: mythicPulse 2s ease-in-out infinite;
}

@keyframes mythicPulse {
  0%, 100% { box-shadow: 0 10px 40px rgba(234, 179, 8, 0.35); }
  50% { box-shadow: 0 10px 50px rgba(234, 179, 8, 0.5); }
}

/* Holographic - Rainbow */
.tier-holo {
  max-width: 500px;
  flex: 0 1 500px;
  border-color: rgba(236, 72, 153, 0.5);
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.08) 0%, rgba(147, 51, 234, 0.05) 50%, rgba(59, 130, 246, 0.02) 100%);
}
.tier-holo .tier-icon {
  background: linear-gradient(135deg, #ec4899 0%, #9333ea 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 15px rgba(236, 72, 153, 0.5));
}
.tier-holo h3 {
  background: linear-gradient(135deg, #ec4899 0%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tier-holo .chance {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
  color: #ec4899;
}
.tier-card.tier-holo:hover {
  border-color: rgba(236, 72, 153, 0.7);
  box-shadow: 
    0 10px 40px rgba(236, 72, 153, 0.25),
    0 0 60px rgba(147, 51, 234, 0.15);
  animation: holoPulse 2s ease-in-out infinite;
}

@keyframes holoPulse {
  0%, 100% { box-shadow: 0 10px 40px rgba(236, 72, 153, 0.25), 0 0 60px rgba(147, 51, 234, 0.15); }
  50% { box-shadow: 0 10px 50px rgba(236, 72, 153, 0.4), 0 0 80px rgba(147, 51, 234, 0.25); }
}

/* Info Cards for Faces, Series, Quality */
.card-info-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  padding: 30px;
  background: var(--bg-secondary);
  border-radius: 16px;
  border: 1px solid rgba(147, 51, 234, 0.15);
  transition: all 0.4s ease;
  text-align: left;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(147, 51, 234, 0.35);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.15);
}

.info-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--purple-light);
}

.info-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.info-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .tiers-grid {
    gap: 20px;
  }
  .tier-card {
    min-width: 160px;
    max-width: none;
    flex: 1 1 180px;
  }
  .tier-holo {
    flex: 1 1 100%;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .card-tiers {
    padding: 40px 20px;
  }
  .card-tiers h2 {
    font-size: 2rem;
  }
  .tiers-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .tiers-grid {
    flex-direction: column;
    align-items: center;
  }
  .tier-card {
    width: 100%;
    max-width: 320px;
    padding: 24px 20px;
  }
  .info-card {
    width: 100%;
    max-width: 320px;
  }
}

.community-stats {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.globe-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.globe {
  width: 500px;
  height: 500px;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.globe-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  transform-style: preserve-3d;
  animation: globeRotate 20s linear infinite;
}

.globe-3d {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform-style: preserve-3d;
}

.globe-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(147, 51, 234, 0.4);
  border-radius: 50%;
  box-shadow: 
    0 0 20px rgba(147, 51, 234, 0.3),
    inset 0 0 30px rgba(147, 51, 234, 0.15);
  background: 
    linear-gradient(135deg, transparent 40%, rgba(147, 51, 234, 0.1) 50%, rgba(168, 85, 247, 0.1) 60%, transparent 70%),
    linear-gradient(225deg, transparent 40%, rgba(147, 51, 234, 0.1) 50%, rgba(168, 85, 247, 0.1) 60%, transparent 70%);
}

.globe-ring.horizontal-1 { transform: rotateX(0deg); }
.globe-ring.horizontal-2 { transform: rotateX(60deg); }
.globe-ring.horizontal-3 { transform: rotateX(120deg); }
.globe-ring.vertical-1 { transform: rotateY(0deg); }
.globe-ring.vertical-2 { transform: rotateY(60deg); }
.globe-ring.vertical-3 { transform: rotateY(120deg); }

.globe-sphere::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(147, 51, 234, 0.15) 0%,
    rgba(168, 85, 247, 0.1) 30%,
    transparent 70%
  );
  box-shadow: inset -40px -40px 80px rgba(0, 0, 0, 0.6);
}

.globe-sphere::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(147, 51, 234, 0.4) 0%,
    rgba(168, 85, 247, 0.2) 40%,
    transparent 70%
  );
  animation: globePulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes globeRotate {
  from { transform: rotateY(0deg) rotateX(10deg); }
  to { transform: rotateY(360deg) rotateX(10deg); }
}

@keyframes globePulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

.stats-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 30px;
  max-width: 1000px;
}

.stats-content h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(147, 51, 234, 0.4);
}

.stats-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.stat-card {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 25px 35px;
  border: 1px solid rgba(147, 51, 234, 0.2);
  transition: all 0.4s ease;
  min-width: 200px;
}

.stat-card.active-users {
  min-width: 400px;
  max-width: 500px;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(147, 51, 234, 0.2);
}

.stat-icon {
  font-size: 2rem;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 1rem;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px rgba(147, 51, 234, 0.3);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .globe { width: 400px; height: 400px; }
  .stats-row { gap: 20px; }
  .stat-card { padding: 20px 30px; min-width: 180px; }
  .stat-number { font-size: 2rem; }
  .stat-icon { font-size: 1.8rem; }
}

@media (max-width: 768px) {
  .globe { width: 300px; height: 300px; }
  .stats-content h2 { font-size: 2rem; }
  .stats-grid { flex-direction: column; align-items: center; }
  .stat-card { width: 100%; max-width: 300px; }
  .stat-card.active-users { max-width: 300px; }
  .stat-number { font-size: 2rem; }
}

@media (max-width: 480px) {
  .globe { width: 250px; height: 250px; }
  .stats-content { padding: 40px 20px; }
  .stat-card { padding: 25px 30px; }
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  animation: floatBounce 6s ease-in-out infinite;
}

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

.floating-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(30, 30, 30, 0.95);
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 
    0 6px 25px rgba(0, 0, 0, 0.4),
    0 0 15px rgba(147, 51, 234, 0.12);
  border: 1px solid rgba(147, 51, 234, 0.25);
  backdrop-filter: blur(20px);
  max-width: 220px;
}

.floating-cta-content span {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #d0d0d0;
  text-align: center;
}

.floating-cta-content .btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.floating-cta-content .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.4);
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
    left: 20px;
  }
  
  .floating-cta-content {
    flex-direction: row;
    justify-content: center;
    padding: 14px 20px;
    gap: 12px;
  }
  
  .floating-cta-content span {
    font-size: 0.85rem;
  }
  
  .floating-cta-content .btn {
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}

