:root {
  --bg: #0d0221;
  --bg-2: #0f0a2e;
  --violet: #7c3aed;
  --violet-light: #a78bfa;
  --yellow: #fbbf24;
  --orange: #ff6b35;
  --green: #34d399;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.6);
  --glass: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(124, 58, 237, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(124, 58, 237, 0.34), transparent 34rem),
    radial-gradient(circle at 80% 0%, rgba(52, 211, 153, 0.14), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 48%, var(--bg));
  color: var(--white);
  font-family: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  background: var(--yellow);
  color: #241000;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--violet), var(--orange));
  border-radius: 999px;
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
  width: 34px;
  height: 34px;
  pointer-events: none;
  border: 1px solid rgba(167, 139, 250, 0.75);
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.18);
  box-shadow: 0 0 32px rgba(124, 58, 237, 0.45);
  transform: translate3d(-50%, -50%, 0);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 14px 0;
  transition: padding 220ms ease, background 220ms ease, border 220ms ease, box-shadow 220ms ease;
}

.navbar.scrolled {
  width: min(1180px, calc(100% - 24px));
  margin-top: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(13, 2, 33, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.logo-icon {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--violet), #37146b);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.38);
}

.logo-icon::before {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 -4px 0 var(--yellow);
  content: "";
  transform: translateX(-50%);
}

.logo-icon > span {
  position: relative;
  width: 25px;
  height: 22px;
  border: 3px solid #1b093d;
  border-radius: 9px;
  background: linear-gradient(145deg, #ffffff, #a78bfa);
  box-shadow: inset 4px 4px 0 rgba(255, 255, 255, 0.35), inset 0 -5px 0 rgba(0, 0, 0, 0.15);
}

.logo-icon > span::before {
  position: absolute;
  top: 6px;
  right: 4px;
  left: 4px;
  height: 5px;
  background:
    radial-gradient(circle at 20% 50%, #1b093d 0 2px, transparent 2.5px),
    radial-gradient(circle at 80% 50%, #1b093d 0 2px, transparent 2.5px);
  content: "";
}

.logo-icon > span::after {
  position: absolute;
  right: 6px;
  bottom: 4px;
  left: 6px;
  height: 3px;
  border-radius: 999px;
  background: #1b093d;
  content: "";
}

.logo-accent {
  color: var(--yellow);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.96rem;
}

.desktop-nav a,
.footer nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.footer nav a:hover {
  color: var(--yellow);
  transform: translateY(-1px);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 14px 24px;
  overflow: hidden;
  border: 0;
  border-radius: 100px;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  box-shadow: 0 0 34px rgba(255, 107, 53, 0.38);
  transform: translateY(-2px) scale(1.05);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
}

.btn-violet {
  background: linear-gradient(135deg, var(--violet), #5b21b6);
  color: var(--white);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--violet);
}

.glow {
  box-shadow: 0 0 36px rgba(124, 58, 237, 0.45);
}

.desktop-cta {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: var(--glass);
  color: var(--white);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: -6px 0;
  border-radius: 99px;
  background: var(--white);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 86px;
  right: 16px;
  left: 16px;
  z-index: 101;
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(15, 10, 46, 0.94);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-nav.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-nav a:not(.btn) {
  padding: 14px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

.hero {
  position: relative;
  display: grid;
  gap: 34px;
  min-height: calc(100vh - 78px);
  align-items: center;
  padding-top: 36px;
}

.hero-visual {
  order: -1;
}

.robot-card {
  position: relative;
  height: 250px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 30%, rgba(251, 191, 36, 0.16), transparent 24rem),
    linear-gradient(145deg, rgba(124, 58, 237, 0.22), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
}

#robot-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.canvas-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.24), rgba(255, 107, 53, 0.12));
}

.robot-card.canvas-ready .canvas-fallback {
  display: none;
}

.fallback-robot-icon,
.mini-robot-icon {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
}

.fallback-robot-icon::before,
.mini-robot-icon::before {
  width: 58px;
  height: 48px;
  border: 5px solid #1b093d;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 42%, var(--green) 0 6px, transparent 7px),
    radial-gradient(circle at 70% 42%, var(--yellow) 0 6px, transparent 7px),
    linear-gradient(145deg, #ffffff, var(--violet-light));
  box-shadow: inset 8px 7px 0 rgba(255, 255, 255, 0.3), inset 0 -9px 0 rgba(0, 0, 0, 0.14);
  content: "";
}

.fallback-robot-icon::after,
.mini-robot-icon::after {
  position: absolute;
  top: 3px;
  width: 8px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 -8px 0 var(--yellow), 0 0 18px rgba(52, 211, 153, 0.5);
  content: "";
}

.icon-rocket,
.icon-wrench,
.icon-bulb,
.icon-lego,
.icon-group,
.icon-pin,
.icon-trophy,
.icon-robot,
.icon-code,
.icon-brain,
.icon-team,
.icon-puzzle,
.icon-light,
.icon-beat,
.icon-spin,
.icon-wave {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.icon-rocket::before {
  width: 24px;
  height: 42px;
  border: 4px solid #1b093d;
  border-radius: 50% 50% 16px 16px;
  background: linear-gradient(145deg, #ffffff 0 28%, var(--yellow) 29% 58%, var(--orange) 59%);
  box-shadow: inset 4px 4px 0 rgba(255, 255, 255, 0.28);
  content: "";
}

.icon-rocket::after {
  position: absolute;
  bottom: 6px;
  width: 36px;
  height: 18px;
  border-radius: 0 0 18px 18px;
  background:
    radial-gradient(circle at 50% 100%, var(--yellow) 0 11px, transparent 12px),
    linear-gradient(90deg, var(--violet), var(--green));
  content: "";
  transform: translateY(18px);
}

.icon-wrench::before {
  width: 44px;
  height: 16px;
  border: 4px solid #1b093d;
  border-radius: 999px;
  background: #e5e7eb;
  box-shadow: inset 5px 4px 0 rgba(255, 255, 255, 0.5);
  content: "";
  transform: rotate(-38deg);
}

.icon-wrench::after {
  position: absolute;
  width: 25px;
  height: 25px;
  border: 5px solid #1b093d;
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  transform: translate(14px, -13px) rotate(-38deg);
}

.icon-bulb::before {
  width: 38px;
  height: 38px;
  border: 4px solid #1b093d;
  border-radius: 50% 50% 42% 42%;
  background: radial-gradient(circle at 35% 28%, #ffffff 0 6px, transparent 7px), var(--yellow);
  box-shadow: 0 0 28px rgba(251, 191, 36, 0.7);
  content: "";
}

.icon-bulb::after {
  position: absolute;
  bottom: 10px;
  width: 22px;
  height: 14px;
  border: 4px solid #1b093d;
  border-radius: 6px;
  background: #a78bfa;
  content: "";
  transform: translateY(24px);
}

.icon-lego::before,
.icon-lego::after {
  position: absolute;
  content: "";
}

.icon-lego::before {
  top: 50%;
  left: 50%;
  width: 52px;
  height: 34px;
  border: 4px solid #1b093d;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--yellow), #f59e0b);
  box-shadow: inset 6px 5px 0 rgba(255, 255, 255, 0.24), inset 0 -7px 0 rgba(0, 0, 0, 0.14);
  transform: translate(-50%, -50%);
}

.icon-lego::after {
  top: 14px;
  left: 50%;
  width: 46px;
  height: 18px;
  background:
    radial-gradient(circle at 22% 50%, var(--yellow) 0 8px, transparent 9px),
    radial-gradient(circle at 78% 50%, var(--yellow) 0 8px, transparent 9px);
  filter: drop-shadow(0 0 0 #1b093d);
  transform: translateX(-50%);
}

.icon-group::before {
  width: 46px;
  height: 32px;
  border-radius: 18px 18px 10px 10px;
  background:
    radial-gradient(circle at 25% 35%, var(--yellow) 0 7px, transparent 8px),
    radial-gradient(circle at 75% 35%, var(--green) 0 7px, transparent 8px),
    linear-gradient(var(--violet-light), var(--violet));
  border: 4px solid #1b093d;
  content: "";
}

.icon-pin::before {
  width: 34px;
  height: 44px;
  border: 4px solid #1b093d;
  border-radius: 50% 50% 50% 8px;
  background: radial-gradient(circle, var(--green) 0 7px, var(--orange) 8px);
  content: "";
  transform: rotate(-45deg);
}

.icon-trophy::before {
  width: 42px;
  height: 34px;
  border: 4px solid #1b093d;
  border-radius: 10px 10px 18px 18px;
  background: linear-gradient(145deg, var(--yellow), #f59e0b);
  box-shadow: inset 5px 5px 0 rgba(255, 255, 255, 0.24);
  content: "";
}

.icon-trophy::after {
  position: absolute;
  bottom: 7px;
  width: 34px;
  height: 18px;
  border: 4px solid #1b093d;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #f59e0b;
  content: "";
  transform: translateY(26px);
}

.icon-robot::before {
  width: 42px;
  height: 34px;
  border: 4px solid #1b093d;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 40%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 70% 40%, var(--yellow) 0 5px, transparent 6px),
    linear-gradient(145deg, var(--violet-light), var(--violet));
  content: "";
}

.icon-code::before {
  color: var(--green);
  content: "</>";
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 1.15rem;
  font-weight: 900;
}

.icon-brain::before {
  width: 43px;
  height: 34px;
  border: 4px solid #1b093d;
  border-radius: 20px 20px 14px 14px;
  background:
    radial-gradient(circle at 28% 38%, #ffffff 0 5px, transparent 6px),
    radial-gradient(circle at 65% 38%, #ffffff 0 5px, transparent 6px),
    linear-gradient(145deg, #fb7185, #be185d);
  content: "";
}

.icon-team::before {
  width: 48px;
  height: 28px;
  border: 4px solid #1b093d;
  border-radius: 16px;
  background:
    radial-gradient(circle at 24% 50%, var(--yellow) 0 7px, transparent 8px),
    radial-gradient(circle at 50% 50%, var(--green) 0 7px, transparent 8px),
    radial-gradient(circle at 76% 50%, var(--violet-light) 0 7px, transparent 8px),
    rgba(255, 255, 255, 0.15);
  content: "";
}

.icon-puzzle::before {
  width: 42px;
  height: 42px;
  border: 4px solid #1b093d;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0, transparent 0 8px, var(--orange) 9px),
    linear-gradient(145deg, var(--orange), #fb7185);
  content: "";
}

.command-icon {
  width: 58px;
  height: 58px;
  border: 4px solid #1b093d;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: inset 7px 6px 0 rgba(255, 255, 255, 0.18), inset 0 -8px 0 rgba(0, 0, 0, 0.12);
}

.icon-light::before {
  width: 30px;
  height: 30px;
  border: 4px solid #1b093d;
  border-radius: 50% 50% 42% 42%;
  background: var(--yellow);
  box-shadow: 0 0 24px rgba(251, 191, 36, 0.75);
  content: "";
}

.icon-light::after {
  position: absolute;
  bottom: 10px;
  width: 20px;
  height: 10px;
  border: 4px solid #1b093d;
  border-radius: 6px;
  background: var(--violet);
  content: "";
}

.icon-beat::before,
.icon-beat::after {
  position: absolute;
  width: 22px;
  height: 34px;
  border: 4px solid #1b093d;
  border-radius: 999px;
  background: var(--yellow);
  content: "";
}

.icon-beat::before {
  left: 11px;
  transform: rotate(-16deg);
}

.icon-beat::after {
  right: 11px;
  transform: rotate(16deg);
}

.icon-spin::before {
  width: 34px;
  height: 34px;
  border: 5px solid var(--green);
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
}

.icon-spin::after {
  position: absolute;
  top: 13px;
  right: 10px;
  border: 8px solid transparent;
  border-left-color: var(--green);
  content: "";
  transform: rotate(-18deg);
}

.icon-wave::before {
  width: 38px;
  height: 32px;
  border: 4px solid #1b093d;
  border-radius: 16px 16px 20px 20px;
  background: var(--yellow);
  box-shadow: inset 6px 5px 0 rgba(255, 255, 255, 0.22);
  content: "";
  transform: rotate(-10deg);
}

.icon-wave::after {
  position: absolute;
  top: 7px;
  right: 8px;
  width: 14px;
  height: 14px;
  border-top: 4px solid #1b093d;
  border-right: 4px solid #1b093d;
  border-radius: 0 8px 0 0;
  content: "";
}

.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(251, 191, 36, 0.7);
  border-radius: 100px;
  background: rgba(251, 191, 36, 0.08);
  color: #ffe8a3;
  font-size: 0.95rem;
}

.pulse {
  animation: pulse 2.1s ease-in-out infinite;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(36px, 6vw, 64px);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--violet-light), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.stats span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.xp-bar {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
}

.xp-bar span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--yellow));
  box-shadow: 0 0 22px rgba(251, 191, 36, 0.45);
  animation: fillXp 1.8s 400ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.game-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.game-status {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(251, 191, 36, 0.48);
  border-radius: 100px;
  background: rgba(251, 191, 36, 0.08);
  color: #ffe8a3;
}

.code-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(13, 2, 33, 0.58);
  color: rgba(255, 255, 255, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88rem;
}

.code-line span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.5);
  color: var(--white);
  font-family: "Nunito", system-ui, sans-serif;
  font-weight: 900;
}

.code-line.active {
  background: rgba(52, 211, 153, 0.16);
  color: var(--white);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.18);
}

.game-actions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.game-actions .btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

.btn-sound {
  border: 1px solid rgba(251, 191, 36, 0.32);
  background: rgba(251, 191, 36, 0.1);
  color: #ffe8a3;
}

.btn-sound[aria-pressed="true"] {
  border-color: rgba(52, 211, 153, 0.62);
  background: rgba(52, 211, 153, 0.14);
  color: #a7f3d0;
}

.btn-icon {
  position: relative;
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
}

.icon-btn-rocket::before {
  width: 12px;
  height: 22px;
  border: 2px solid #1b093d;
  border-radius: 50% 50% 8px 8px;
  background: linear-gradient(#ffffff 0 30%, var(--yellow) 31% 64%, var(--orange) 65%);
  content: "";
  transform: rotate(35deg);
}

.icon-btn-rocket::after {
  position: absolute;
  right: 2px;
  bottom: 1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 14px rgba(251, 191, 36, 0.8);
  content: "";
}

.icon-btn-dj::before {
  width: 22px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 7px;
  background:
    radial-gradient(circle at 30% 50%, currentColor 0 3px, transparent 4px),
    radial-gradient(circle at 72% 50%, currentColor 0 3px, transparent 4px);
  content: "";
}

.icon-btn-dj::after {
  position: absolute;
  top: 2px;
  left: 50%;
  width: 2px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.game-page {
  min-height: 100vh;
}

.robot-dj-hero {
  display: grid;
  gap: 22px;
  align-items: start;
  padding-top: 34px;
}

.game-copy h1 {
  max-width: 780px;
  margin: 0;
  background: linear-gradient(90deg, var(--violet-light), var(--yellow), var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(4rem, 16vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.robot-dj-hero .game-copy {
  display: grid;
  gap: 12px;
}

.robot-dj-hero .game-copy > p:not(.eyebrow) {
  margin: 0;
}

.robot-dj-shell {
  display: grid;
  gap: 16px;
}

.dj-stage {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 35%, rgba(251, 191, 36, 0.2), transparent 18rem),
    radial-gradient(circle at 20% 70%, rgba(52, 211, 153, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(124, 58, 237, 0.26), rgba(255, 255, 255, 0.06));
  box-shadow: var(--shadow);
}

.dj-stage::after {
  position: absolute;
  right: 10%;
  bottom: 48px;
  left: 10%;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(10px);
  content: "";
}

.dj-countdown {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  pointer-events: none;
  color: var(--white);
  font-size: clamp(4rem, 18vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  opacity: 0;
  text-shadow: 0 0 30px rgba(251, 191, 36, 0.75);
  transform: scale(0.72);
}

.dj-countdown.show {
  animation: countdownPop 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dj-countdown.go {
  background: radial-gradient(circle, rgba(52, 211, 153, 0.22), transparent 48%);
  color: var(--green);
  text-shadow: 0 0 34px rgba(52, 211, 153, 0.9);
}

.dj-scoreboard {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.dj-scoreboard span,
.dj-scoreboard strong {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  background: rgba(13, 2, 33, 0.55);
  backdrop-filter: blur(12px);
}

.dj-scoreboard strong {
  color: var(--yellow);
}

.dj-lights {
  position: absolute;
  inset: 0;
  opacity: 0.75;
  pointer-events: none;
}

.dj-lights span {
  position: absolute;
  top: -40px;
  width: 34%;
  height: 118%;
  transform-origin: top center;
  filter: blur(2px);
  opacity: 0.3;
  mix-blend-mode: screen;
}

.dj-lights span:nth-child(1) {
  --light-angle: 18deg;
  left: 4%;
  background: linear-gradient(rgba(124, 58, 237, 0.55), transparent 72%);
  transform: rotate(18deg);
}

.dj-lights span:nth-child(2) {
  --light-angle: 0deg;
  left: 35%;
  background: linear-gradient(rgba(251, 191, 36, 0.44), transparent 72%);
}

.dj-lights span:nth-child(3) {
  --light-angle: -18deg;
  right: 4%;
  background: linear-gradient(rgba(52, 211, 153, 0.48), transparent 72%);
  transform: rotate(-18deg);
}

.dj-stage.light-show .dj-lights span {
  animation: djLightSweep 500ms ease-in-out 2;
}

.dj-robot {
  position: relative;
  z-index: 1;
  width: 270px;
  height: 390px;
  transform-origin: center bottom;
  transition: transform 180ms ease;
}

.dj-robot.beat {
  animation: djBeat 420ms ease-in-out;
}

.dj-robot.spin {
  animation: djSpin 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dj-robot.wave {
  animation: djWave 580ms ease-in-out;
}

.dj-antenna {
  position: absolute;
  top: 0;
  left: 50%;
  width: 16px;
  height: 54px;
  border-radius: 100px;
  background: var(--green);
  box-shadow: 0 0 24px rgba(52, 211, 153, 0.55);
  transform: translateX(-50%);
}

.dj-antenna::before {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 28px rgba(251, 191, 36, 0.72);
  content: "";
  transform: translateX(-50%);
}

.dj-head,
.dj-body,
.dj-deck {
  position: absolute;
  left: 50%;
  border: 4px solid #1b093d;
  box-shadow:
    inset 10px 10px 0 rgba(255, 255, 255, 0.12),
    inset 0 -14px 0 rgba(0, 0, 0, 0.18),
    0 18px 30px rgba(0, 0, 0, 0.22);
  transform: translateX(-50%);
}

.dj-head {
  top: 60px;
  display: flex;
  width: 168px;
  height: 116px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 20px;
  background: var(--violet);
}

.dj-head::before,
.dj-head::after {
  position: absolute;
  top: 34px;
  width: 20px;
  height: 34px;
  border: 4px solid #1b093d;
  border-radius: 12px;
  background: var(--yellow);
  content: "";
}

.dj-head::before {
  left: -18px;
}

.dj-head::after {
  right: -18px;
}

.dj-eye {
  position: relative;
  width: 30px;
  height: 30px;
  border: 4px solid #1b093d;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #ffffff 0 4px, var(--green) 5px 11px, #111827 12px);
  box-shadow: 0 0 20px rgba(52, 211, 153, 0.65);
}

.dj-head b {
  position: absolute;
  right: 48px;
  bottom: 22px;
  left: 48px;
  height: 10px;
  border-radius: 100px;
  background: #1b093d;
  box-shadow: 0 10px 0 rgba(27, 9, 61, 0.55);
}

.dj-body {
  top: 196px;
  display: flex;
  width: 202px;
  height: 132px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--violet), #4c1d95);
}

.dj-body i {
  width: 24px;
  height: 44px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.18);
}

.dj-body i.active {
  background: var(--green);
  box-shadow: 0 0 22px rgba(52, 211, 153, 0.8);
}

.dj-studs {
  position: absolute;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 18px;
  transform: translateX(-50%);
}

.dj-studs span {
  width: 30px;
  height: 18px;
  border: 4px solid #1b093d;
  border-radius: 999px 999px 12px 12px;
  background: #8b5cf6;
  box-shadow: inset 4px 3px 0 rgba(255, 255, 255, 0.14);
}

.head-studs {
  top: 44px;
}

.body-studs {
  top: 178px;
}

.body-studs span {
  background: #6d28d9;
}

.dj-arm {
  position: absolute;
  top: 207px;
  z-index: 0;
  width: 52px;
  height: 112px;
  border: 4px solid #1b093d;
  border-radius: 24px;
  background: linear-gradient(145deg, #7c3aed, #4c1d95);
  box-shadow: inset 7px 8px 0 rgba(255, 255, 255, 0.1), inset 0 -10px 0 rgba(0, 0, 0, 0.16);
  transform-origin: top center;
}

.dj-arm.left {
  left: 7px;
  transform: rotate(16deg);
}

.dj-arm.right {
  right: 7px;
  transform: rotate(-16deg);
}

.dj-arm span {
  position: absolute;
  bottom: -28px;
  left: 50%;
  width: 48px;
  height: 38px;
  border: 4px solid #1b093d;
  border-radius: 18px 18px 24px 24px;
  background: var(--yellow);
  box-shadow: inset 5px 5px 0 rgba(255, 255, 255, 0.2), inset 0 -8px 0 rgba(0, 0, 0, 0.14);
  transform: translateX(-50%);
}

.dj-arm span::before,
.dj-arm span::after {
  position: absolute;
  bottom: -10px;
  width: 18px;
  height: 18px;
  border: 4px solid #1b093d;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.dj-arm span::before {
  left: 2px;
}

.dj-arm span::after {
  right: 2px;
}

.dj-robot.wave .dj-arm.right {
  animation: robotArmWave 580ms ease-in-out;
}

.dj-legs {
  position: absolute;
  right: 60px;
  bottom: 36px;
  left: 60px;
  display: flex;
  justify-content: space-between;
}

.dj-legs span {
  position: relative;
  width: 48px;
  height: 68px;
  border: 4px solid #1b093d;
  border-radius: 16px 16px 22px 22px;
  background: linear-gradient(145deg, #6d28d9, #3b1678);
  box-shadow: inset 6px 6px 0 rgba(255, 255, 255, 0.1), inset 0 -10px 0 rgba(0, 0, 0, 0.18);
}

.dj-legs span::after {
  position: absolute;
  bottom: -12px;
  left: 50%;
  width: 58px;
  height: 24px;
  border: 4px solid #1b093d;
  border-radius: 16px;
  background: #111827;
  content: "";
  transform: translateX(-50%);
}

.dj-deck {
  bottom: 0;
  display: flex;
  width: 250px;
  height: 72px;
  align-items: center;
  justify-content: space-around;
  border-radius: 26px;
  background: #111827;
}

.dj-deck span {
  width: 48px;
  height: 48px;
  border: 7px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, var(--yellow) 0 20%, #0f172a 22% 100%);
}

.dj-robot.beat .dj-deck span {
  animation: deckSpin 420ms linear;
}

.music-notes span {
  position: absolute;
  color: var(--yellow);
  font-size: 2.6rem;
  font-weight: 900;
  opacity: 0;
  text-shadow: 0 0 18px rgba(251, 191, 36, 0.6);
}

.music-notes span:nth-child(1) {
  top: 28%;
  left: 18%;
}

.music-notes span:nth-child(2) {
  top: 20%;
  right: 22%;
}

.music-notes span:nth-child(3) {
  right: 14%;
  bottom: 30%;
}

.dj-stage.note-show .music-notes span {
  animation: noteFloat 680ms ease-out forwards;
}

.command-pad,
.sequence-panel,
.dj-console-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.dj-console-card {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.console-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.command-pad {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
}

.command-card {
  display: grid;
  min-height: 116px;
  place-items: center;
  gap: 10px;
  border: 0;
  border-radius: 24px;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.command-card:hover,
.command-card:focus-visible {
  box-shadow: 0 0 28px rgba(251, 191, 36, 0.26);
  outline: none;
  transform: translateY(-3px) scale(1.03);
}

.command-card .command-icon {
  font-size: 0;
}

.command-card.violet {
  background: linear-gradient(145deg, #8b5cf6, #5b21b6);
}

.command-card.yellow {
  background: linear-gradient(145deg, #fbbf24, #f59e0b);
  color: #321700;
}

.command-card.green {
  background: linear-gradient(145deg, #34d399, #059669);
  color: #06291d;
}

.command-card.orange {
  background: linear-gradient(145deg, #ff6b35, #f97316);
}

.sequence-panel {
  display: grid;
  gap: 16px;
  padding: 16px;
}

.sequence-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sequence-slot {
  display: grid;
  min-height: 72px;
  place-items: center;
  border: 2px dashed rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(13, 2, 33, 0.46);
  color: rgba(255, 255, 255, 0.44);
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 900;
}

.sequence-slot.filled {
  border-style: solid;
  color: var(--white);
}

.sequence-slot.filled::before {
  position: relative;
  display: block;
  content: "";
}

.sequence-slot.light {
  background: rgba(124, 58, 237, 0.55);
}

.sequence-slot.light::before {
  width: 20px;
  height: 20px;
  border: 3px solid #1b093d;
  border-radius: 50% 50% 42% 42%;
  background: var(--yellow);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.7);
}

.sequence-slot.beat {
  background: rgba(251, 191, 36, 0.72);
  color: #321700;
}

.sequence-slot.beat::before {
  width: 28px;
  height: 28px;
  border: 4px solid #1b093d;
  border-radius: 50%;
  background:
    radial-gradient(circle, #1b093d 0 5px, transparent 6px),
    rgba(255, 255, 255, 0.45);
}

.sequence-slot.spin {
  background: rgba(52, 211, 153, 0.58);
  color: #06291d;
}

.sequence-slot.spin::before {
  width: 27px;
  height: 27px;
  border: 4px solid #06291d;
  border-right-color: transparent;
  border-radius: 50%;
}

.sequence-slot.wave {
  background: rgba(255, 107, 53, 0.68);
}

.sequence-slot.wave::before {
  width: 28px;
  height: 24px;
  border: 4px solid #1b093d;
  border-radius: 12px 12px 16px 16px;
  background: var(--yellow);
  transform: rotate(-10deg);
}

.sequence-slot.playing {
  border-color: var(--yellow);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.5);
  transform: scale(1.04);
}

.dj-code {
  display: grid;
  gap: 10px;
}

.game-page .final-cta {
  margin-bottom: 70px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.page-hero {
  display: grid;
  gap: 16px;
  padding-top: 72px;
  padding-bottom: 46px;
}

.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.contact-hero h1 {
  font-size: clamp(2.6rem, 6.4vw, 5.6rem);
}

.experiences-hero h1 {
  font-size: clamp(2.7rem, 6.6vw, 5.8rem);
}

.page-hero > p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.level-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 86%);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scroll-snap-type: x mandatory;
}

.level-card,
.feature-card,
.method-card,
.sede-card,
.testimonial-card,
.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: var(--glass);
}

.level-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 26px;
  scroll-snap-align: start;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.level-card::after {
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 40%;
  border-radius: 999px;
  opacity: 0;
  filter: blur(36px);
  content: "";
  transition: opacity 220ms ease;
}

.level-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: var(--shadow);
}

.level-card:hover::after {
  opacity: 0.8;
}

.gradient-violet {
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.94), rgba(70, 24, 150, 0.8));
}

.gradient-violet::after {
  background: var(--violet-light);
}

.gradient-cyan {
  background: linear-gradient(145deg, rgba(14, 165, 233, 0.9), rgba(20, 184, 166, 0.62));
}

.gradient-cyan::after {
  background: #67e8f9;
}

.gradient-rose {
  background: linear-gradient(145deg, rgba(244, 63, 94, 0.92), rgba(190, 24, 93, 0.68));
}

.gradient-rose::after {
  background: #fb7185;
}

.level-icon {
  display: inline-grid;
  width: 76px;
  height: 76px;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 2.45rem;
  animation: bounce 2.8s ease-in-out infinite;
}

.age {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.level-card h3,
.feature-card h3,
.method-card h3,
.sede-card h3,
.testimonial-card h3 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.level-card p:not(.age),
.feature-card p,
.method-card p,
.sede-card p,
.testimonial-card p,
.faq-list p,
.final-cta p,
.footer p,
.footer a {
  color: var(--muted);
  line-height: 1.55;
}

.stars {
  display: flex;
  gap: 6px;
  margin-top: 22px;
  color: var(--yellow);
  font-size: 1.35rem;
}

.stars span {
  opacity: 0;
  transform: scale(0.4);
  animation: pop 450ms ease forwards;
}

.stars span:nth-child(2) {
  animation-delay: 120ms;
}

.stars span:nth-child(3) {
  animation-delay: 240ms;
}

.game-track {
  overflow: hidden;
}

.track {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 12px 0;
}

.track-line {
  position: absolute;
  top: 38px;
  bottom: 38px;
  left: 27px;
  width: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.track-line span {
  display: block;
  width: 100%;
  height: 0;
  border-radius: inherit;
  background: linear-gradient(var(--violet), var(--yellow));
  transition: height 1s cubic-bezier(0.22, 1, 0.36, 1), width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.track.in-view .track-line span {
  height: 100%;
}

.track-node {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
}

.track-node span {
  display: grid;
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  font-weight: 900;
}

.track-node strong {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.track-node.done span {
  background: var(--violet);
  box-shadow: 0 0 26px rgba(124, 58, 237, 0.45);
  animation: pulse 2s infinite;
}

.track-node.current span {
  background: var(--yellow);
  color: #281400;
  box-shadow: 0 0 34px rgba(251, 191, 36, 0.6);
}

.track-node.future span {
  border: 2px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.6);
}

.feature-grid,
.method-grid {
  display: grid;
  gap: 16px;
}

.feature-card,
.method-card {
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-card:hover,
.method-card:hover {
  border-color: rgba(251, 191, 36, 0.7);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.feature-card .feature-icon,
.method-card .feature-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.22));
}

.method-card {
  background:
    radial-gradient(circle at 18% 16%, rgba(251, 191, 36, 0.12), transparent 12rem),
    var(--glass);
}

.learning-grid {
  display: grid;
  gap: 14px;
}

.learning-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.16), rgba(52, 211, 153, 0.08)),
    rgba(255, 255, 255, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.learning-card:hover {
  border-color: rgba(52, 211, 153, 0.62);
  background:
    linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(52, 211, 153, 0.14)),
    rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.learning-card .learning-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  font-size: 1.75rem;
}

.learning-card strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.gallery-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
}

.gallery-heading .section-heading {
  margin-bottom: 0;
}

.gallery-heading > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 82%);
  gap: 16px;
  overflow-x: auto;
  padding: 8px 2px 18px;
  scroll-snap-type: x mandatory;
}

.gallery-card {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background: var(--glass);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.18);
  scroll-snap-align: start;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 34%, rgba(13, 2, 33, 0.72)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.12), transparent 46%);
  content: "";
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.gallery-card:hover img {
  filter: saturate(1.12) contrast(1.03);
  transform: scale(1.06);
}

.gallery-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(13, 2, 33, 0.62);
  color: var(--white);
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.workshops-gallery .gallery-card figcaption {
  display: grid;
  gap: 4px;
  width: auto;
  border-radius: 22px;
}

.workshops-gallery .gallery-card figcaption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.gallery-placeholder {
  display: grid;
  min-height: inherit;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(251, 191, 36, 0.28), transparent 32%),
    radial-gradient(circle at 70% 30%, rgba(52, 211, 153, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(124, 58, 237, 0.46), rgba(13, 2, 33, 0.86));
}

.gallery-placeholder .feature-icon {
  width: 86px;
  height: 86px;
}

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

.cms-section {
  padding-top: 56px;
}

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

.cms-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 16%, rgba(251, 191, 36, 0.1), transparent 14rem),
    var(--glass);
}

.cms-card img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.cms-card > div {
  padding: 24px;
}

.cms-card h3 {
  margin: 0;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.cms-card p {
  color: var(--muted);
  line-height: 1.55;
}

.cms-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.cms-meta span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.brand-grid {
  display: grid;
  gap: 16px;
}

.brand-card {
  display: grid;
  gap: 16px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 16%, rgba(251, 191, 36, 0.1), transparent 11rem),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.16);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.brand-card:hover {
  border-color: rgba(251, 191, 36, 0.6);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(124, 58, 237, 0.22);
  transform: translateY(-4px);
}

.brand-media {
  display: grid;
  min-height: 128px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.brand-card img {
  display: block;
  width: 100%;
  height: 128px;
  object-fit: contain;
  padding: 16px;
}

.brand-placeholder {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--violet), var(--orange));
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: 5px;
}

.brand-copy strong {
  font-size: 1.12rem;
  line-height: 1.2;
}

.brand-copy small {
  color: var(--yellow);
  font-size: 0.9rem;
}

.detail-card,
.schedule-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 16%, rgba(124, 58, 237, 0.16), transparent 14rem),
    var(--glass);
  padding: 28px;
}

.detail-card h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.detail-card p:not(.eyebrow),
.schedule-card p {
  color: var(--muted);
  line-height: 1.55;
}

.schedule-grid {
  display: grid;
  gap: 16px;
}

.schedule-card h3 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.schedule-card p {
  margin: 8px 0 0;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.legal-block {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  padding: clamp(20px, 4vw, 34px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}

.legal-block h2,
.legal-block h3 {
  margin: 0 0 12px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.legal-block p,
.legal-block li {
  color: var(--muted);
  line-height: 1.68;
}

.legal-block ul,
.legal-block ol {
  margin: 12px 0 0;
  padding-left: 1.25rem;
}

.sedes-grid {
  display: grid;
  gap: 8px;
}

.venues-layout {
  display: grid;
  gap: 20px;
}

.sede-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px;
}

.sede-card > span {
  position: relative;
  display: block;
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.8);
}

.sede-card > span::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(52, 211, 153, 0.65);
  border-radius: inherit;
  content: "";
  animation: ping 1.8s ease-out infinite;
}

.sede-card h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.sede-card p {
  margin-top: 2px;
  font-size: 0.88rem;
  line-height: 1.35;
}

.venues-map {
  width: min(100%, 820px);
  margin: 0 auto;
}

.venues-map-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 900 / 520;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.venues-map-tiles {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  filter: saturate(0.95) contrast(1.02);
}

.venues-map-tile {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-pin-link {
  position: absolute;
  top: var(--pin-y);
  left: var(--pin-x);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  cursor: pointer;
  outline: none;
  text-decoration: none;
  transform: translate(-12px, -100%);
}

.map-pin-dot {
  position: relative;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px 999px 999px 0;
  background: var(--orange);
  box-shadow: 0 10px 26px rgba(13, 2, 33, 0.36), 0 0 18px rgba(255, 122, 26, 0.62);
  transform: rotate(-45deg);
}

.map-pin-dot::after {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
}

.map-pin-label {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(13, 2, 33, 0.74);
  box-shadow: 0 14px 34px rgba(13, 2, 33, 0.34);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.map-pin-link:focus-visible .map-pin-dot,
.map-pin-link:hover .map-pin-dot {
  background: var(--yellow);
}

.map-pin-link:focus-visible .map-pin-label,
.map-pin-link:hover .map-pin-label {
  color: var(--yellow);
}

.schedule-map-link {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(251, 191, 36, 0.45);
  text-underline-offset: 3px;
}

.schedule-map-link:hover {
  color: var(--yellow);
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.testimonial-marquee {
  overflow: hidden;
  padding: 6px 0 22px;
  cursor: grab;
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 38s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  width: 310px;
  padding: 22px;
}

.avatar {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--violet), var(--orange));
  font-weight: 900;
}

.kid {
  margin: 4px 0 14px;
  color: var(--yellow) !important;
  font-size: 0.95rem;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 840px;
}

.faq-list details {
  overflow: hidden;
  padding: 0 20px;
  transition: background 180ms ease, border-color 180ms ease;
}

.faq-list details[open] {
  border-color: rgba(167, 139, 250, 0.6);
  background: rgba(255, 255, 255, 0.1);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--yellow);
  font-size: 1.5rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -4px 0 20px;
}

.final-cta {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.24), transparent 18rem),
    linear-gradient(135deg, var(--violet), var(--orange));
  box-shadow: 0 28px 90px rgba(255, 107, 53, 0.26);
}

.mini-robot {
  display: grid;
  width: 100px;
  height: 100px;
  place-items: center;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 3.3rem;
  animation: float 3s ease-in-out infinite;
}

.final-cta h2 {
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.final-cta p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.cta-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cta-notes span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.footer {
  display: grid;
  gap: 26px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer nav,
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.footer-contact {
  display: grid;
  gap: 5px;
  margin-top: 12px;
}

.footer-contact span {
  color: var(--muted);
  line-height: 1.55;
}

.socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.copyright {
  margin: 0;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.stagger .reveal:nth-child(2) {
  transition-delay: 100ms;
}

.stagger .reveal:nth-child(3) {
  transition-delay: 200ms;
}

.stagger .reveal:nth-child(4) {
  transition-delay: 300ms;
}

.stagger .reveal:nth-child(5) {
  transition-delay: 400ms;
}

.stagger .reveal:nth-child(6) {
  transition-delay: 500ms;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(251, 191, 36, 0);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 24px rgba(251, 191, 36, 0.22);
  }
}

@keyframes fillXp {
  to {
    width: 100%;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-10px) rotate(3deg);
  }
}

@keyframes pop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes ping {
  to {
    opacity: 0;
    transform: scale(2.2);
  }
}

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

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

@keyframes djLightSweep {
  0%,
  100% {
    opacity: 0.25;
    transform: rotate(var(--light-angle, 0deg)) scaleY(1);
  }
  50% {
    opacity: 0.85;
    transform: rotate(var(--light-angle, 0deg)) scaleY(1.08);
  }
}

@keyframes countdownPop {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  30% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes djBeat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  35% {
    transform: translateY(-12px) scale(1.04);
  }
  65% {
    transform: translateY(6px) scale(0.98);
  }
}

@keyframes djSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes djWave {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(4deg);
  }
}

@keyframes robotArmWave {
  0%,
  100% {
    transform: rotate(-16deg);
  }
  30% {
    transform: rotate(-58deg) translateY(-8px);
  }
  60% {
    transform: rotate(-34deg) translateY(-4px);
  }
}

@keyframes deckSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes noteFloat {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.7);
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-46px) scale(1.25);
  }
}

@media (max-width: 719px) {
  .venues-map-frame {
    min-height: 360px;
  }

  .map-pin-link {
    gap: 5px;
    transform: translate(-10px, -100%);
  }

  .map-pin-label {
    padding: 6px 8px;
    font-size: 0.72rem;
  }
}

@media (min-width: 720px) {
  .hero-actions {
    display: flex;
  }

  .game-actions {
    grid-template-columns: 1fr 1fr;
  }

  .game-actions .btn-sound {
    grid-column: 1 / -1;
  }

  .sequence-slots {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .feature-grid,
  .method-grid,
  .cms-grid,
  .gallery-grid,
  .learning-grid,
  .sedes-grid,
  .detail-grid,
  .schedule-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-grid {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    overflow: visible;
  }

  .gallery-card-large {
    grid-row: span 2;
    min-height: 576px;
  }

  .final-cta {
    grid-template-columns: auto 1fr auto;
  }
}

@media (min-width: 940px) {
  .cursor-follower {
    display: block;
  }

  .desktop-nav,
  .desktop-cta {
    display: flex;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 54px;
  }

  .hero-copy {
    order: -1;
  }

  .hero-visual {
    order: 0;
  }

  .robot-card {
    height: min(620px, 62vw);
    min-height: 480px;
  }

  .hero-actions {
    align-items: center;
  }

  .robot-dj-hero {
    gap: 28px;
  }

  .robot-dj-shell {
    grid-template-columns: minmax(390px, 0.92fr) minmax(420px, 1fr);
    align-items: stretch;
    gap: 18px;
  }

  .dj-stage {
    min-height: 620px;
  }

  .dj-console-card {
    align-content: start;
  }

  .level-grid {
    grid-auto-flow: initial;
    grid-auto-columns: initial;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: visible;
    padding-bottom: 8px;
  }

  .track {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    padding: 44px 0 10px;
  }

  .track-line {
    top: 72px;
    right: 8%;
    bottom: auto;
    left: 8%;
    width: auto;
    height: 6px;
  }

  .track-line span {
    width: 0;
    height: 100%;
  }

  .track.in-view .track-line span {
    width: 100%;
    height: 100%;
  }

  .track-node {
    flex-direction: column;
    text-align: center;
  }

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

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

  .learning-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .gallery-heading {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
    align-items: end;
  }

  .gallery-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
  }

  .learning-card {
    align-items: flex-start;
    flex-direction: column;
    min-height: 170px;
  }

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

  .venues-layout {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
  }

  .venues-layout .sedes-grid {
    grid-template-columns: 1fr;
  }

  .venues-layout .venues-map {
    width: 100%;
  }

  .footer {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: start;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-follower {
    display: none;
  }
}
