:root {
  --bg: #020617;
  --bg-dark: #000000;
  --bg-soft: #0f172a;
  --bg-accent: #1e293b;
  --card: rgba(30, 41, 59, 0.5);
  --border: rgba(255, 255, 255, 0.06);
  --border-bright: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #94a3b8;
  
  /* Neon Accents */
  --accent-violet: #8b5cf6;
  --accent-cyan: #06b6d4;
  --accent-rose: #f43f5e;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  
  /* Gradients */
  --grad-premium: linear-gradient(135deg, #8b5cf6, #06b6d4);
  --grad-hot: linear-gradient(135deg, #f43f5e, #f59e0b);
  --grad-vibrant: linear-gradient(90deg, #8b5cf6, #d946ef, #f43f5e);
  
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --glass: backdrop-filter: blur(16px);
}

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

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Base Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Poppins', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

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

.text-gradient {
  background: linear-gradient(to right, #fff, var(--muted));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-padding { padding: 100px 0; }


/* Navbar */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.3s ease;
  padding: 20px 0;
}

.nav.scrolled {
  padding: 12px 0;
  background: rgba(3, 7, 18, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  background: var(--grad-vibrant);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1000;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--accent-violet);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--accent-violet);
}

/* Premium Buttons */
.btn {
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  transition: none;
}

.btn:hover::before {
  animation: shine 0.7s forwards;
}

.btn-primary {
  background: var(--grad-premium);
  color: #fff;
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4), 0 0 20px rgba(139, 92, 246, 0.2);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
}

.btn-outline:hover {
  background: rgba(6, 182, 212, 0.1);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
  transform: translateY(-3px);
}

.btn-white {
  background: #fff;
  color: var(--bg);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* Hero Section Refinement */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  color: var(--accent-violet);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  display: block;
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.hero-card-wrapper {
  position: relative;
  width: 300px;
  height: 420px;
  transform-style: preserve-3d;
  animation: rotate-hero 20s linear infinite;
}

.hero-card-item {
  position: absolute;
  width: 260px;
  height: 380px;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease;
}

.hero-card-item i {
  font-size: 4rem;
  background: var(--grad-premium);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.card-line {
  width: 60%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin-bottom: 10px;
}

.card-line.short { width: 40%; }

.card-top {
  transform: translateZ(50px) rotateY(-10deg);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(17, 24, 39, 0.8));
  border-color: rgba(139, 92, 246, 0.4);
  animation: float-top 4s ease-in-out infinite;
  z-index: 3;
}

.card-middle {
  transform: translateZ(0) rotateY(0);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(17, 24, 39, 0.8));
  animation: float-middle 5s ease-in-out infinite;
  z-index: 2;
}

.card-bottom {
  transform: translateZ(-50px) rotateY(10deg);
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.1), rgba(17, 24, 39, 0.8));
  animation: float-bottom 6s ease-in-out infinite;
  z-index: 1;
}

.hero-level-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--grad-hot);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--bg);
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.4);
  z-index: 10;
  animation: pulse-level 2s ease-in-out infinite;
}

.hero-level-badge .lvl {
  font-size: 0.7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1em;
}

.hero-level-badge .num {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

@keyframes rotate-hero {
  0%, 100% { transform: rotateY(-5deg) rotateX(5deg); }
  50% { transform: rotateY(5deg) rotateX(-5deg); }
}

@keyframes float-top {
  0%, 100% { transform: translateZ(50px) rotateY(-10deg) translateY(0); }
  50% { transform: translateZ(60px) rotateY(-12deg) translateY(-15px); }
}

@keyframes float-middle {
  0%, 100% { transform: translateZ(0) translateY(0); }
  50% { transform: translateZ(5px) translateY(-10px); }
}

@keyframes float-bottom {
  0%, 100% { transform: translateZ(-50px) rotateY(10deg) translateY(0); }
  50% { transform: translateZ(-60px) rotateY(12deg) translateY(-5px); }
}

@keyframes pulse-level {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(244, 63, 94, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 15px 45px rgba(244, 63, 94, 0.6); }
}

.hero-card-glow {
  position: absolute;
  inset: -50px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}


/* Feature Sections */
.section { 
  padding: 120px 0; 
  border-top: 1px solid var(--border);
  position: relative;
  box-shadow: inset 0 20px 40px -20px rgba(0,0,0,0.5);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-bright), transparent);
}

.section:nth-of-type(even) {
  background-color: var(--bg-soft);
}

.section:nth-of-type(odd) {
  background-color: var(--bg);
}

.stats-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 40px;
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card i {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: block;
  background: var(--grad-premium);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
}

.feature-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Stats Strip */
.stats-strip {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 20px;
  transition: all 0.4s ease;
  position: relative;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item h3 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 12px;
  display: block;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.1));
}

.stat-item:nth-child(1) h3 {
  background: var(--grad-premium);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.3));
}

.stat-item:nth-child(2) h3 {
  background: var(--grad-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.3));
}

.stat-item:nth-child(3) h3 {
  background: linear-gradient(135deg, #f43f5e, #d946ef);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 15px rgba(244, 63, 94, 0.3));
}

.stat-item:nth-child(4) h3 {
  background: linear-gradient(135deg, #10b981, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 15px rgba(16, 185, 129, 0.3));
}

.stat-item p {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  opacity: 0.8;
}

.stat-item:hover h3 {
  transform: scale(1.1);
  filter: drop-shadow(0 0 25px currentColor);
}

/* Background Decorations */
.bg-blob {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  z-index: -1;
  pointer-events: none;
  animation: blob-float 20s infinite alternate;
}

.blob-1 {
  background: var(--accent-violet);
  top: -100px;
  left: -100px;
}

.blob-2 {
  background: var(--accent-cyan);
  bottom: -100px;
  right: -100px;
  animation-delay: -10s;
}

@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(100px, 50px) scale(1.1); }
}

/* Reveal Overrides */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger {
  display: grid;
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }

.video-showcase {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-soft);
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.feature-icon-circle i {
  animation: pulse-glow 3s infinite;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 18, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.video-showcase:hover .video-overlay {
  background: rgba(3, 7, 18, 0.4);
}

.play-btn {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  margin-bottom: 24px;
}

.play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: var(--grad-premium);
  opacity: 0.3;
  z-index: -1;
  animation: pulse-glow 2s infinite;
}

.play-btn i {
  font-size: 2.5rem;
  color: #fff;
  margin-left: 5px;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.5));
}

.play-btn:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}


/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 7, 18, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay { opacity: 1; }

/* Footer */
.footer {
  padding: 100px 0 40px;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-brand h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--muted);
  max-width: 320px;
  line-height: 1.6;
}

.footer-links h4 {
  color: #fff;
  margin-bottom: 24px;
  font-size: 1rem;
}

.footer-links ul { list-style: none; }

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Leaderboard */
.leaderboard {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 32px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.leaderboard-header {
  display: grid;
  grid-template-columns: 80px 1fr 100px;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.leaderboard-row {
  display: grid;
  grid-template-columns: 80px 1fr 100px;
  padding: 20px 32px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.leaderboard-row:last-child { border-bottom: none; }

.leaderboard-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.leaderboard-row .player {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: #fff;
}

.leaderboard-row .player img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.leaderboard-row .score {
  font-family: monospace;
  font-size: 1.1rem;
  color: var(--accent-cyan);
  font-weight: 700;
}

/* Mobile responsive for leaderboard */
@media (max-width: 600px) {
  .leaderboard-header, .leaderboard-row {
    grid-template-columns: 60px 1fr 80px;
  }
  .leaderboard-header span:nth-child(3),
  .leaderboard-row span:nth-child(3) {
    display: none;
  }
}
/* Mobile Responsive */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero-cta { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* Promo Banner */
.promo-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 80px;
}

.promo-banner {
  background: var(--grad-premium);
  border-radius: 32px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.promo-banner.secondary {
  grid-template-columns: 1fr 1.5fr;
}

.promo-banner.secondary .promo-content { order: 2; }
.promo-banner.secondary .promo-image { order: 1; }

.promo-banner::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  transform: rotate(-15deg);
  pointer-events: none;
}

.promo-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.promo-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 500px;
}

.promo-image {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8rem;
  color: #fff;
  filter: drop-shadow(0 0 30px rgba(255,255,255,0.3));
  animation: float 6s ease-in-out infinite;
}

/* Dev Journal */
.dev-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.dev-card::before {
  content: "“";
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.05);
  font-family: serif;
  line-height: 1;
}

.dev-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.dev-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  border: 2px solid var(--accent-violet);
}

.dev-info h3 {
  font-size: 1.5rem;
  color: #fff;
}

.dev-info span {
  color: var(--accent-violet);
  font-weight: 600;
  font-size: 0.9rem;
}

.dev-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  font-style: italic;
}

.dev-footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.dev-status {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: #fff;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse-glow 2s infinite;
}

/* Background Showcase */
.background-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--bg-soft);
  padding: 60px;
  border-radius: 40px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.background-showcase::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.showcase-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.showcase-content p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 500;
}

.feature-item i {
  color: var(--accent-violet);
}

/* 3D Background Card Refined */
.background-card-container {
  perspective: 2000px;
}

.background-card-3d {
  width: 100%;
  aspect-ratio: 16/10;
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-15deg) rotateX(10deg);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.background-card-container:hover .background-card-3d {
  transform: rotateY(5deg) rotateX(-5deg) scale(1.05);
}

.bg-layer {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.layer-deep {
  transform: translateZ(-50px);
  filter: brightness(0.4) blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
}

.layer-mid {
  transform: translateZ(0px);
  border: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), transparent);
}

.layer-top {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  transform: translateZ(50px);
  border: 1px solid rgba(255,255,255,0.2);
}

.card-content-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-content-visual i {
  font-size: 6rem;
  color: var(--accent-violet);
  filter: drop-shadow(0 0 30px var(--accent-violet));
  animation: float 4s ease-in-out infinite;
}

.visual-particles span {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--accent-cyan);
  border-radius: 50%;
  filter: blur(1px);
}

.visual-particles span:nth-child(1) { top: -30px; left: -50px; animation: float 3s infinite; }
.visual-particles span:nth-child(2) { bottom: -20px; right: -60px; animation: float 5s infinite 1s; }
.visual-particles span:nth-child(3) { top: 60px; right: -30px; animation: float 4s infinite 0.5s; }

.card-border-glow {
  position: absolute;
  inset: -3px;
  background: var(--grad-vibrant);
  border-radius: 35px;
  z-index: -1;
  opacity: 0.2;
  filter: blur(20px);
  transition: opacity 0.5s ease;
}

.background-card-container:hover .card-border-glow {
  opacity: 0.5;
}

.card-glint {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 45%, rgba(255,255,255,0.1) 50%, transparent 55%);
  background-size: 200% 200%;
  animation: shine 6s linear infinite;
  pointer-events: none;
  border-radius: 32px;
}

@media (max-width: 992px) {
  .background-showcase {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 24px;
  }
  .feature-list {
    align-items: center;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section-padding { padding: 60px 0; }
  .hero h1 { font-size: 3rem; }

  .promo-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px;
  }
  .promo-image { font-size: 5rem; }
  .dev-header { flex-direction: column; text-align: center; }
}

/* 3D Cards Showcase */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  perspective: 1500px;
}

.card-3d-wrap {
  height: 400px;
  perspective: 1000px;
}

.card-3d {
  width: 100%;
  height: 100%;
  background: var(--bg-soft);
  border-radius: 20px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid var(--border);
  cursor: pointer;
}

.card-3d:hover {
  transform: rotateY(15deg) rotateX(10deg);
  border-color: rgba(255, 255, 255, 0.2);
}

.card-3d-inner {
  position: absolute;
  inset: 12px;
  background: rgba(15, 23, 42, 0.8);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transform: translateZ(30px);
  text-align: center;
  padding: 20px;
}

.card-3d-inner i {
  font-size: 5rem;
  margin-bottom: 24px;
}

.card-name {
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #fff;
}

.card-stats {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.1em;
}

.rarity-mythic i { color: #d946ef; filter: drop-shadow(0 0 15px #d946ef); }
.rarity-epic i { color: var(--accent-cyan); filter: drop-shadow(0 0 15px var(--accent-cyan)); }
.rarity-legendary i { color: var(--accent-amber); filter: drop-shadow(0 0 15px var(--accent-amber)); }

.card-3d::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Progression System */
.progression-system {
  background: radial-gradient(circle at 50% 100%, rgba(139, 92, 246, 0.08), transparent 70%);
}

.progression-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  position: relative;
  gap: 20px;
}

.progression-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.progression-step:hover {
  transform: translateY(-15px);
}

.step-icon {
  width: 90px;
  height: 90px;
  background: var(--bg-soft);
  border: 2px solid var(--border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--muted);
  margin-bottom: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.progression-step.active .step-icon {
  border-color: var(--accent-violet);
  color: var(--accent-violet);
  background: rgba(139, 92, 246, 0.15);
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
}

.progression-step.special .step-icon {
  border-color: var(--accent-amber);
  color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.15);
  box-shadow: 0 0 50px rgba(245, 158, 11, 0.4);
  animation: pulse-glow 2s infinite;
}

.step-info h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.step-info p {
  font-size: 0.95rem;
  color: var(--muted);
}

.progression-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--accent-violet), var(--border));
  margin-top: -110px;
  opacity: 0.3;
  z-index: 1;
}

/* How it Works */
.how-it-works {
  background: var(--bg-dark);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.step-card {
  background: linear-gradient(135deg, var(--bg-soft), rgba(15, 23, 42, 0.3));
  padding: 50px 40px;
  border-radius: 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

.step-card:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-10px) scale(1.02);
  background: rgba(30, 41, 59, 0.8);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.step-num {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
}

.step-card-icon {
  width: 70px;
  height: 70px;
  background: var(--grad-premium);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 30px;
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.step-card h3 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  font-weight: 700;
}

.step-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .steps-grid { grid-template-columns: 1fr; }
  .progression-path { flex-direction: column; gap: 40px; }
  .progression-line { display: none; }
}

/* Shop Showcase */
.shop-showcase {
  background: var(--bg);
  position: relative;
}

.shop-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(2, 6, 23, 0.9));
  padding: 60px;
  border-radius: 40px;
  border: 1px solid var(--border-bright);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.shop-container::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1), transparent 70%);
  pointer-events: none;
}

.shop-info h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 24px;
}

.shop-features {
  display: flex;
  gap: 30px;
  margin: 32px 0 40px;
  flex-wrap: wrap;
}

.s-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 500;
}

.s-feature i {
  color: var(--accent-amber);
  font-size: 1.2rem;
}

.shop-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.shop-card-preview {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 350px;
}

.preview-item {
  position: absolute;
  width: 190px;
  height: 270px;
  background: var(--bg-soft);
  border: 2px solid var(--border-bright);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.item-skin {
  top: 0;
  left: 5%;
  transform: rotate(-12deg);
  border-color: var(--accent-amber);
  z-index: 3;
}

.item-bg {
  top: 20px;
  left: 30%;
  transform: rotate(0deg);
  border-color: var(--accent-cyan);
  z-index: 2;
}

.item-sound {
  top: 40px;
  left: 55%;
  transform: rotate(12deg);
  border-color: var(--accent-violet);
  z-index: 1;
}

.preview-item:hover {
  transform: rotate(0deg) scale(1.1) translateY(-20px);
  z-index: 10;
  opacity: 1;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
}

.item-skin i { color: var(--accent-amber); text-shadow: 0 0 20px rgba(245, 158, 11, 0.3); }
.item-bg i { color: var(--accent-cyan); text-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
.item-sound i { color: var(--accent-violet); text-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }

.skin-tag {
  position: absolute;
  top: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.preview-item i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #fff;
  text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.coin-price {
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

@media (max-width: 768px) {
  .shop-container {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px;
  }
  .shop-visual { height: 320px; }
  .preview-item { width: 160px; height: 220px; }
}

/* Enhanced Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-stagger.active > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.active > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.active > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.active > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.active > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.active > *:nth-child(6) { transition-delay: 0.6s; }

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .card-3d-wrap { height: 350px; }
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.roadmap-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.roadmap-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-violet);
  background: rgba(139, 92, 246, 0.05);
}

.roadmap-icon {
  font-size: 2rem;
  color: var(--accent-violet);
  flex-shrink: 0;
}

.roadmap-content .date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 8px;
}

.roadmap-content h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.roadmap-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Review Section */
.review-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.review-card {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 300px;
  max-width: 450px;
}

.review-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-amber);
  background: rgba(245, 158, 11, 0.05);
}

.c-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
  color: var(--accent-amber);
}

.review-card h3 {
  margin-bottom: 12px;
}

.review-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

/* Solo Developer Section */
.solo-developer {
  background: radial-gradient(circle at 0% 50%, rgba(139, 92, 246, 0.08), transparent 40%),
              radial-gradient(circle at 100% 50%, rgba(6, 182, 212, 0.05), transparent 40%),
              var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.solo-dev-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  padding: 60px;
  display: flex;
  align-items: center;
  gap: 60px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
}

.solo-dev-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--accent-violet);
  filter: blur(120px);
  opacity: 0.15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.solo-dev-content {
  flex: 1;
}

.solo-dev-content h2 {
  font-size: 2.5rem;
  margin: 16px 0 24px;
}

.solo-dev-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px;
}

.solo-features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.solo-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
}

.solo-feature i {
  color: var(--accent-violet);
  font-size: 1.2rem;
}

.solo-dev-icon {
  font-size: 8rem;
  color: var(--accent-violet);
  opacity: 0.1;
  position: absolute;
  right: 40px;
  bottom: -20px;
  transform: rotate(-15deg);
}

@media (max-width: 860px) {
  .solo-dev-card {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }
  .solo-features {
    justify-content: center;
  }
  .solo-dev-icon {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
    margin-top: 20px;
    font-size: 4rem;
  }
}

/* Dev Journal Enhancements */
.dev-journal {
  background: linear-gradient(to bottom, var(--bg), var(--bg-dark));
}

.dev-card {
  background: var(--bg-soft);
  border-radius: 40px;
  padding: 60px;
  border: 1px solid var(--border-bright);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.dev-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.dev-badge {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: var(--grad-premium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.dev-badge::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: badge-shine 3s infinite;
}

@keyframes badge-shine {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.dev-info h3 { font-size: 1.5rem; margin-bottom: 4px; }
.dev-info span { color: var(--accent-violet); font-weight: 600; font-size: 0.9rem; text-transform: uppercase; }

.dev-body p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  opacity: 0.9;
}

.dev-footer {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.dev-status {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--muted);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-emerald);
  animation: pulse-glow 1.5s infinite;
}

@media (max-width: 992px) {
  .review-grid { grid-template-columns: 1fr; }
  .dev-card { padding: 40px 24px; }
  .dev-header { flex-direction: column; text-align: center; }
}

/* Legal Pages (Impressum / Datenschutz) */
.legal-page {
  padding: 120px 0 60px;
  min-height: 100vh;
  background: var(--bg);
}

.legal-hero {
  text-align: center;
  margin-bottom: 60px;
}

.legal-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 16px 0;
  background: var(--grad-premium);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 32px;
  transition: color 0.3s ease;
}

.legal-back:hover {
  color: var(--accent-violet);
}

.legal-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 60px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.legal-section {
  margin-bottom: 48px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.legal-section p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-section a {
  color: var(--accent-cyan);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.legal-section a:hover {
  border-bottom-color: var(--accent-cyan);
  opacity: 0.8;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.info-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  word-break: break-all;
}

.info-card p {
  margin-bottom: 4px !important;
}

.section-subtitle {
  color: var(--muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 32px 24px;
  }
  .legal-hero h1 {
    font-size: 2.5rem;
  }
}

/* App Promo Section */
.app-promo {
  background: radial-gradient(circle at 100% 0%, rgba(6, 182, 212, 0.05), transparent 50%);
}

.app-promo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 0.8));
  padding: 80px;
  border-radius: 48px;
  border: 1px solid var(--border-bright);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.app-promo-content h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.app-stats-mini {
  display: flex;
  gap: 32px;
  margin: 32px 0 48px;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--muted);
}

.mini-stat i {
  font-size: 1.4rem;
}

.app-download-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-app {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 28px;
  background: #fff;
  color: #000;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-app:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3);
}

.btn-app i {
  font-size: 2rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-text .small { font-size: 0.75rem; font-weight: 500; opacity: 0.8; }
.btn-text .large { font-size: 1.1rem; }

.app-promo-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: #111;
  border: 10px solid #222;
  border-radius: 40px;
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(6, 182, 212, 0.2);
  position: relative;
  overflow: hidden;
  transform: rotate(5deg);
  transition: transform 0.5s ease;
}

.app-promo-container:hover .phone-mockup {
  transform: rotate(0deg) scale(1.05);
}

.phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 3rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.phone-mockup:hover .screen-overlay { opacity: 1; }

@media (max-width: 992px) {
  .app-promo-container {
    grid-template-columns: 1fr;
    padding: 60px 32px;
    gap: 60px;
    text-align: center;
  }
  .app-stats-mini, .app-download-buttons { justify-content: center; }
  .phone-mockup { margin: 0 auto; width: 220px; height: 460px; }
}

/* Neon Glow Enhancements */
.btn-primary {
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), 0 0 10px rgba(6, 182, 212, 0.4);
}

.feature-card:hover {
  border-color: var(--accent-violet);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.stat-item h3 {
  text-shadow: 0 0 20px currentColor;
}

.progression-step.active .step-icon {
  box-shadow: 0 0 30px var(--accent-violet), inset 0 0 15px var(--accent-violet);
}

.progression-step.special .step-icon {
  box-shadow: 0 0 40px var(--accent-amber), inset 0 0 20px var(--accent-amber);
}

.card-3d-inner {
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Extra Neon Touches */
.logo span { text-shadow: 0 0 15px rgba(217, 70, 239, 0.5); }
.hero-level-badge { box-shadow: 0 0 30px rgba(244, 63, 94, 0.5); }
.card-name { text-shadow: 0 0 15px rgba(255, 255, 255, 0.3); }
.badge { box-shadow: 0 0 15px rgba(139, 92, 246, 0.2); }
.roadmap-item:hover { box-shadow: 0 0 20px rgba(139, 92, 246, 0.15); }

/* --- Mobile Responsibility & Refinements --- */
@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    border-left: 1px solid var(--border);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
    color: #fff;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
    padding-top: 40px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .hero-card-wrapper {
    width: 240px;
    height: 340px;
  }

  .hero-card-item {
    width: 200px;
    height: 280px;
  }

  .section {
    padding: 80px 0;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .shop-container {
    padding: 40px 20px;
    border-radius: 30px;
  }

  .shop-features {
    justify-content: center;
  }

  .preview-item {
    width: 150px;
    height: 210px;
  }

  .item-skin { left: 5%; }
  .item-bg { left: 25%; }
  .item-sound { left: 45%; }
  
  .app-promo-container {
    padding: 40px 20px;
    border-radius: 32px;
  }

  .video-showcase {
    aspect-ratio: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .video-overlay {
    position: relative;
    inset: auto;
    padding: 60px 24px;
    width: 100%;
    min-height: 400px;
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(8px);
  }

  .video-overlay h3 {
    font-size: 1.8rem !important;
  }

  .background-card-3d {
    transform: none !important;
  }

  .background-card-container:hover .background-card-3d {
    transform: scale(1.02) !important;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.3rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-card-wrapper {
    width: 180px;
    height: 260px;
  }

  .hero-card-item {
    width: 160px;
    height: 220px;
  }

  .hero-level-badge {
    width: 70px;
    height: 70px;
    bottom: -10px;
    right: -10px;
  }

  .hero-level-badge .num {
    font-size: 1.4rem;
  }

  .shop-visual {
    height: 250px;
    margin-top: 20px;
  }

  .shop-card-preview {
    max-width: 300px;
  }

  .video-showcase {
    min-height: 400px;
  }

  .video-overlay h3 {
    font-size: 1.5rem !important;
  }

  .video-overlay p {
    font-size: 0.85rem !important;
  }

  .background-showcase {
    padding: 30px 16px;
  }

  .showcase-content h2 {
    font-size: 2rem !important;
  }

  .preview-item {
    width: 120px;
    height: 170px;
  }

  .item-skin { left: 0; transform: rotate(-10deg) translateX(0); }
  .item-bg { left: 50%; transform: translateX(-50%); }
  .item-sound { left: auto; right: 0; transform: rotate(10deg) translateX(0); }

  .app-download-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn, .btn-app {
    width: 100%;
  }
}

/* FAQ Section */
.faq {
  background: var(--bg);
}

.faq-grid {
  max-width: 800px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent-cyan);
}

.faq-question {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.faq-question i {
  font-size: 1rem;
  color: var(--muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 32px;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 32px;
  opacity: 1;
}

.faq-answer p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}


