:root {
  --bg: #282a36;
  --bg-dark: #1e1f29;
  --bg-darker: #141419;
  --current: #44475a;
  --fg: #f8f8f2;
  --comment: #6272a4;
  --cyan: #8be9fd;
  --green: #50fa7b;
  --orange: #ffb86c;
  --pink: #ff79c6;
  --purple: #bd93f9;
  --red: #ff5555;
  --yellow: #f1fa8c;

  --font-heading: 'Segoe UI', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Segoe UI', 'SF Pro Text', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Noto Sans', 'Liberation Sans', Arial, sans-serif;
  --font-mono: 'SF Mono', 'Cascadia Code', 'Consolas', 'DejaVu Sans Mono', 'Liberation Mono', 'Menlo', 'Courier New', monospace;
}

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

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--purple) var(--bg-dark); }
body { font-family: var(--font-body); background: var(--bg-darker); color: var(--fg); overflow-x: hidden; }

/* Preloader */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-darker);
  display: flex; align-items: center; justify-content: center; flex-direction: column;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-ring {
  width: 80px; height: 80px; border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: var(--purple); border-bottom-color: var(--cyan);
  animation: spin 1s linear infinite;
}
.loader-text { margin-top: 20px; font-family: var(--font-heading); color: var(--purple); font-size: 14px; letter-spacing: 4px; animation: pulse-text .5s ease-in-out infinite; font-weight: 700; text-transform: uppercase; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-text { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(30,31,41,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(189,147,249,0.15);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.navbar.nav-hidden { transform: translateY(-100%); }

.logo {
  font-family: var(--font-heading); font-weight: 900; font-size: 22px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  background-clip: text; -webkit-text-fill-color: transparent;
  text-shadow: none; filter: drop-shadow(0 0 10px rgba(189,147,249,0.5));
  text-decoration: none; letter-spacing: 3px; text-transform: uppercase;
}

.nav-links { display: none; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--fg); text-decoration: none; font-size: 15px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--purple); transition: width 0.3s;
}
.nav-links a:hover { color: var(--purple); }
.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 12px; }

/* Search */
.search-wrapper {
  position: relative; display: flex; align-items: center;
}
.btn-search {
  background: none; border: none; color: var(--fg); cursor: pointer; padding: 8px;
  transition: color 0.3s; position: relative; z-index: 2; flex-shrink: 0;
}
.btn-search:hover { color: var(--cyan); }
.search-input {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 0; opacity: 0; padding: 8px 14px; border-radius: 6px;
  border: 1px solid rgba(189,147,249,0.3); background: rgba(30,31,41,0.95);
  color: var(--fg); font-family: var(--font-body); font-size: 14px;
  backdrop-filter: blur(10px);
  transition: width 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s, padding 0.35s;
  outline: none;
}
.search-input::placeholder { color: var(--comment); }
.search-input.active {
  width: 220px; opacity: 1; padding: 8px 14px 8px 38px;
}
@media (max-width: 640px) {
  .search-input.active { width: 160px; }
}

.btn-signin {
  display: none; padding: 8px 20px; border: 1px solid var(--purple); border-radius: 6px;
  background: transparent; color: var(--purple); font-family: var(--font-body);
  font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px;
}
.btn-signin:hover { background: rgba(189,147,249,0.15); }

.btn-preorder {
  padding: 8px 20px; border: none; border-radius: 6px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff; font-family: var(--font-body);
  font-weight: 700; font-size: 14px; cursor: pointer;
  box-shadow: 0 0 20px rgba(189,147,249,0.4);
  transition: all 0.3s; text-transform: uppercase; letter-spacing: 1px;
}
.btn-preorder:hover { box-shadow: 0 0 30px rgba(189,147,249,0.7); transform: translateY(-2px); }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 8px; z-index: 1100;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--fg);
  transition: all 0.3s; transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Sidebar */
.sidebar-overlay {
  position: fixed; inset: 0; z-index: 1050;
  background: rgba(20,20,25,0.8); backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.sidebar-overlay.active { opacity: 1; visibility: visible; }

.sidebar {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1060;
  width: 300px; max-width: 85vw;
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
  border-left: 1px solid rgba(189,147,249,0.2);
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; padding: 32px 32px 32px;
}
.sidebar.active { transform: translateX(0); }

/* Close button inside sidebar, at top */
.sidebar-close {
  position: absolute; top: 20px; right: 20px; z-index: 1070;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(68,71,90,0.8); border: 1px solid rgba(189,147,249,0.3);
  color: var(--fg); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; font-size: 0;
}
.sidebar-close:hover { background: var(--red); border-color: var(--red); }
.sidebar-close::before, .sidebar-close::after {
  content: ''; position: absolute;
  width: 18px; height: 2px; background: var(--fg); border-radius: 1px;
}
.sidebar-close::before { transform: rotate(45deg); }
.sidebar-close::after { transform: rotate(-45deg); }

.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 24px; flex: 1; margin-top: 48px; }
.sidebar-links a {
  color: var(--fg); text-decoration: none; font-size: 20px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; display: block;
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s, padding-left 0.3s;
}
.sidebar-links a:hover { color: var(--purple); padding-left: 10px; }
.sidebar-social { display: flex; gap: 20px; margin-top: auto; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); }
.sidebar-social a { color: var(--comment); transition: color 0.3s; }
.sidebar-social a:hover { color: var(--cyan); }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 120px 20px 60px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(189,147,249,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(139,233,253,0.1) 0%, transparent 50%),
              radial-gradient(ellipse at 50% 50%, rgba(255,121,198,0.05) 0%, transparent 70%),
              var(--bg-darker);
}

/* Stars / Particles */
.particles {
  position: absolute; inset: 0; overflow: hidden;
}
.particle {
  position: absolute; border-radius: 50%;
  background: var(--purple);
  animation: float-particle linear infinite;
  will-change: transform, opacity;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

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

/* Glitch title */
.hero-title {
  font-family: var(--font-heading); font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 5.5rem); line-height: 1.1;
  background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 40%, var(--pink) 70%, var(--yellow) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative; margin-bottom: 20px;
  animation: glitch-skew .4s infinite linear alternate-reverse;
  will-change: transform;
  letter-spacing: 4px; text-transform: uppercase;
}
.hero-title::before, .hero-title::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title::before {
  animation: glitch-1 .3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  will-change: transform;
}
.hero-title::after {
  animation: glitch-2 .3s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  will-change: transform;
}

@keyframes glitch-skew {
  0%,90%,100% { transform: skew(0deg); }
  93% { transform: skew(-1deg); }
  96% { transform: skew(1deg); }
}
@keyframes glitch-1 {
  0%,85%,100% { transform: translate(0); }
  87% { transform: translate(-3px, -1px); }
  91% { transform: translate(3px, 1px); }
  95% { transform: translate(-2px, 0); }
}
@keyframes glitch-2 {
  0%,80%,100% { transform: translate(0); }
  83% { transform: translate(3px, 1px); }
  88% { transform: translate(-3px, -1px); }
  93% { transform: translate(2px, 0); }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem); color: var(--comment);
  max-width: 600px; margin: 0 auto 40px; line-height: 1.6; font-weight: 400;
}

/* Countdown */
.countdown {
  display: flex; justify-content: center; gap: 16px; margin-bottom: 40px; flex-wrap: wrap;
}
.countdown-item {
  background: rgba(68,71,90,0.5); border: 1px solid rgba(189,147,249,0.2);
  border-radius: 12px; padding: 16px 20px; min-width: 80px;
  backdrop-filter: blur(10px);
}
.countdown-value {
  font-family: var(--font-mono); font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--cyan); display: block; line-height: 1;
}
.countdown-label { font-size: 12px; color: var(--comment); text-transform: uppercase; letter-spacing: 2px; margin-top: 4px; }

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 36px; border: none; border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff; font-family: var(--font-body); font-weight: 700; font-size: 16px;
  cursor: pointer; text-transform: uppercase; letter-spacing: 2px;
  box-shadow: 0 0 30px rgba(189,147,249,0.4);
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(189,147,249,0.6); }

.btn-secondary {
  padding: 14px 36px; border: 2px solid var(--cyan); border-radius: 8px;
  background: transparent; color: var(--cyan); font-family: var(--font-body);
  font-weight: 700; font-size: 16px; cursor: pointer; text-transform: uppercase; letter-spacing: 2px;
  transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: rgba(139,233,253,0.1); transform: translateY(-3px); box-shadow: 0 0 30px rgba(139,233,253,0.3); }

/* Floating decor */
.float-decor {
  position: absolute; z-index: 1; opacity: 0.15; will-change: transform;
  animation: float-bob 3s ease-in-out infinite;
  pointer-events: none;
}
.float-decor svg { width: 100%; height: 100%; }
@keyframes float-bob {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Glitch effect */
.glitch-title {
  position: relative;
}

.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 40%, var(--pink) 70%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  animation: glitch-1 .3s infinite linear alternate-reverse;
}

.glitch-title::after {
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  animation: glitch-2 .3s infinite linear alternate-reverse;
}

/* Sections common */
section { padding: 2em 0; position: relative; }
.section-title {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 3rem); text-align: center; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px; text-transform: uppercase;
}
.section-subtitle { text-align: center; color: var(--comment); font-size: 16px; margin-bottom: 60px; max-width: 500px; margin-left: auto; margin-right: auto; }
.container { max-width: 1200px; margin: 0 auto; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Features */
.features-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
.feature-card {
  background: linear-gradient(135deg, rgba(68,71,90,0.4), rgba(30,31,41,0.8));
  border: 1px solid rgba(189,147,249,0.15); border-radius: 16px;
  padding: 36px 28px; text-align: center;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  will-change: transform, box-shadow;
}
.feature-card:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 0 40px rgba(189,147,249,0.2);
  border-color: var(--purple);
}
.feature-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.feature-card h3 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 12px; color: var(--fg); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.feature-card p { color: var(--comment); font-size: 15px; line-height: 1.6; }

/* Screenshots Gallery */
.gallery-wrapper { position: relative; overflow: hidden; }
.gallery-track {
  display: flex; gap: 16px;
  transition: transform 0.3s ease;
  will-change: transform;
  user-select: none;
}
.gallery-track.dragging { cursor: grabbing; transition: none; }
.gallery-track:not(.dragging) { cursor: grab; }
.gallery-item {
  min-width: 280px; height: 200px; border-radius: 12px; overflow: hidden;
  position: relative; flex-shrink: 0;
  border: 2px solid rgba(189,147,249,0.1);
  transition: border-color 0.3s;
}
.gallery-item:hover { border-color: var(--purple); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s;
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(40,42,54,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  cursor: zoom-in;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { width: 40px; height: 40px; color: var(--cyan); pointer-events: none; }

.gallery-nav { display: flex; justify-content: center; gap: 16px; margin-top: 24px; }
.gallery-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(68,71,90,0.6); border: 1px solid rgba(189,147,249,0.3);
  color: var(--fg); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.gallery-btn:hover { background: var(--purple); border-color: var(--purple); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(20,20,25,0.95); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content {
  position: relative; max-width: 90vw; max-height: 85vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-content img {
  max-width: 100%; max-height: 80vh; border-radius: 12px;
  border: 2px solid rgba(189,147,249,0.3);
  user-select: none; -webkit-user-drag: none;
}
.lightbox-close {
  position: absolute; top: -40px; right: 0; background: none; border: none;
  color: var(--fg); font-size: 32px; cursor: pointer; transition: color 0.3s;
}
.lightbox-close:hover { color: var(--red); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(68,71,90,0.8); border: 1px solid rgba(189,147,249,0.3);
  color: var(--fg); width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--purple); }

/* Trailer */
.trailer-wrapper {
  max-width: 900px; margin: 0 auto; position: relative;
  border-radius: 16px; overflow: hidden;
}
.trailer-frame {
  border: 2px solid rgba(189,147,249,0.3); border-radius: 16px; overflow: hidden;
  position: relative;
  box-shadow: 0 0 60px rgba(189,147,249,0.15), inset 0 0 60px rgba(0,0,0,0.3);
}
.trailer-frame::before {
  content: ''; position: absolute; inset: -2px; border-radius: 18px;
  background: linear-gradient(135deg, var(--purple), var(--cyan), var(--pink), var(--purple));
  background-size: 300% 300%; animation: border-glow 2s ease infinite;
  z-index: -1;
}
@keyframes border-glow {
  0%,100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.trailer-cover {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(68,71,90,0.8), rgba(30,31,41,0.9)),
              url('https://picsum.photos/900/500?random=10') center/cover;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative;
}
.trailer-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(189,147,249,0.9); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative; z-index: 2;
  animation: pulse-play 2s ease-in-out infinite;
  transition: transform 0.3s;
}
.play-btn:hover { transform: scale(1.1); }
@keyframes pulse-play {
  0%,100% { box-shadow: 0 0 0 0 rgba(189,147,249,0.5); }
  50% { box-shadow: 0 0 0 20px rgba(189,147,249,0); }
}
.play-btn svg { width: 36px; height: 36px; color: #fff; margin-left: 4px; }
.trailer-video { width: 100%; aspect-ratio: 16/9; border: none; display: none; }
/* Decorative corners */
.corner-decor { position: absolute; width: 24px; height: 24px; z-index: 3; pointer-events: none; }
.corner-decor.tl { top: 8px; left: 8px; border-top: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.corner-decor.tr { top: 8px; right: 8px; border-top: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
.corner-decor.bl { bottom: 8px; left: 8px; border-bottom: 2px solid var(--cyan); border-left: 2px solid var(--cyan); }
.corner-decor.br { bottom: 8px; right: 8px; border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }

/* Reviews */
.reviews-carousel { position: relative; max-width: 700px; margin: 0 auto; overflow: hidden; }
.reviews-track { display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); will-change: transform; }
.review-slide { min-width: 100%; padding: 0 16px; }
.review-card {
  background: linear-gradient(135deg, rgba(68,71,90,0.4), rgba(30,31,41,0.6));
  border: 1px solid rgba(189,147,249,0.15); border-radius: 20px;
  padding: 40px 32px; text-align: center;
}
.review-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  border: 3px solid var(--purple); overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }

/* Heroicons for reviews */
.male-icon, .female-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 3px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-dark);
}

.male-icon::before {
  content: "♂";
  font-size: 36px;
  color: var(--cyan);
}

.female-icon::before {
  content: "♀";
  font-size: 36px;
  color: var(--pink);
}
.review-name { font-family: var(--font-heading); font-size: 16px; color: var(--fg); font-weight: 700; letter-spacing: 1px; }
.review-role { font-size: 13px; color: var(--pink); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.review-stars { margin-bottom: 16px; color: var(--yellow); font-size: 20px; letter-spacing: 4px; }
.review-text { color: var(--comment); font-size: 16px; line-height: 1.7; font-style: italic; }
.review-text::before { content: '"'; font-size: 40px; color: var(--purple); line-height: 0; vertical-align: -12px; margin-right: 4px; }

.reviews-controls { display: flex; justify-content: center; gap: 16px; margin-top: 32px; align-items: center; }
.reviews-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(68,71,90,0.6); border: 1px solid rgba(189,147,249,0.3);
  color: var(--fg); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.reviews-btn:hover { background: var(--purple); }
.reviews-dots { display: flex; gap: 8px; }
.reviews-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--current); border: none; cursor: pointer;
  transition: all 0.3s;
}
.reviews-dot.active { background: var(--purple); box-shadow: 0 0 10px rgba(189,147,249,0.5); }

/* Footer */
.footer {
  background: var(--bg-dark); border-top: 1px solid rgba(189,147,249,0.1);
  padding: 60px 20px 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  max-width: 1200px; margin: 0 auto;
}
.footer-brand .logo { font-size: 24px; display: inline-block; margin-bottom: 12px; }
.footer-brand p { color: var(--comment); font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-heading); font-size: 14px; color: var(--fg);
  margin-bottom: 16px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: var(--comment); text-decoration: none; font-size: 14px; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--purple); }
.footer-social { display: flex; gap: 16px; margin-top: 16px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(68,71,90,0.5); border: 1px solid rgba(189,147,249,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--comment); transition: all 0.3s;
}
.footer-social a:hover { color: var(--cyan); border-color: var(--cyan); background: rgba(139,233,253,0.1); transform: translateY(-3px); }
.footer-social a svg { width: 20px; height: 20px; }
.footer-bottom {
  text-align: center; margin-top: 40px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  color: var(--comment); font-size: 13px;
}

/* Video modal */
.video-modal {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(20,20,25,0.95); backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.video-modal.active { opacity: 1; visibility: visible; }
.video-modal-content { position: relative; width: 90vw; max-width: 900px; }
.video-modal-content iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: 12px; }
.video-modal-close {
  position: absolute; top: -40px; right: 0; background: none; border: none;
  color: var(--fg); font-size: 32px; cursor: pointer;
}

/* Responsive */
@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { min-width: 320px; height: 220px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .btn-signin { display: block; }
  .hamburger { display: none; }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery-item { min-width: 350px; height: 240px; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .lightbox-prev { left: -70px; }
  .lightbox-next { right: -70px; }
}
@media (max-width: 1023px) {
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}