/* ============================================
   TOYVERSE — CINEMATIC TOY BRAND WEBSITE
   Premium, Magical, Playful Design System
   ============================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  /* Primary Palette */
  --color-primary: #7c3aed;
  --color-primary-light: #a78bfa;
  --color-primary-dark: #5b21b6;
  --color-secondary: #ec4899;
  --color-secondary-light: #f472b6;
  --color-accent: #06b6d4;
  --color-accent-light: #67e8f9;
  --color-magic: #f59e0b;
  --color-magic-light: #fbbf24;

  /* Neutrals */
  --color-bg: #0a0a1a;
  --color-bg-light: #12122a;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-surface: rgba(255, 255, 255, 0.08);
  --color-text: #f1f5f9;
  --color-text-muted: #94a3b8;
  --color-text-dim: #64748b;
  --color-white: #ffffff;
  --color-black: #000000;

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 20px;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a0533 30%, #0d1b3e 60%, #0a0a1a 100%);
  --gradient-magic: linear-gradient(135deg, #7c3aed, #ec4899, #f59e0b);
  --gradient-glow: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);

  /* Shadows */
  --shadow-glow-primary: 0 0 40px rgba(124, 58, 237, 0.3);
  --shadow-glow-secondary: 0 0 40px rgba(236, 72, 153, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-elevated: 0 20px 60px rgba(0, 0, 0, 0.4);

  /* Typography */
  --font-display: 'Baloo 2', cursive;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1400px;

  /* Animation */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s var(--ease-in-out);
  --transition-slow: 0.6s var(--ease-out-expo);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.7;
}

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

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: none;
  color: inherit;
}

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

ul { list-style: none; }

::selection {
  background: rgba(124, 58, 237, 0.4);
  color: var(--color-white);
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: difference;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo),
              border-color 0.3s, background 0.3s;
}

.cursor-dot.hover {
  width: 16px;
  height: 16px;
  background: var(--color-secondary);
}

.cursor-ring.hover {
  width: 60px;
  height: 60px;
  border-color: var(--color-secondary);
  background: rgba(236, 72, 153, 0.1);
}

/* ---------- PAGE LOADER ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
  z-index: 2;
}

.loader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.loader-icon {
  font-size: 2.5rem;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-bar-track {
  width: 240px;
  height: 4px;
  background: var(--color-surface);
  border-radius: 4px;
  margin: 0 auto 20px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient-magic);
  border-radius: 4px;
  transition: width 0.3s;
}

.loader-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.loader-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

/* ---------- NAVIGATION ---------- */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px 40px;
  transition: all 0.4s var(--ease-out-expo);
}

.main-nav.scrolled {
  padding: 12px 40px;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
}

.logo-icon {
  font-size: 1.4rem;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text {
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-magic);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s var(--ease-out-expo);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient-layer {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.6;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px; height: 400px;
  background: var(--color-primary);
  top: -10%; left: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px; height: 300px;
  background: var(--color-secondary);
  top: 20%; right: -5%;
  animation-delay: -2s;
}

.orb-3 {
  width: 350px; height: 350px;
  background: var(--color-accent);
  bottom: -10%; left: 30%;
  animation-delay: -4s;
}

.orb-4 {
  width: 250px; height: 250px;
  background: var(--color-magic);
  top: 50%; left: 10%;
  animation-delay: -6s;
}

.orb-5 {
  width: 200px; height: 200px;
  background: var(--color-primary-light);
  bottom: 20%; right: 15%;
  animation-delay: -3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.05); }
}

/* Floating Toys */
.hero-floating-toys {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.floating-toy {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.6;
  animation: toyFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
}

.toy-1 { top: 15%; left: 8%; animation-delay: 0s; font-size: 3rem; }
.toy-2 { top: 25%; right: 12%; animation-delay: -1s; font-size: 2.8rem; }
.toy-3 { bottom: 30%; left: 5%; animation-delay: -2s; }
.toy-4 { top: 10%; right: 25%; animation-delay: -3s; font-size: 2rem; }
.toy-5 { bottom: 15%; right: 8%; animation-delay: -4s; font-size: 3.5rem; }
.toy-6 { top: 60%; left: 15%; animation-delay: -5s; font-size: 2rem; }
.toy-7 { bottom: 25%; left: 30%; animation-delay: -1.5s; font-size: 2.2rem; }
.toy-8 { top: 40%; right: 5%; animation-delay: -2.5s; font-size: 2.4rem; }

@keyframes toyFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(-10px) rotate(-3deg); }
  75% { transform: translateY(-25px) rotate(3deg); }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-magic-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  margin-bottom: 30px;
}

.badge-star {
  color: var(--color-magic);
  font-size: 0.7rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.title-line {
  display: block;
}

.highlight-text {
  font-style: normal;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-sparkle {
  display: inline-block;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
  50% { transform: scale(1.3) rotate(20deg); opacity: 0.8; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 600;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.btn-primary {
  background: var(--gradient-magic);
  color: var(--color-white);
  box-shadow: 0 4px 30px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--color-white);
  backdrop-filter: blur(10px);
}

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

.btn-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.btn:hover .btn-glow {
  opacity: 1;
}

.btn-icon {
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease-out-expo);
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.1rem;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* Scroll Indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--color-text-muted);
  border-radius: 13px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--color-text-muted);
  border-radius: 3px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ---------- SECTION COMMONS ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-magic-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-style: normal;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ---------- TOY COLLECTIONS ---------- */
.collections-section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  padding: 0 20px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-magic);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.collections-scroll-wrapper {
  overflow-x: auto;
  padding: 20px 0 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.collections-scroll-wrapper::-webkit-scrollbar {
  display: none;
}

.collections-track {
  display: flex;
  gap: 30px;
  padding: 0 40px;
  width: max-content;
}

/* Toy Cards */
.toy-card {
  width: 300px;
  flex-shrink: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out-expo);
}

.toy-card:hover {
  transform: translateY(-10px);
}

.toy-card-glow {
  position: absolute;
  inset: -2px;
  background: var(--gradient-magic);
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.toy-card:hover .toy-card-glow {
  opacity: 1;
}

.toy-card-inner {
  position: relative;
  z-index: 1;
  background: var(--color-bg-light);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.toy-card:hover .toy-card-inner {
  border-color: transparent;
}

.toy-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.toy-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-out-expo);
}

.toy-card:hover .toy-placeholder {
  transform: scale(1.05);
}

.toy-emoji {
  font-size: 5rem;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
  transition: transform 0.5s var(--ease-out-expo);
}

.toy-card:hover .toy-emoji {
  transform: scale(1.15) rotate(-5deg);
}

.toy-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--color-primary);
  color: var(--color-white);
}

.toy-card-badge.hot {
  background: var(--color-secondary);
}

.toy-card-info {
  padding: 24px;
}

.toy-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.toy-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.toy-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.toy-rating {
  color: var(--color-magic);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* ---------- STORY WORLD ---------- */
.story-section {
  position: relative;
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.story-parallax-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.story-layer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
}

.story-layer-1 {
  background: var(--color-primary);
  top: -20%;
  transform: scale(1.5);
}

.story-layer-2 {
  background: var(--color-secondary);
  bottom: -30%;
  right: -20%;
  transform: scale(1.3);
}

.story-layer-3 {
  background: var(--color-accent);
  top: 30%;
  left: -10%;
  transform: scale(1.2);
}

.story-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.story-chapters {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.story-chapter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  opacity: 0;
  transform: translateY(60px);
}

.story-chapter:nth-child(even) {
  direction: rtl;
}

.story-chapter:nth-child(even) > * {
  direction: ltr;
}

.chapter-visual {
  position: relative;
}

.chapter-scene {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}

.scene-character {
  font-size: 6rem;
  filter: drop-shadow(0 10px 40px rgba(0,0,0,0.3));
  animation: toyFloat 4s ease-in-out infinite;
}

.chapter-text {
  padding: 20px;
}

.chapter-number {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-magic-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.chapter-text h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.chapter-text p {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* ---------- WHY KIDS LOVE US ---------- */
.why-section {
  padding: var(--section-padding) 40px;
  position: relative;
}

.why-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(var(--glass-blur));
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-magic);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 0;
}

.why-card:hover::before {
  opacity: 0.05;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: var(--shadow-glow-primary);
}

.why-card > * {
  position: relative;
  z-index: 1;
}

.why-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.why-icon {
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  transition: transform 0.4s var(--ease-out-expo);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
}

.why-icon-glow {
  position: absolute;
  inset: -10px;
  background: var(--gradient-magic);
  border-radius: 24px;
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.4s;
}

.why-card:hover .why-icon-glow {
  opacity: 0.3;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.why-counter {
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
}

.counter-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.counter-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ---------- BUILD-A-TOY ---------- */
.build-section {
  padding: var(--section-padding) 40px;
  position: relative;
  overflow: hidden;
}

.build-workshop {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.build-preview {
  position: sticky;
  top: 120px;
  text-align: center;
}

.build-stage {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 60px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
}

.build-toy-display {
  position: relative;
  transition: all 0.5s var(--ease-out-expo);
}

.build-part {
  transition: all 0.4s var(--ease-out-expo);
}

.build-body {
  font-size: 8rem;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: toyFloat 4s ease-in-out infinite;
}

.build-accessory {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
}

.build-glow-base {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 20px;
  background: var(--gradient-magic);
  filter: blur(30px);
  border-radius: 50%;
  opacity: 0.4;
}

.build-name-tag {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.build-controls {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.build-control-group {
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(var(--glass-blur));
}

.build-control-group h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}

.build-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.build-option {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 2px solid var(--glass-border);
  transition: all var(--transition-base);
}

.build-option:hover {
  border-color: var(--color-primary-light);
  transform: scale(1.1);
}

.build-option.active {
  border-color: var(--color-primary);
  background: rgba(124, 58, 237, 0.2);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.build-colors {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.color-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid transparent;
  transition: all var(--transition-base);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.color-btn:hover {
  transform: scale(1.15);
}

.color-btn.active {
  border-color: var(--color-white);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.build-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-surface);
  border-radius: 3px;
  outline: none;
}

.build-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-magic);
  cursor: none;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
}

.build-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gradient-magic);
  cursor: none;
  border: none;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

.build-done-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
}

/* ---------- GALLERY ---------- */
.gallery-section {
  padding: var(--section-padding) 40px;
  position: relative;
}

.gallery-masonry {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: none;
}

.gallery-item.gi-tall {
  grid-row: span 2;
}

.gallery-item.gi-wide {
  grid-column: span 2;
}

.gallery-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s var(--ease-out-expo);
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-emoji {
  font-size: 4rem;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
  transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-emoji {
  transform: scale(1.2) rotate(10deg);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s;
}

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

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  transform: translateY(10px);
  transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 2rem;
  color: var(--color-white);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.15);
  transform: rotate(90deg);
}

.lightbox-content {
  width: 70vw;
  max-width: 800px;
  aspect-ratio: 16/10;
  border-radius: 24px;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  padding: var(--section-padding) 40px;
  position: relative;
  overflow: hidden;
}

.testimonial-carousel {
  max-width: var(--container-max);
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s var(--ease-out-expo);
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--gradient-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(var(--glass-blur));
  transition: all 0.4s var(--ease-out-expo);
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: var(--shadow-glow-primary);
}

.testimonial-stars {
  color: var(--color-magic);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-white);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--color-text-dim);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.carousel-btn:hover {
  background: var(--gradient-magic);
  border-color: transparent;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-surface);
  transition: all var(--transition-base);
  cursor: none;
}

.carousel-dot.active {
  background: var(--gradient-magic);
  width: 30px;
  border-radius: 5px;
}

/* ---------- BRAND UNIVERSE ---------- */
.universe-section {
  padding: var(--section-padding) 40px;
  position: relative;
  overflow: hidden;
}

.universe-map {
  max-width: 700px;
  aspect-ratio: 1;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.universe-center {
  position: absolute;
  z-index: 5;
}

.universe-planet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: none;
  transition: transform 0.4s var(--ease-out-expo);
}

.universe-planet:hover {
  transform: scale(1.2);
}

.universe-planet span {
  font-size: 3rem;
  filter: drop-shadow(0 0 20px rgba(255,255,255,0.3));
}

.planet-center span {
  font-size: 4rem;
}

.planet-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 0.3s;
}

.universe-planet:hover .planet-label {
  opacity: 1;
}

.universe-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.orbit-1 {
  width: 200px; height: 200px;
  animation: orbitSpin 20s linear infinite;
}

.orbit-2 {
  width: 320px; height: 320px;
  animation: orbitSpin 30s linear infinite reverse;
}

.orbit-3 {
  width: 440px; height: 440px;
  animation: orbitSpin 25s linear infinite;
}

.orbit-4 {
  width: 300px; height: 300px;
  animation: orbitSpin 35s linear infinite reverse;
}

.orbit-5 {
  width: 520px; height: 520px;
  animation: orbitSpin 40s linear infinite;
}

.orbit-6 {
  width: 600px; height: 600px;
  animation: orbitSpin 45s linear infinite reverse;
}

.universe-orbit .universe-planet {
  animation: orbitCounterSpin 20s linear infinite;
}

.orbit-2 .universe-planet { animation-duration: 30s; animation-direction: reverse; }
.orbit-3 .universe-planet { animation-duration: 25s; }
.orbit-4 .universe-planet { animation-duration: 35s; animation-direction: reverse; }
.orbit-5 .universe-planet { animation-duration: 40s; }
.orbit-6 .universe-planet { animation-duration: 45s; animation-direction: reverse; }

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes orbitCounterSpin {
  from { transform: rotate(0deg) translateY(-10px); }
  to { transform: rotate(-360deg) translateY(-10px); }
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  position: relative;
  padding: 160px 40px;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0533 0%, #0d1b3e 50%, #1a0533 100%);
}

.cta-floating-toys {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-toy {
  position: absolute;
  font-size: 3rem;
  opacity: 0.3;
  animation: toyFloat 6s ease-in-out infinite;
}

.cta-toy-1 { top: 10%; left: 10%; animation-delay: 0s; }
.cta-toy-2 { top: 20%; right: 15%; animation-delay: -1s; }
.cta-toy-3 { bottom: 15%; left: 20%; animation-delay: -2s; }
.cta-toy-4 { bottom: 25%; right: 10%; animation-delay: -3s; }
.cta-toy-5 { top: 50%; left: 50%; animation-delay: -4s; font-size: 2rem; }

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-title em {
  font-style: normal;
  background: var(--gradient-magic);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-text {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.main-footer {
  position: relative;
  background: var(--color-bg-light);
  overflow: hidden;
}

.footer-wave {
  position: relative;
  top: -2px;
  color: var(--color-bg);
  line-height: 0;
}

.footer-wave svg {
  width: 100%;
  height: 80px;
}

.footer-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px 40px 30px;
  position: relative;
  z-index: 2;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: var(--color-text-muted);
}

.social-link:hover {
  background: var(--gradient-magic);
  border-color: transparent;
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-links-group h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-links-group a:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--color-text-dim);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--color-text-dim);
  transition: color var(--transition-base);
}

.footer-legal a:hover {
  color: var(--color-white);
}

.footer-floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-float {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.1;
  color: var(--color-primary-light);
  animation: toyFloat 8s ease-in-out infinite;
}

.f-1 { top: 20%; left: 5%; animation-delay: 0s; }
.f-2 { top: 40%; right: 8%; animation-delay: -2s; }
.f-3 { bottom: 30%; left: 15%; animation-delay: -4s; }
.f-4 { bottom: 20%; right: 20%; animation-delay: -6s; }

/* ---------- RESPONSIVE DESIGN ---------- */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .testimonial-card {
    min-width: calc(50% - 15px);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-grid .footer-links-group:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

  .build-workshop {
    grid-template-columns: 1fr;
  }

  .build-preview {
    position: relative;
    top: 0;
  }

  .story-chapter {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .story-chapter:nth-child(even) {
    direction: ltr;
  }

  .universe-map {
    max-width: 500px;
  }

  .orbit-5, .orbit-6 {
    display: none;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .cursor-dot, .cursor-ring {
    display: none !important;
  }

  .main-nav {
    padding: 16px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(10, 10, 26, 0.98);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.5s var(--ease-out-expo);
    z-index: 9998;
    border-left: 1px solid var(--glass-border);
  }

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

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 9999;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

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

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-item.gi-wide {
    grid-column: span 1;
  }

  .testimonial-card {
    min-width: calc(100% - 0px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-section {
    padding: 100px 20px;
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .floating-toy {
    font-size: 1.5rem !important;
    opacity: 0.3;
  }

  .collections-track {
    padding: 0 20px;
  }

  .toy-card {
    width: 260px;
  }

  .universe-map {
    max-width: 320px;
  }

  .orbit-3, .orbit-4, .orbit-5, .orbit-6 {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 60px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 20px;
  }

  .btn {
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 6px 16px;
  }

  .build-stage {
    min-height: 300px;
    padding: 40px;
  }

  .build-body {
    font-size: 5rem;
  }

  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item.gi-tall {
    grid-row: span 1;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
}

/* ---------- UTILITY & ANIMATION CLASSES ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(60px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.8);
}

/* Particle */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-white);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

/* Confetti effect for build-a-toy */
.confetti {
  position: fixed;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  pointer-events: none;
  z-index: 100000;
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 4px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero-scroll-indicator {
    animation: none;
  }
}
