:root {
  --cyan: #22d3ee;
  --magenta: #e879f9;
  --yellow: #fbbf24;
  --green: #34d399;
  --purple: #a855f7;

  --bg-0: #060b18;
  --bg-1: #0d1628;
  --bg-2: #111f3b;
  --bg-card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #475569;

  --glow-cyan: 0 0 24px rgba(34, 211, 238, 0.35);
  --glow-magenta: 0 0 24px rgba(232, 121, 249, 0.35);
  --glow-yellow: 0 0 24px rgba(251, 191, 36, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  background: var(--bg-0);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(6, 11, 24, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav-scrolled {
  background: rgba(6, 11, 24, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--cyan);
}

.btn-nav {
  padding: 0.5rem 1.25rem;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #000;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: var(--glow-cyan);
  color: #000;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(34, 211, 238, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(232, 121, 249, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 10% 60%, rgba(251, 191, 36, 0.07) 0%, transparent 50%);
  will-change: transform;
}

.hero-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(180deg, transparent 0%, var(--bg-1) 40%, #0a1020 100%);
  overflow: hidden;
}

.road-lines {
  position: absolute;
  bottom: 30px;
  left: -100%;
  width: 300%;
  height: 4px;
  display: flex;
  gap: 60px;
  animation: roadScroll 3s linear infinite;
}

.road-line {
  flex-shrink: 0;
  width: 80px;
  height: 4px;
  background: rgba(251, 191, 36, 0.6);
  border-radius: 2px;
}

@keyframes roadScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(140px));
  }
}

.stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 40%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 15%, rgba(255, 255, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 35%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 10%, rgba(255, 255, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 65%, rgba(255, 255, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 42% 70%, rgba(255, 255, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 55%, rgba(255, 255, 255, 0.5) 0%, transparent 100%);
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from {
    opacity: 0.6;
  }

  to {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-title .line-1 {
  display: block;
  color: var(--text-primary);
}

.hero-title .line-2 {
  display: block;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 50px rgba(34, 211, 238, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.25s, border-color 0.25s;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
}

.hero-play-btn {
  position: relative;
  overflow: hidden;
}

.click-counter {
  font-size: 0.8em;
  opacity: 0.8;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-suffix {
  font-size: 1rem;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

section {
  position: relative;
  z-index: 1;
}

.deferred-section {
  content-visibility: auto;
  contain-intrinsic-size: 900px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label,
.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
}

.sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.gameplay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gameplay-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.gameplay-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.gameplay-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gameplay-card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.card-title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.biomes-section {
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1) 50%, var(--bg-0));
}

.biomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.biome-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: transform 0.3s;
}

.biome-card:hover {
  transform: scale(1.04) translateY(-4px);
}

.biome-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.biome-info {
  position: relative;
  z-index: 2;
}

.biome-illustration {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.biome-name {
  font-family: "Orbitron", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.05em;
}

.biome-dist {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

.biome-1 {
  background: linear-gradient(180deg, #0f172a 0%, #312e81 50%, #1e293b 100%);
}

.biome-1::after {
  content: "🏙️";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
}

.biome-2 {
  background: linear-gradient(180deg, #450a0a 0%, #c2410c 50%, #7f1d1d 100%);
}

.biome-2::after {
  content: "🔴";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
}

.biome-3 {
  background: linear-gradient(180deg, #000000 0%, #1e1b4b 50%, #0f172a 100%);
}

.biome-3::after {
  content: "🌌";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
}

.biome-4 {
  background: linear-gradient(180deg, #0c4a6e 0%, #164e63 50%, #155e75 100%);
}

.biome-4::after {
  content: "🐙";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
}

.biome-5 {
  background: linear-gradient(180deg, #581c87 0%, #86198f 50%, #701a75 100%);
}

.biome-5::after {
  content: "⚛️";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
}

.biome-6 {
  background: linear-gradient(180deg, #1e1b4b 0%, #4c1d95 50%, #2e1065 100%);
}

.biome-6::after {
  content: "🗼";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
}

.biome-7 {
  background: linear-gradient(180deg, #1e3a5f 0%, #2d6a4f 50%, #1b4332 100%);
}

.biome-7::after {
  content: "🏔️";
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
}

.biome-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
  z-index: 1;
}

.features-section {
  background: var(--bg-0);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.feature-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-block:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.08);
}

.feature-block.accent-cyan:hover {
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.08);
}

.feature-block.accent-yellow:hover {
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 0 40px rgba(251, 191, 36, 0.08);
}

.feature-block.accent-green:hover {
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow: 0 0 40px rgba(52, 211, 153, 0.08);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-block.accent-cyan .feature-icon {
  background: rgba(34, 211, 238, 0.1);
}

.feature-block.accent-magenta .feature-icon {
  background: rgba(232, 121, 249, 0.1);
}

.feature-block.accent-yellow .feature-icon {
  background: rgba(251, 191, 36, 0.1);
}

.feature-block.accent-green .feature-icon {
  background: rgba(52, 211, 153, 0.1);
}

.feature-title {
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list li::before {
  content: "▸";
  color: var(--cyan);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.tech-section {
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1));
}

.tech-timeline {
  position: relative;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.tech-timeline::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cyan), var(--magenta), var(--yellow));
  border-radius: 1px;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding-left: 4.5rem;
  position: relative;
}

.tech-dot {
  position: absolute;
  left: 0.75rem;
  top: 0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--bg-1);
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  z-index: 1;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.4);
}

.tech-content {
  flex: 1;
}

.tech-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.tech-name {
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.tech-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.roadmap-section {
  background: var(--bg-0);
}

.roadmap-header {
  margin-bottom: 4rem;
}

.phase-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.phase-timeline::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    var(--green) 0%,
    var(--green) 20%,
    var(--cyan) 30%,
    var(--cyan) 50%,
    var(--magenta) 55%,
    var(--magenta) 68%,
    var(--yellow) 72%,
    var(--yellow) 100%
  );
  opacity: 0.4;
}

.phase-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.phase-item:last-child {
  border-bottom: none;
}

.phase-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.25rem;
}

.phase-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 2px solid;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.phase-dot.done {
  background: rgba(52, 211, 153, 0.1);
  border-color: var(--green);
  box-shadow: 0 0 15px rgba(52, 211, 153, 0.3);
}

.phase-dot.active {
  background: rgba(34, 211, 238, 0.1);
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(34, 211, 238, 0.4), 0 0 30px rgba(34, 211, 238, 0.2);
  animation: glowPulse 2s ease-in-out infinite;
}

.phase-dot.planned {
  background: rgba(232, 121, 249, 0.1);
  border-color: var(--magenta);
  box-shadow: 0 0 15px rgba(232, 121, 249, 0.2);
}

.phase-dot.future {
  background: rgba(251, 191, 36, 0.05);
  border-color: rgba(251, 191, 36, 0.4);
}

@keyframes glowPulse {
  0%,
  100% {
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.4), 0 0 30px rgba(34, 211, 238, 0.2);
  }

  50% {
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.6), 0 0 50px rgba(34, 211, 238, 0.3);
  }
}

.phase-year {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
}

.phase-content {
  padding-top: 0.25rem;
}

.phase-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.phase-tag.done {
  background: rgba(52, 211, 153, 0.1);
  color: var(--green);
}

.phase-tag.active {
  background: rgba(34, 211, 238, 0.1);
  color: var(--cyan);
}

.phase-tag.planned {
  background: rgba(232, 121, 249, 0.1);
  color: var(--magenta);
}

.phase-tag.future {
  background: rgba(251, 191, 36, 0.08);
  color: var(--yellow);
}

.phase-name {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.phase-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  max-width: 600px;
}

.phase-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.phase-chip {
  padding: 0.3rem 0.75rem;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.phase-chip.highlight {
  border-color: rgba(34, 211, 238, 0.3);
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.05);
}

.viral-section {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(34, 211, 238, 0.05));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.viral-card {
  background: var(--bg-card);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 3rem auto 0;
}

.share-link-demo {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 12px;
  padding: 1.25rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.78rem;
  color: var(--cyan);
  line-height: 1.6;
}

.share-result {
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(232, 121, 249, 0.08);
  border: 1px solid rgba(232, 121, 249, 0.2);
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--magenta);
  text-align: center;
  font-style: italic;
}

.viral-big-num {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--yellow), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.final-cta {
  background: linear-gradient(180deg, var(--bg-0), var(--bg-1));
  text-align: center;
}

.final-cta .section-inner {
  padding-bottom: 7rem;
}

.final-cta .section-title {
  max-width: 700px;
  margin: 0 auto 1rem;
}

.final-cta .section-desc {
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-section {
  padding-bottom: 6rem;
  text-align: center;
}

.faq-grid {
  display: grid;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
}

.faq-q {
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text-secondary);
}

.footer-socials {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.social-link.telegram:hover {
  color: #0088cc;
}

.social-link.x:hover {
  color: #1da1f2;
}

.social-link.discord:hover {
  color: #5865f2;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 3px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #000;
}

.progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 0.75rem;
}

.progress-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  transition: width 1s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.click-burst {
  position: fixed;
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  pointer-events: none;
  z-index: 9999;
  text-shadow: 0 0 10px var(--cyan);
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  will-change: transform, opacity;
}

#route-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(circle at center, rgba(255, 194, 120, 0.18) 0%, rgba(6, 11, 24, 0.92) 62%),
    rgba(6, 11, 24, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

#route-loading-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.route-loading-card {
  width: min(100%, 460px);
  padding: 1.5rem 1.4rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.88) 0%, rgba(10, 16, 32, 0.96) 100%);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.route-loading-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.route-loading-title {
  margin-top: 0.75rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-primary);
}

.route-loading-text {
  margin-top: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.55;
}

.route-loading-progress {
  margin-top: 1rem;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.route-loading-progress-fill {
  width: 40%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--yellow), var(--cyan), var(--magenta));
  animation: route-loading-fill 0.9s linear infinite;
}

body.route-loading {
  overflow: hidden;
}

body.route-loading .btn-primary,
body.route-loading .btn-nav {
  transform: translateY(-1px) scale(0.99);
}

@keyframes route-loading-fill {
  from {
    transform: translateX(-130%);
  }

  to {
    transform: translateX(320%);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  nav .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .features-grid,
  .viral-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .phase-timeline::before {
    left: 24px;
  }

  .phase-item {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .road-lines,
  .stars,
  .hero-badge,
  .hero-title,
  .hero-desc,
  .hero-cta,
  .hero-stats,
  .phase-dot.active {
    animation: none;
  }

  .hero-bg {
    transform: none !important;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .progress-fill,
  .btn-primary,
  .btn-secondary,
  .gameplay-card,
  .biome-card,
  .feature-block,
  .click-burst,
  .route-loading-progress-fill,
  #route-loading-overlay {
    transition: none;
  }
}
