:root {
  --primary: #D0BCFF;
  --on-primary: #381E72;
  --primary-container: rgba(79, 55, 139, 0.3);
  --on-primary-container: #EADDFF;
  --secondary: #CCC2DC;
  --tertiary: #EFB8C8;
  --surface: #1C1B1F;
  --surface-solid: #1C1B1F;
  --on-surface: #E6E1E5;
  --surface-variant: #49454F;
  --bg: #1C1B1F;
  --cyan-glow: #00E5FF;
  --neon-purple: #BB86FC;
  --deep-purple: #6200EE;
  
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; 
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--on-surface);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Subtle grain noise */
.noise-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Typography utilities */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-2 { padding-top: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.secondary-text { color: var(--secondary); }
.max-w-lg { max-width: 32rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

.dark-surface {
  background-color: rgba(0, 0, 0, 0.4);
  border-top: 1px solid var(--surface-variant);
  border-bottom: 1px solid var(--surface-variant);
}

/* Glassmorphism */
.glass-card {
  background: var(--primary-container);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
  border-color: var(--cyan-glow);
}

.glass-card-hover {
  background: var(--primary-container);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.gradient-bg-app {
  background: linear-gradient(135deg, #111, var(--primary-container), #111);
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--cyan-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback */
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--on-primary);
  border: none;
  box-shadow: 0 4px 15px rgba(208, 188, 255, 0.3);
}

.btn-primary:hover {
  background-color: var(--neon-purple);
  box-shadow: 0 6px 20px rgba(208, 188, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cyan-glow);
  border: 2px solid var(--cyan-glow);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
  transform: translateY(-2px);
}

.small-btn {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
  border-radius: 20px;
}

.cta-btn {
  border: 1px solid var(--cyan-glow);
  color: var(--cyan-glow);
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-weight: bold;
}
.cta-btn:hover {
  background: var(--cyan-glow);
  color: #000;
}

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

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(28, 27, 31, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--on-surface);
  text-shadow: 0 0 10px rgba(208, 188, 255, 0.5);
}

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

.nav-links a:not(.cta-btn) {
  color: var(--on-surface);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a:not(.cta-btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--cyan-glow);
  transition: width 0.3s ease;
}

.nav-links a:not(.cta-btn):hover {
  color: var(--cyan-glow);
}
.nav-links a:not(.cta-btn):hover::after {
  width: 100%;
}

.desktop-cta { display: block; }
.mobile-cta { display: none; }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  width: 25px; height: 2px;
  background: var(--on-surface);
  transition: 0.3s;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(98,0,238,0.2) 0%, rgba(0,229,255,0.05) 40%, transparent 70%);
  z-index: -1;
  filter: blur(60px);
  animation: pulseGlow 8s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.hero-title {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--secondary);
  max-width: 800px;
  margin: 0 auto 3rem auto;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.mouse {
  width: 30px; height: 50px;
  border: 2px solid var(--secondary);
  border-radius: 15px;
  position: relative;
}
.mouse::before {
  content: '';
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--cyan-glow);
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(-10px) translateX(-50%); }
  60% { transform: translateY(-5px) translateX(-50%); }
}

@keyframes scrollWheel {
  0% { top: 10px; opacity: 1; }
  100% { top: 25px; opacity: 0; }
}

/* App Preview */
.app-preview {
  padding-top: 2rem;
}

.mockup-frame {
  background: #111;
  border: 1px solid var(--surface-variant);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(0, 229, 255, 0.1);
  margin-bottom: 2rem;
  position: relative;
}

.mockup-frame::before {
  content: '';
  display: block;
  width: 100%; height: 20px;
  background: #222;
  border-radius: 6px 6px 0 0;
  margin-bottom: 10px;
}

.placeholder-img {
  width: 100%;
  height: auto;
  min-height: 400px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.mockup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.abstract-ui {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  opacity: 0.3;
}
.ui-sidebar {
  width: 20%;
  background: rgba(0,0,0,0.5);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.ui-main {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.ui-header {
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}
.ui-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.ui-card {
  aspect-ratio: 3/4;
  background: rgba(208, 188, 255, 0.1);
  border-radius: 8px;
}

.ph-text {
  font-size: 2.5rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
  z-index: 2;
  letter-spacing: 2px;
  color: var(--on-surface);
}

.preview-thumbnails {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.thumbnail {
  flex: 1;
  max-width: 250px;
  aspect-ratio: 16/9;
  background: var(--surface-variant);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
  cursor: pointer;
}

.thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail.active {
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(208, 188, 255, 0.3);
}

.thumb-ph {
  width: 100%; height: 100%;
  background: linear-gradient(45deg, #1A1A1A, #2A2A2A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--secondary);
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.glow-icon {
  text-shadow: 0 0 15px rgba(208, 188, 255, 0.5);
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary);
}

.feature-card p {
  color: var(--secondary);
  font-size: 0.95rem;
}

/* Platforms Marquee */
.marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.5), transparent 10%, transparent 90%, rgba(0,0,0,0.5));
  border-top: 1px solid var(--surface-variant);
  border-bottom: 1px solid var(--surface-variant);
}

.marquee {
  display: inline-block;
  animation: marquee 40s linear infinite;
}

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

.marquee span {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.1);
  margin: 0 3rem;
  transition: all 0.3s;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
}

.marquee span:hover {
  color: var(--neon-purple);
  text-shadow: 0 0 20px rgba(187, 134, 252, 0.5);
  -webkit-text-stroke: 0px;
}

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

/* Pill tags */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.pill {
  padding: 0.6rem 1.8rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 30px;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  transition: all 0.3s ease;
  cursor: default;
}
.pill.outline-glow:hover {
  border-color: var(--cyan-glow);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  color: var(--cyan-glow);
}

.stat-ticker {
  font-size: 1.25rem;
  color: var(--primary);
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

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

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--primary);
  text-shadow: 0 0 15px rgba(208, 188, 255, 0.4);
  line-height: 1.1;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.5rem;
}

/* View Modes */
.view-modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.view-mode-card {
  text-align: center;
  cursor: pointer;
}

.view-placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(to bottom, #25232A, var(--bg));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-heading);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s;
}

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

.group:hover .view-placeholder {
  border-color: var(--cyan-glow);
  box-shadow: 0 10px 30px rgba(0, 229, 255, 0.15);
  transform: translateY(-5px);
  color: var(--cyan-glow);
}

.view-mode-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.group:hover h3 {
  color: var(--cyan-glow);
}

/* Gamepad / Keyboard section */
.controls-split {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.controls-text {
  flex: 1;
}

.controls-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gamepad-art {
  width: 280px;
  height: 140px;
  background: var(--surface-variant);
  border-radius: 70px;
  position: relative;
  box-shadow: inset 0 -4px 15px rgba(0,0,0,0.6), 0 15px 30px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}
.gamepad-art.glow-effect:hover {
  transform: scale(1.05);
  box-shadow: inset 0 -4px 15px rgba(0,0,0,0.6), 0 15px 40px rgba(0, 229, 255, 0.2);
}

.dpad {
  position: absolute;
  left: 35px; top: 40px;
  width: 60px; height: 60px;
  background: #222;
  border-radius: 4px;
  clip-path: polygon(33% 0, 66% 0, 66% 33%, 100% 33%, 100% 66%, 66% 66%, 66% 100%, 33% 100%, 33% 66%, 0 66%, 0 33%, 33% 33%);
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.1);
}

.action-btns {
  position: absolute;
  right: 35px; top: 25px;
  width: 90px; height: 90px;
}

.g-btn {
  position: absolute;
  width: 28px; height: 28px;
  background: #333;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: bold;
  font-family: var(--font-heading);
  box-shadow: 0 4px 6px rgba(0,0,0,0.4), inset 0 1px 2px rgba(255,255,255,0.1);
}

.y-btn { top: 0; left: 31px; color: #f4c531; }
.x-btn { top: 31px; left: 0; color: #00E5FF; }
.b-btn { top: 31px; right: 0; color: #ff3b3b; }
.a-btn { bottom: 0; left: 31px; color: #4CAF50; }

.keyboard-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.k-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.k-key {
  background: #2A2A2A;
  padding: 6px 12px;
  border-radius: 6px;
  border-bottom: 3px solid #111;
  font-family: monospace;
  font-weight: bold;
  color: var(--primary);
  font-size: 1.1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.k-label {
  font-size: 0.9rem;
  color: var(--secondary);
}

/* Download Cards */
.platform-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.p-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.p-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.p-card h3 {
  font-size: 1.5rem;
  color: var(--on-surface);
}

.p-card p {
  color: var(--secondary);
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Terminal Box */
.terminal-box {
  max-width: 650px;
  margin: 4rem auto 0 auto;
  background: #0D0D0D;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  border: 1px solid #333;
}

.terminal-header {
  background: #1A1A1A;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #222;
}

.dot {
  width: 12px; height: 12px; border-radius: 50%;
}
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.term-title {
  margin-left: auto; margin-right: auto;
  color: #888; font-size: 0.85rem;
  font-family: var(--font-body);
  transform: translateX(-24px);
}

pre {
  padding: 1.5rem;
  overflow-x: auto;
  line-height: 1.8;
}
code {
  font-family: 'Fira Code', 'Courier New', Courier, monospace;
  color: var(--on-surface);
  font-size: 0.95rem;
}
.cmd-prompt {
  color: var(--cyan-glow);
  margin-right: 8px;
  user-select: none;
}

/* Open Source */
.badges .badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(208, 188, 255, 0.1);
  border: 1px solid rgba(208, 188, 255, 0.3);
  border-radius: 8px;
  margin: 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--primary);
}

.language-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.flag-pill {
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--secondary);
  border: 1px solid transparent;
  transition: all 0.3s;
}
.flag-pill:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
  z-index: 2001;
  transition: transform 0.3s;
}

.lightbox-close:hover {
  transform: scale(1.2) rotate(90deg);
  color: var(--primary);
}

/* Footer */
.footer {
  background: #0a0a0c;
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  gap: 2rem;
}

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

.footer-links a {
  color: var(--secondary);
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--cyan-glow);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  color: var(--surface-variant);
}

/* Animations */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="zoom-in"] {
  transform: scale(0.95);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0) scale(1) translateX(0);
}

/* Media Queries */
@media (max-width: 900px) {
  .controls-split {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .desktop-cta { display: none; }
  .mobile-cta { display: inline-block; margin-top: 1rem; text-align: center;}
  
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(28, 27, 31, 0.98);
    padding: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}
