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

  --font-heading: 'Exo 2', 'Segoe UI', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Exo 2', 'Segoe UI', 'SF Pro Text', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Noto Sans', 'Liberation Sans', Arial, sans-serif;
  --font-body-italic: 'Exo 2', 'Segoe UI', 'SF Pro Text', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Noto Sans', 'Liberation Sans', Arial, sans-serif;
  --font-heading-bold: 'Exo 2', 'Segoe UI', 'SF Pro Display', 'Helvetica Neue', 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-italic);
  font-weight: 400;
  font-style: italic;
  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-bold);
  color: var(--purple);
  font-size: 14px;
  letter-spacing: 4px;
  animation: pulse-text .5s ease-in-out infinite;
  font-weight: 700;
  font-style: italic;
  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-bold);
  font-weight: 700;
  font-style: italic;
  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 {
  font-family: var(--font-body-italic);
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
  text-decoration: none;
  font-size: 15px;
  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-italic);
  font-weight: 400;
  font-style: italic;
  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-italic);
  font-weight: 400;
  font-style: italic;
  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 {
  font-family: var(--font-body-italic);
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
  text-decoration: none;
  font-size: 20px;
  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-bold);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.1;
  background:linear-gradient(90deg, var(--transparent) 20%, var(--bg) 33%, var(--red) 50%, var(--transparent) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  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-family: var(--font-body-italic);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--comment);
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

/* 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-family: var(--font-body-italic);
  font-weight: 400;
  font-style: italic;
  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(0deg, var(--transparent)30%, var(--bg)70%);
  color: var(--yellow);
  font-family: var(--font-body-italic);
  font-weight: 700;
  font-style: italic;
  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-italic);
  font-weight: 700;
  font-style: italic;
  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(90deg, var(--transparent) 0%, var(--orange) 40%, var(--orange) 60%, var(--transparent) 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;
}

/* Random Movement Animation for SVG */
.svg-random-move {
  position: absolute;
  z-index: -1; /* Behind the text */
  transform: translateZ(0); /* Enable GPU acceleration */
  will-change: transform; /* Hint to browser for optimization */
  animation: random-horizontal-move 6s infinite ease-in-out;
  opacity: 0.5;
  pointer-events: none; /* Allow clicks to pass through */
}

@keyframes random-horizontal-move {
  0%, 60% { /* Stay in place for ~4 seconds (4s out of 6s = 66.7%) */
    transform: translateX(0) translateY(0);
  }
  62% { /* Move to random position quickly (200ms = ~3.3% of 6s) */
    transform: translateX(20px) translateY(5px);
  }
  65% { /* Return to original position quickly */
    transform: translateX(0) translateY(0);
  }
  67% { /* Move to another random position */
    transform: translateX(-15px) translateY(-3px);
  }
  70% { /* Return to original position quickly */
    transform: translateX(0) translateY(0);
  }
  72% { /* Move to another random position */
    transform: translateX(-25px) translateY(8px);
  }
  75% { /* Return to original position quickly */
    transform: translateX(0) translateY(0);
  }
  77% { /* Move to another random position */
    transform: translateX(18px) translateY(-10px);
  }
  80% { /* Return to original position quickly */
    transform: translateX(0) translateY(0);
  }
  82% { /* Move to another random position */
    transform: translateX(22px) translateY(7px);
  }
  85% { /* Return to original position quickly */
    transform: translateX(0) translateY(0);
  }
}

/* Sections common */
section {
  padding: 4rem 0;
  position: relative;
}

/* UnoCSS compatible classes */
.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

/* UnoCSS compatible classes for preloader */
.fixed {
  position: fixed !important;
}

.inset-0 {
  top: 0px !important;
  right: 0px !important;
  bottom: 0px !important;
  left: 0px !important;
}

.z-\[9999\] {
  z-index: 9999 !important;
}

.bg-bg-darker {
  background: var(--bg-darker) !important;
}

.flex {
  display: flex !important;
}

.items-center {
  align-items: center !important;
}

.justify-center {
  justify-content: center !important;
}

.gap-4 {
  gap: 1rem !important;
}

.w-16 {
  width: 4rem !important;
}

.h-16 {
  height: 4rem !important;
}

.text-4xl {
  font-size: 2.25rem !important;
  line-height: 2.5rem !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-heading {
  font-family: var(--font-heading-bold) !important;
}

.italic {
  font-style: italic !important;
}

.text-transparent {
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--purple), var(--cyan)) !important;
}

.bg-clip-text {
  -webkit-background-clip: text !important;
  background-clip: text !important;
}

.translate-x-\[-20px\] {
  transform: translateX(-20px) !important;
}

.opacity-0 {
  opacity: 0 !important;
}

/* Additional gradient classes */
.from-purple {
  --tw-gradient-from: var(--purple) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(189, 147, 249, 0)) !important;
}

.to-cyan {
  --tw-gradient-to: var(--cyan) !important;
}

/* Preloader animations */
@keyframes slideInRight {
  from {
    transform: translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes removePreloader {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.animate-slide-in-right {
  animation: slideInRight 0.2s ease-out forwards;
  will-change: transform, opacity;
}

.animate-remove-preloader {
  animation: removePreloader 0.2s ease-in forwards;
  will-change: transform, opacity;
}

/* Reviews carousel dragging */
.reviews-track.dragging {
  cursor: grabbing;
  transition: none;
}

.reviews-track:not(.dragging) {
  cursor: grab;
}

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

/* Responsive section padding */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
  
  .py-20 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .py-16 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

@media (max-width: 640px) {
  section {
    padding: 2.5rem 0;
  }
  
  .py-20 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
  
  .py-16 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

.section-title {
  font-family: var(--font-heading-bold);
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.8rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 1rem;
  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 {
  font-family: var(--font-body-italic);
  font-weight: 400;
  font-style: italic;
  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;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feature-card h3 {
  font-family: var(--font-heading-bold);
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--fg);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.feature-card p {
  font-family: var(--font-body-italic);
  font-weight: 400;
  font-style: italic;
  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,
.lightbox.visible {
  opacity: 1;
  visibility: visible;
}

.lightbox.invisible {
  opacity: 0;
  visibility: hidden;
}

.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);
}

/* UnoCSS compatible classes */
.opacity-0 { opacity: 0 !important; }
.opacity-100 { opacity: 1 !important; }
.translate-y-0 { transform: translateY(0) !important; }
.-translate-y-10 { transform: translateY(40px) !important; }
.duration-800 { transition-duration: 0.8s !important; }
.ease-out { transition-timing-function: cubic-bezier(0.4,0,0.2,1) !important; }
.will-change-transform { will-change: transform !important; }
.will-change-opacity { will-change: opacity !important; }
.will-change-both { will-change: opacity, transform !important; }
.uno-container { width: 100% !important; margin-left: auto !important; margin-right: auto !important; padding-left: 1rem !important; padding-right: 1rem !important; }
.max-w-6xl { max-width: 72rem !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.text-center { text-align: center !important; }
.text-3xl { font-size: 1.875rem !important; }
.md\:text-4xl { font-size: 2.25rem !important; }
.lg\:text-5xl { font-size: 3rem !important; }
.font-bold { font-weight: 700 !important; }
.font-heading { font-family: var(--font-heading-bold) !important; }
.italic { font-style: italic !important; }
.uppercase { text-transform: uppercase !important; }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--transparent) 0%, var(--bg) 33%, var(--red) 50%, var(--transparent) 80%) !important; }
.bg-clip-text { -webkit-background-clip: text !important; background-clip: text !important; }
.text-transparent { -webkit-text-fill-color: transparent !important; color: transparent !important; }
.mb-4 { margin-bottom: 1rem !important; }
.text-base { font-size: 1rem !important; }
.md\:text-lg { font-size: 1.125rem !important; }
.text-comment { color: var(--comment) !important; }
.mb-12 { margin-bottom: 3rem !important; }
.max-w-md { max-width: 28rem !important; }
.justify-center { justify-content: center !important; }
.gap-4 { gap: 1rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.focus\:outline-none:focus { outline: 2px solid transparent !important; outline-offset: 2px !important; }
.focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important; --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important; box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000) !important; }
.focus\:ring-purple-500:focus { --tw-ring-color: var(--purple) !important; }
.focus\:ring-offset-2:focus { --tw-ring-offset-width: 2px !important; }
.focus\:ring-offset-bg-darker:focus { --tw-ring-offset-color: var(--bg-darker) !important; }
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }
.object-cover { object-fit: cover !important; }
.pointer-events-none { pointer-events: none !important; }
.select-none { -webkit-user-select: none !important; -moz-user-select: none !important; user-select: none !important; }
.transition-transform { transition: transform !important; }
.duration-500 { transition-duration: 0.5s !important; }
.drag-none { -webkit-user-drag: none !important; -moz-user-drag: none !important; -o-user-drag: none !important}
.max-w-\[90vw\] { max-width: 90vw !important; }
.max-h-\[85vh\] { max-height: 85vh !important; }
.top-\[-40px\] { top: -40px !important; }
.right-0 { right: 0px !important; }
.bg-none { background: none !important; }
.border-none { border: none !important; }
.text-4xl { font-size: 2.25rem !important; }
.cursor-pointer { cursor: pointer !important; }
.transition-colors { transition: color !important; }
.hover\:text-red:hover { color: var(--red) !important; }
.top-1\/2 { top: 50% !important; }
.-translate-y-1\/2 { transform: translateY(-50%) !important; }
.left-\[-60px\] { left: -60px !important; }
.md\:left-\[-70px\] { left: -70px !important; }
.right-\[-60px\] { right: -60px !important; }
.md\:right-\[-70px\] { right: -70px !important; }
.bg-\[\#44475a\]\/80 { background-color: rgba(68, 71, 90, 0.8) !important; }
.max-w-full { max-width: 100% !important; }
.max-h-\[80vh\] { max-height: 80vh !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.border-2 { border-width: 2px !important; }
.border-purple-500\/30 { border-color: rgba(189, 147, 249, 0.3) !important; }
.relative { position: relative !important; }
.overflow-hidden { overflow: hidden !important; }
.z-50 { z-index: 50 !important; }
.bg-\[\#141419\]\/95 { background-color: rgba(20, 20, 25, 0.95) !important; }
.backdrop-blur-xl { backdrop-filter: blur(20px) !important; }
.invisible { visibility: hidden !important; }
.transition-all { transition: all !important; }
.duration-300 { transition-duration: 0.3s !important; }
.flex { display: flex !important; }
.items-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.visible { visibility: visible !important; }
.absolute { position: absolute !important; }
.text-fg { color: var(--fg) !important; }
.w-12 { width: 3rem !important; }
.h-12 { height: 3rem !important; }
.rounded-full { border-radius: 9999px !important; }
.border { border-width: 1px !important; }
.cursor-pointer { cursor: pointer !important; }
.hover\:bg-purple-500:hover { background: var(--purple) !important; }
.hover\:border-purple-500:hover { border-color: var(--purple) !important; }
.uno-flex { display: flex !important; }
.w-72 { width: 18rem !important; }
.sm\:w-80 { width: 20rem !important; }
.md\:w-96 { width: 24rem !important; }
.h-56 { height: 14rem !important; }
.md\:h-64 { height: 16rem !important; }
.border-purple-500\/10 { border-color: rgba(189, 147, 249, 0.1) !important; }
.group:hover .group-hover\:scale-110 { transform: scale(1.1) !important; }
.inset-0 { top: 0px !important; right: 0px !important; bottom: 0px !important; left: 0px !important; }
.bg-\[\#282a36\]\/70 { background-color: rgba(40, 42, 54, 0.7) !important; }
.opacity-0 { opacity: 0 !important; }
.transition-opacity { transition: opacity !important; }
.group:hover .group-hover\:opacity-100 { opacity: 1 !important; }
.cursor-zoom-in { cursor: zoom-in !important; }
.w-10 { width: 2.5rem !important; }
.h-10 { height: 2.5rem !important; }
.text-cyan-400 { color: var(--cyan) !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.uno-cursor-grab { cursor: grab !important; }
.uno-cursor-grabbing { cursor: grabbing !important; }
.text-base { font-size: 1rem !important; }
.md\:text-lg { font-size: 1.125rem !important; }
.max-w-md { max-width: 28rem !important; }
.justify-center { justify-content: center !important; }
.gap-4 { gap: 1rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.w-full { width: 100% !important; }
.h-full { height: 100% !important; }
.object-cover { object-fit: cover !important; }
.pointer-events-none { pointer-events: none !important; }
.select-none { -webkit-user-select: none !important; -moz-user-select: none !important; user-select: none !important; }
.transition-transform { transition: transform !important; }
.duration-500 { transition-duration: 0.5s !important; }
.drag-none { -webkit-user-drag: none !important; -moz-user-drag: none !important; -o-user-drag: none !important}
.max-w-\[90vw\] { max-width: 90vw !important; }
.max-h-\[85vh\] { max-height: 85vh !important; }
.top-\[-40px\] { top: -40px !important; }
.right-0 { right: 0px !important; }
.bg-none { background: none !important; }
.border-none { border: none !important; }
.text-4xl { font-size: 2.25rem !important; }
.cursor-pointer { cursor: pointer !important; }
.transition-colors { transition: color !important; }
.hover\:text-red:hover { color: var(--red) !important; }
.top-1\/2 { top: 50% !important; }
.-translate-y-1\/2 { transform: translateY(-50%) !important; }
.left-\[-60px\] { left: -60px !important; }
.md\:left-\[-70px\] { left: -70px !important; }
.right-\[-60px\] { right: -60px !important; }
.md\:right-\[-70px\] { right: -70px !important; }
.bg-\[\#44475a\]\/80 { background-color: rgba(68, 71, 90, 0.8) !important; }
.max-w-full { max-width: 100% !important; }
.max-h-\[80vh\] { max-height: 80vh !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.border-2 { border-width: 2px !important; }
.border-purple-500\/30 { border-color: rgba(189, 147, 249, 0.3) !important; }
.relative { position: relative !important; }
.overflow-hidden { overflow: hidden !important; }
.z-50 { z-index: 50 !important; }
.bg-\[\#141419\]\/95 { background-color: rgba(20, 20, 25, 0.95) !important; }
.backdrop-blur-xl { backdrop-filter: blur(20px) !important; }
.opacity-0 { opacity: 0 !important; }
.invisible { visibility: hidden !important; }
.transition-all { transition: all !important; }
.duration-300 { transition-duration: 0.3s !important; }
.flex { display: flex !important; }
.items-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.opacity-100 { opacity: 1 !important; }
.visible { visibility: visible !important; }
.max-w-\[90vw\] { max-width: 90vw !important; }
.max-h-\[85vh\] { max-height: 85vh !important; }
.absolute { position: absolute !important; }
.top-\[-40px\] { top: -40px !important; }
.right-0 { right: 0px !important; }
.bg-none { background: none !important; }
.border-none { border: none !important; }
.text-fg { color: var(--fg) !important; }
.text-4xl { font-size: 2.25rem !important; }
.cursor-pointer { cursor: pointer !important; }
.transition-colors { transition: color !important; }
.duration-300 { transition-duration: 0.3s !important; }
.hover\:text-red:hover { color: var(--red) !important; }
.top-1\/2 { top: 50% !important; }
.-translate-y-1\/2 { transform: translateY(-50%) !important; }
.left-\[-60px\] { left: -60px !important; }
.md\:left-\[-70px\] { left: -70px !important; }
.w-12 { width: 3rem !important; }
.h-12 { height: 3rem !important; }
.rounded-full { border-radius: 9999px !important; }
.bg-\[\#44475a\]\/80 { background-color: rgba(68, 71, 90, 0.8) !important; }
.border { border-width: 1px !important; }
.border-purple-500\/30 { border-color: rgba(189, 147, 249, 0.3) !important; }
.text-fg { color: var(--fg) !important; }
.flex { display: flex !important; }
.items-center { align-items: center !important; }
.justify-center { justify-content: center !important; }
.cursor-pointer { cursor: pointer !important; }
.transition-all { transition: all !important; }
.duration-300 { transition-duration: 0.3s !important; }
.hover\:bg-purple-500:hover { background: var(--purple) !important; }
.hover\:border-purple-500:hover { border-color: var(--purple) !important; }
.right-\[-60px\] { right: -60px !important; }
.md\:right-\[-70px\] { right: -70px !important; }
.max-w-full { max-width: 100% !important; }
.max-h-\[80vh\] { max-height: 80vh !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.border-2 { border-width: 2px !important; }
.border-purple-500\/30 { border-color: rgba(189, 147, 249, 0.3) !important; }
.select-none { -webkit-user-select: none !important; -moz-user-select: none !important; user-select: none !important; }
.drag-none { -webkit-user-drag: none !important; -moz-user-drag: none !important; -o-user-drag: none !important}

/* 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: "";
  display: block;
  width: 40px;
  height: 40px;
  background: var(--cyan);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z' /%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M16 7a4 4 0 11-8 0 4 4 0 018 0zM12 14a7 7 0 00-7 7h14a7 7 0 00-7-7z' /%3E%3C/svg%3E");
}

.female-icon::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: var(--pink);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z' /%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9.75 17L9 20l-1 1h8l-1-1-.75-3M3 13h18M5 17h14a2 2 0 002-2V5a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z' /%3E%3C/svg%3E");
}

.review-name {
  font-family: var(--font-heading-bold);
  font-size: 16px;
  color: var(--fg);
  font-weight: 700;
  font-style: italic;
  letter-spacing: 1px;
}

.review-role {
  font-family: var(--font-body-italic);
  font-weight: 400;
  font-style: italic;
  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 {
  font-family: var(--font-body-italic);
  font-weight: 400;
  font-style: italic;
  color: var(--comment);
  font-size: 16px;
  line-height: 1.7;
}

.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-left: .5rem;
}

.footer-brand p {
  font-family: var(--font-body-italic);
  font-weight: 400;
  font-style: italic;
  color: var(--comment);
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading-bold);
  font-size: 14px;
  color: var(--fg);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-style: italic;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-family: var(--font-body-italic);
  font-weight: 400;
  font-style: italic;
  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;
  font-family: var(--font-body-italic);
  font-weight: 400;
  font-style: italic;
}

/* 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;
  }
}