/* ============================================
   GEOMETRY DASH FAN SITE — STYLE.CSS
   Palette : nuit profonde + néons + or GD
   ============================================ */

:root {
  --bg-deep:     #0d0d1a;
  --bg-mid:      #12122a;
  --bg-card:     #1a1a35;
  --bg-card-2:   #1e1e3f;

  --neon-green:  #00ff88;
  --neon-pink:   #ff3366;
  --neon-cyan:   #00d4ff;
  --neon-gold:   #ffd700;
  --neon-purple: #bf5fff;
  --neon-orange: #ff8c00;

  --text-main:   #e8e8ff;
  --text-muted:  #8888bb;
  --text-dark:   #0d0d1a;

  --border-glow: rgba(0, 255, 136, 0.35);
  --shadow-card: 0 0 0 2px rgba(0,255,136,0.25), 0 8px 32px rgba(0,0,0,0.6);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(0,212,255,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(191,95,255,0.06) 0%, transparent 50%);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ============================================
   NAV
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(13, 13, 26, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,255,136,0.15);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-cube {
  width: 28px;
  height: 28px;
  background: var(--neon-green);
  border-radius: 4px;
  box-shadow: 0 0 12px var(--neon-green);
  animation: brand-pulse 2s ease-in-out infinite;
}

@keyframes brand-pulse {
  0%, 100% { box-shadow: 0 0 12px var(--neon-green); }
  50%       { box-shadow: 0 0 24px var(--neon-green), 0 0 40px rgba(0,255,136,0.4); }
}

.brand-name {
  font-family: 'Bangers', cursive;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--neon-green);
  text-shadow: 0 0 10px var(--neon-green);
}

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 28px;
}

.nav-link {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}

/* ============================================
   BOUTONS
   ============================================ */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.button--primary {
  background: var(--neon-green);
  color: var(--text-dark);
  border: none;
  box-shadow: 0 0 16px rgba(0,255,136,0.5);
}

.button--primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 28px rgba(0,255,136,0.8), 0 6px 20px rgba(0,0,0,0.4);
}

.button--ghost {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0,212,255,0.2);
}

.button--ghost:hover {
  background: rgba(0,212,255,0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0,212,255,0.5);
}

.button--nav {
  background: var(--neon-pink);
  color: #fff;
  border: none;
  padding: 8px 18px;
  font-size: 0.7rem;
  box-shadow: 0 0 12px rgba(255,51,102,0.4);
}

.button--nav:hover {
  transform: scale(1.05);
  box-shadow: 0 0 22px rgba(255,51,102,0.7);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  padding: 60px 24px 80px;
  overflow: hidden;
}

/* Formes d'arrière-plan */
.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  opacity: 0.15;
}

.shape--spike {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 60px solid var(--neon-gold);
}

.shape--orb {
  border-radius: 50%;
  background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
}

.shape--cube {
  border-radius: 8px;
  background: var(--neon-cyan);
  transform: rotate(20deg);
}

.s1 { top: 15%; left: 5%;  width: 0; animation: float-shape 7s ease-in-out infinite; }
.s2 { top: 60%; right: 8%; width: 0; animation: float-shape 9s ease-in-out infinite reverse; }
.s3 { top: 10%; right: 15%; width: 300px; height: 300px; animation: float-shape 11s ease-in-out infinite; }
.s4 { bottom: 5%; left: 10%; width: 200px; height: 200px; animation: float-shape 8s ease-in-out infinite reverse; }
.s5 { top: 40%; left: 50%; width: 80px; height: 80px; animation: float-shape 6s ease-in-out infinite; }

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

/* Contenu texte */
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  text-align: center;
}

.hero__label {
  margin: 0 0 16px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-gold);
  text-shadow: 0 0 10px rgba(255,215,0,0.6);
}

h1 {
  margin: 0 0 20px;
  font-family: 'Bangers', cursive;
  font-size: clamp(4rem, 14vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-main);
}

.glow-text {
  display: block;
  color: var(--neon-green);
  text-shadow:
    0 0 20px rgba(0,255,136,0.8),
    0 0 40px rgba(0,255,136,0.4),
    0 0 80px rgba(0,255,136,0.2);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 20px rgba(0,255,136,0.8), 0 0 40px rgba(0,255,136,0.4); }
  50%       { text-shadow: 0 0 30px rgba(0,255,136,1),   0 0 60px rgba(0,255,136,0.6), 0 0 100px rgba(0,255,136,0.3); }
}

.hero__text {
  max-width: 500px;
  margin: 0 auto 32px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* CUBE ANIMÉ HERO */
.hero__cube-scene {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 240px;
  flex-shrink: 0;
}

.cube-wrapper {
  position: relative;
  width: 260px;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Le cube 3D CSS */
.gd-cube {
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  transform-style: preserve-3d;
  animation: cube-bounce 0.6s cubic-bezier(0.4, 0, 0.2, 1) infinite,
             cube-rotate 4s linear infinite;
}

.cube-face {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 3px solid var(--neon-green);
  border-radius: 8px;
  box-shadow: inset 0 0 20px rgba(0,255,136,0.15);
}

.cube-face.front  { background: rgba(0,255,136,0.12); transform: translateZ(40px); }
.cube-face.back   { background: rgba(0,255,136,0.06); transform: rotateY(180deg) translateZ(40px); }
.cube-face.left   { background: rgba(0,212,255,0.08); transform: rotateY(-90deg) translateZ(40px); border-color: var(--neon-cyan); }
.cube-face.right  { background: rgba(0,212,255,0.08); transform: rotateY(90deg)  translateZ(40px); border-color: var(--neon-cyan); }
.cube-face.top    { background: rgba(255,215,0,0.1);  transform: rotateX(90deg)  translateZ(40px); border-color: var(--neon-gold); }
.cube-face.bottom { background: rgba(0,0,0,0.3);      transform: rotateX(-90deg) translateZ(40px); border-color: rgba(0,255,136,0.3); }

@keyframes cube-bounce {
  0%, 100% { bottom: 30px; animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  50%       { bottom: 120px; animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
}

@keyframes cube-rotate {
  0%   { transform: translateX(-50%) rotateX(-20deg) rotateY(0deg); }
  100% { transform: translateX(-50%) rotateX(-20deg) rotateY(360deg); }
}

.cube-shadow {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 16px;
  background: radial-gradient(ellipse, rgba(0,255,136,0.35) 0%, transparent 70%);
  border-radius: 50%;
  animation: shadow-pulse 0.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes shadow-pulse {
  0%, 100% { transform: translateX(-50%) scaleX(1);    opacity: 0.5; }
  50%       { transform: translateX(-50%) scaleX(0.4);  opacity: 0.15; }
}

.ground-line {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
  box-shadow: 0 0 10px var(--neon-green);
}

/* Spikes sous le cube */
.spike {
  position: absolute;
  bottom: 28px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 28px solid var(--neon-pink);
  filter: drop-shadow(0 0 6px var(--neon-pink));
}

.spike-1 { left: 30px; }
.spike-2 { left: 160px; }
.spike-3 { left: 210px; }

/* Étoiles qui s'envolent */
.star-particle {
  position: absolute;
  color: var(--neon-gold);
  font-size: 1rem;
  text-shadow: 0 0 8px var(--neon-gold);
  animation: star-fly 2s ease-out infinite;
  pointer-events: none;
}

.p1 { left: 55%; bottom: 100px; animation-delay: 0s;    animation-duration: 1.8s; }
.p2 { left: 60%; bottom: 100px; animation-delay: 0.6s;  animation-duration: 2.2s; }
.p3 { left: 50%; bottom: 100px; animation-delay: 1.1s;  animation-duration: 2s; }

@keyframes star-fly {
  0%   { opacity: 0; transform: translateY(0) scale(0.5); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-80px) scale(1.2) rotate(20deg); }
}

/* ============================================
   BANDE DÉFILANTE
   ============================================ */

.tag-strip {
  overflow: hidden;
  border-top: 2px solid rgba(0,255,136,0.3);
  border-bottom: 2px solid rgba(0,255,136,0.3);
  background: rgba(0,255,136,0.05);
}

.tag-strip p {
  width: max-content;
  margin: 0;
  padding: 12px 20px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--neon-green);
  text-shadow: 0 0 6px rgba(0,255,136,0.5);
  animation: slide-tags 40s linear infinite;
}

@keyframes slide-tags {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  width: min(100% - 40px, 1140px);
  margin: 0 auto;
  padding: 72px 0;
}

.section__label {
  margin: 0 0 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-pink);
}

h2 {
  margin: 0 0 16px;
  font-family: 'Bangers', cursive;
  font-size: clamp(2.2rem, 7vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.05;
}

h3 {
  margin: 0 0 8px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-main);
}

h2, h3, p { margin-top: 0; }

.word-stroke {
  color: transparent;
  -webkit-text-stroke: 2px var(--neon-green);
  text-shadow: 0 0 20px rgba(0,255,136,0.3);
}

.section__intro {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

/* ============================================
   NIVEAUX
   ============================================ */

.levels-grid {
  display: grid;
  gap: 20px;
}

.level-card {
  padding: 24px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.level-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s;
}

.level-card:hover { transform: translateY(-4px); }

.level--easy   { border-left: 4px solid #4ade80; }
.level--normal { border-left: 4px solid #60a5fa; }
.level--hard   { border-left: 4px solid var(--neon-orange); }
.level--harder { border-left: 4px solid var(--neon-pink); }
.level--insane { border-left: 4px solid #c084fc; }
.level--demon  { border-left: 4px solid #ef4444; }

.level--easy:hover   { box-shadow: 0 8px 32px rgba(74,222,128,0.2);  border-color: rgba(74,222,128,0.5); }
.level--normal:hover { box-shadow: 0 8px 32px rgba(96,165,250,0.2);  border-color: rgba(96,165,250,0.5); }
.level--hard:hover   { box-shadow: 0 8px 32px rgba(255,140,0,0.2);   border-color: rgba(255,140,0,0.5); }
.level--harder:hover { box-shadow: 0 8px 32px rgba(255,51,102,0.2);  border-color: rgba(255,51,102,0.5); }
.level--insane:hover { box-shadow: 0 8px 32px rgba(192,132,252,0.2); border-color: rgba(192,132,252,0.5); }
.level--demon:hover  { box-shadow: 0 8px 32px rgba(239,68,68,0.2);   border-color: rgba(239,68,68,0.5); }

.level-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.level-diff {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 3px 10px;
  border-radius: 4px;
}

.diff--auto   { background: rgba(74,222,128,0.15); color: #4ade80; }
.diff--easy   { background: rgba(96,165,250,0.15); color: #60a5fa; }
.diff--hard   { background: rgba(255,140,0,0.15);  color: var(--neon-orange); }
.diff--harder { background: rgba(255,51,102,0.15); color: var(--neon-pink); }
.diff--insane { background: rgba(192,132,252,0.15);color: #c084fc; }
.diff--demon  { background: rgba(239,68,68,0.15);  color: #ef4444; }

.level-stars {
  font-size: 0.8rem;
  color: var(--neon-gold);
}

.level-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.level-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.level-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}

.level-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
  border-radius: 99px;
}

.level-pct {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ============================================
   ICÔNES
   ============================================ */

.icons-grid {
  display: grid;
  gap: 18px;
}

.icon-card {
  padding: 24px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.icon-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,212,255,0.4);
  box-shadow: 0 8px 28px rgba(0,212,255,0.15);
}

.icon-visual {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.cube-icon   { background: rgba(0,255,136,0.1);  border: 2px solid rgba(0,255,136,0.4); }
.ship-icon   { background: rgba(0,212,255,0.1);  border: 2px solid rgba(0,212,255,0.4); }
.ball-icon   { background: rgba(255,51,102,0.1); border: 2px solid rgba(255,51,102,0.4); }
.ufo-icon    { background: rgba(191,95,255,0.1); border: 2px solid rgba(191,95,255,0.4); }
.wave-icon   { background: rgba(255,215,0,0.1);  border: 2px solid rgba(255,215,0,0.4); }
.robot-icon  { background: rgba(255,140,0,0.1);  border: 2px solid rgba(255,140,0,0.4); }
.spider-icon { background: rgba(96,165,250,0.1); border: 2px solid rgba(96,165,250,0.4); }
.swing-icon  { background: rgba(74,222,128,0.1); border: 2px solid rgba(74,222,128,0.4); }

.mini-cube {
  width: 36px;
  height: 36px;
  border: 3px solid var(--neon-green);
  border-radius: 6px;
  background: rgba(0,255,136,0.15);
  animation: mini-spin 3s linear infinite;
}

@keyframes mini-spin {
  to { transform: rotate(360deg); }
}

.mini-ship  { color: var(--neon-cyan);   font-size: 2rem; }
.mini-ball  { color: var(--neon-pink);   font-size: 1.8rem; animation: mini-spin 2s linear infinite; }
.mini-ufo   { color: var(--neon-purple); font-size: 1.8rem; animation: mini-spin 4s linear infinite; }
.mini-wave  { color: var(--neon-gold);   font-size: 2rem; }
.mini-robot { font-size: 2rem; }
.mini-spider{ font-size: 2rem; }
.mini-swing { color: var(--neon-green);  font-size: 2rem; animation: mini-spin 2s linear infinite; }

.icon-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

.unlock-badge {
  display: inline-block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,215,0,0.1);
  color: var(--neon-gold);
  border: 1px solid rgba(255,215,0,0.25);
}

/* ============================================
   STATS
   ============================================ */

.stats-section {
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-block {
  padding: 32px 20px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}

.stat-number {
  font-family: 'Bangers', cursive;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.neon-green  { color: var(--neon-green);  text-shadow: 0 0 20px rgba(0,255,136,0.6); }
.neon-pink   { color: var(--neon-pink);   text-shadow: 0 0 20px rgba(255,51,102,0.6); }
.neon-cyan   { color: var(--neon-cyan);   text-shadow: 0 0 20px rgba(0,212,255,0.6); }
.neon-gold   { color: var(--neon-gold);   text-shadow: 0 0 20px rgba(255,215,0,0.6); }

.stat-label {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   SECRETS
   ============================================ */

.secrets-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.secret-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, border-color 0.2s;
}

.secret-item:hover {
  transform: translateX(6px);
  border-color: rgba(191,95,255,0.4);
}

.secret-num {
  font-family: 'Bangers', cursive;
  font-size: 2.5rem;
  color: var(--neon-purple);
  text-shadow: 0 0 14px rgba(191,95,255,0.5);
  line-height: 1;
  flex-shrink: 0;
  width: 52px;
}

.secret-content h3 {
  color: var(--text-main);
  font-size: 0.9rem;
}

.secret-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.secret-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* ============================================
   CONCLUSION / CTA
   ============================================ */

.conclusion {
  padding: 56px 36px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,255,136,0.08), rgba(0,212,255,0.05));
  border: 2px solid rgba(0,255,136,0.25);
  box-shadow: 0 0 40px rgba(0,255,136,0.08), 0 0 80px rgba(0,212,255,0.04);
  text-align: center;
}

.conclusion h2 {
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  margin-bottom: 20px;
  color: var(--neon-green);
  text-shadow: 0 0 20px rgba(0,255,136,0.4);
}

.conclusion p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 32px;
}

.conclusion .section__label {
  color: var(--neon-gold);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 40px 24px 48px;
  text-align: center;
  border-top: 1px solid rgba(0,255,136,0.1);
}

.footer__cube {
  width: 20px;
  height: 20px;
  background: var(--neon-green);
  border-radius: 4px;
  margin: 0 auto 16px;
  box-shadow: 0 0 12px var(--neon-green);
  animation: mini-spin 4s linear infinite;
}

.footer p {
  margin: 0 0 6px;
  color: var(--text-muted);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer__sub {
  color: rgba(136,136,187,0.5) !important;
  font-size: 0.6rem !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (min-width: 640px) {
  .levels-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .icons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .hero {
    flex-direction: row;
    justify-content: center;
    gap: 64px;
    text-align: left;
  }

  .hero__content {
    text-align: left;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .levels-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .icons-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero__label {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .gd-cube, .cube-shadow, .brand-cube,
  .glow-text, .mini-cube, .mini-ball,
  .mini-ufo, .mini-swing, .footer__cube,
  .star-particle, .shape,
  .tag-strip p {
    animation: none;
  }
}
