/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-primary: #090919;
  --bg-secondary: #0a0a19;
  --bg-card: #0a0a18;
  --bg-card-hover: #0f0f24;
  --purple-primary: #6d28d9;
  --purple-light: #7c3aed;
  --purple-dark: #5b21b6;
  --purple-glow: rgba(109, 40, 217, 0.4);
  --text-primary: #ffffff;
  --text-secondary: #8a8a95;
  --text-muted: #55555f;
  --border-color: #12122a;
  --success: #22c55e;
  --warning: #eab308;
  --danger: #ef4444;

  /* Navbar + footer: shared frosted glass (same tint + blur — avoids flat grey slab) */
  --glass-bar-bg: rgba(10, 10, 25, 0.58);
  --glass-bar-blur: blur(16px) saturate(180%);
  --glass-bar-edge: rgba(140, 2, 238, 0.15);
}

html {
  height: 100%;
}

body {
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: 'Geist', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  /* SysInfo (sysindxepage): base + layered glows + dot grid (.la6k6 ≈ 0.75 → dot alpha 0.15) */
  background-color: rgb(9, 9, 25);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  background-image:
    radial-gradient(rgba(180, 80, 255, 0.11) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(8, 0, 18, 0) 0%, rgba(8, 0, 18, 0.22) 60%, rgba(8, 0, 18, 0.62) 100%),
    radial-gradient(ellipse at top, rgba(140, 2, 238, 0.065) 0%, transparent 52%),
    radial-gradient(circle at 50% 0%, rgba(140, 2, 238, 0.105), transparent 68%),
    radial-gradient(circle at 35% 35%, rgba(140, 2, 238, 0.14) 0%, transparent 62%),
    radial-gradient(circle at 65% 65%, rgba(140, 2, 238, 0.12) 0%, transparent 58%),
    radial-gradient(ellipse at center, rgba(140, 2, 238, 0.065) 0%, transparent 70%);
  background-size: 32px 32px, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  background-attachment: fixed;
}

/* Predictable flex sizing so footer margin-top:auto fills viewport space on short pages */
body > * {
  flex-shrink: 0;
}

/* Fixed background logo watermark on left side */
.bg-logo-watermark {
  position: fixed;
  left: 90px;
  top: 18px;
  width: 1040px;
  height: 1040px;
  background-image: url('../images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.04;
  z-index: -1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.bg-logo-watermark.hover-enabled {
  pointer-events: auto;
  cursor: default;
}
.bg-logo-watermark.hover-enabled:hover {
  opacity: 0.08;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation - sysinfo style */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass-bar-bg);
  backdrop-filter: var(--glass-bar-blur);
  -webkit-backdrop-filter: var(--glass-bar-blur);
  border-bottom: 1px solid var(--glass-bar-edge);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 700;
}

.logo-img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

.logo-icon {
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-secondary);
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover:not(.active) {
  color: var(--purple-light);
}

.nav-links a.active {
  color: #ffffff;
}

.nav-btn {
  background: #6d28d9;
  color: white;
  padding: 8px 16px;
  border-radius: 12px;
  font-family: 'Geist', 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.15s cubic-bezier(.4,0,.2,1);
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid transparent;
}

.nav-btn:hover {
  background: #5b21b6;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

/* Hero backdrop layer (body carries SysInfo dot grid + glows globally) */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

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

/* Hero Split Layout (sysweb style) */
.hero.hero-split {
  text-align: left;
}

.hero-split-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 20px;
}

.hero-text-side {
  max-width: 600px;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.08) 100%);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #a78bfa;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-trust-badge:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.15) 100%);
  border-color: rgba(139, 92, 246, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.25);
}

.hero-trust-badge svg {
  color: #a78bfa;
}

.hero-split .hero-buttons {
  justify-content: flex-start;
}

.hero-subtitle {
  font-size: 1.1rem !important;
  color: #9ca3af !important;
  max-width: 500px !important;
  margin-left: 0 !important;
  margin-bottom: 28px !important;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.hero-stat-card {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(139, 92, 246, 0.03) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 12px;
  padding: 16px 20px;
  backdrop-filter: blur(10px);
}

.stat-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.8rem;
  color: #a78bfa;
}

/* Hero Menu Preview */
.hero-menu-side {
  display: flex;
  justify-content: center;
}

/* Video Player Styles */
.hero-video-player {
  width: 100%;
  max-width: 560px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.video-container video.fading {
  opacity: 0;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 70%, rgba(6, 6, 12, 0.8) 100%);
  pointer-events: none;
}

.video-progress {
  display: none;
}

.video-progress-bar {
  display: none;
}

/* Reviews Carousel Section */
.reviews-carousel-section {
  padding: 80px 0;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -20px;
  padding: 20px;
}

.reviews-track {
  display: flex;
  gap: 24px;
  animation: reviewsScroll 30s linear infinite;
}

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

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

.review-card {
  flex-shrink: 0;
  width: 320px;
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.09) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(8, 6, 16, 0.85) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.review-card:hover {
  border-color: rgba(167, 139, 250, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(139, 92, 246, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  overflow: hidden;
}

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

.review-info {
  flex: 1;
}

.review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: white;
  margin-bottom: 2px;
}

.review-product {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--purple-light, #a78bfa);
  color: var(--purple-light, #a78bfa);
}

.review-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-menu-preview {
  background: linear-gradient(145deg, rgba(12, 10, 22, 0.98) 0%, rgba(8, 6, 16, 0.99) 100%);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 14px;
  padding: 20px;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 60px rgba(88, 28, 135, 0.15);
}

.menu-header {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: #a1a1aa;
  padding: 10px;
  margin-bottom: 14px;
  background: transparent;
  border-radius: 0;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.menu-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.menu-tab {
  flex: 1;
  padding: 8px 10px;
  font-size: 0.7rem;
  font-weight: 500;
  color: #71717a;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
  user-select: none;
}

.menu-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.04);
  color: #a1a1aa;
}

.menu-tab.active {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.menu-slider {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-slider label {
  font-size: 0.7rem;
  color: #71717a;
  min-width: 75px;
  text-transform: lowercase;
}

.slider-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
}

.slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
  border-radius: 3px;
}

.slider-thumb {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slider-value {
  font-size: 0.7rem;
  color: #52525b;
  min-width: 24px;
  text-align: right;
}

.menu-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s;
  padding: 2px 0;
}

.menu-checkbox:hover {
  opacity: 0.85;
}

.checkbox-box {
  width: 16px;
  height: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.menu-checkbox.checked .checkbox-box {
  background: #8b5cf6;
  border-color: #8b5cf6;
}

.checkbox-box svg {
  width: 10px;
  height: 10px;
  color: white;
}

.menu-checkbox span {
  font-size: 0.7rem;
  color: #71717a;
  text-transform: lowercase;
}

/* Demo Warning Banner */
.menu-demo-warning {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-top: 14px;
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 6px;
  font-size: 0.65rem;
  color: #71717a;
  letter-spacing: 0.2px;
}

.menu-demo-warning svg {
  width: 14px;
  height: 14px;
  color: #8b5cf6;
  flex-shrink: 0;
}

.menu-keybind {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-keybind span {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
}

.keybind-value {
  font-size: 0.75rem;
  color: white;
  background: rgba(139, 92, 246, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 6px 12px;
  border-radius: 6px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.menu-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-dropdown span {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
}

.dropdown-value {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
}

.dropdown-value svg {
  width: 12px;
  height: 12px;
}

/* Hero Split Responsive */
@media (max-width: 1024px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text-side {
    max-width: 100%;
  }
  
  .hero-split .hero-buttons {
    justify-content: center;
  }
  
  .hero-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-menu-side {
    display: none;
  }
  
  .hero-trust-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-custom-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  background: rgba(109, 40, 217, 0.2);
  border: 1px solid var(--purple-primary);
  color: var(--purple-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.25) 100%);
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #a78bfa;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-badge-green:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.35) 100%);
  border-color: rgba(139, 92, 246, 0.7);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Hero animations */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-animate {
  opacity: 0;
  transform: translateY(30px);
}

.hero-animate.loaded {
  animation: heroFadeInUp 0.8s ease-out forwards;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
  color: #ffffff;
}

.hero p {
  font-size: 1.25rem;
  color: #b8b8c0;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-primary {
  background: #6d28d9;
  color: white;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.15s cubic-bezier(.4,0,.2,1);
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #5b21b6;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 500;
  font-size: 0.875rem;
  border: 1px solid transparent;
  transition: all 0.15s cubic-bezier(.4,0,.2,1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(109, 40, 217, 0.2);
  border: 1px solid var(--purple-primary);
  color: var(--purple-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Products Section */
.products-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Featured products grid - centers items when less than 3 */
#featured-products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

#featured-products-grid .product-card {
  width: calc(33.333% - 16px);
  max-width: 400px;
  min-width: 300px;
}

@media (max-width: 1200px) {
  #featured-products-grid .product-card {
    width: calc(50% - 12px);
  }
}

@media (max-width: 750px) {
  #featured-products-grid .product-card {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 750px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid .product-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

.product-card {
  position: relative;
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.09) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(8, 6, 16, 0.85) 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.22);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

/* Only apply max-width on products page, not featured */
.products-page .product-card {
  max-width: 500px;
  justify-self: center;
}

.product-card:hover {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(139, 92, 246, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(10, 10, 15, 1) 0%, rgba(15, 15, 25, 1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.15s ease;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(109, 40, 217, 0.9);
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  z-index: 2;
}

.product-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.product-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(109, 40, 217, 0.1);
  color: var(--purple-light);
  flex-shrink: 0;
}

.status-dot {
  position: relative;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-light);
}

.status-dot::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: inherit;
  animation: pulse-status 2s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes pulse-status {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.status-badge.status-undetected {
  background: rgba(109, 40, 217, 0.1);
  color: var(--purple-light);
}

.status-badge.status-undetected .status-dot {
  background: var(--purple-light);
}

.status-badge.status-updating {
  background: rgba(234, 179, 8, 0.1);
  color: var(--warning);
}

.status-badge.status-updating .status-dot {
  background: var(--warning);
}

.status-badge.status-detected {
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
}

.status-badge.status-detected .status-dot {
  background: var(--danger);
}

.product-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin: 0;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.price-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.price-value {
  display: inline-flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--purple-light);
  background: rgba(109, 40, 217, 0.15);
  padding: 8px 16px;
  border-radius: 10px;
}

.btn-buy {
  background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.8rem;
  border: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
  flex-shrink: 0;
}

.btn-buy:hover {
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-primary) 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(109, 40, 217, 0.4);
}

.btn-buy svg {
  width: 14px;
  height: 14px;
}

/* View All Products Button */
.view-all-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  background: #6d28d9;
  border: 1px solid transparent;
  border-radius: 12px;
  color: white;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.15s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
}

.view-all-btn:hover {
  background: #5b21b6;
}

/* Games Section */
.games-section {
  padding: 100px 0;
  background: transparent;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  gap: 20px;
  justify-content: center;
}

@media (max-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}

.game-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}

.game-card:hover {
  border-color: var(--purple-primary);
}

.game-card img {
  transition: opacity 0.4s ease;
}

/* Hover image support for categories */
.game-card.has-hover-image img.game-card-default {
  opacity: 1;
}

.game-card.has-hover-image img.game-card-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 1;
}

.game-card.has-hover-image:hover img.game-card-default {
  opacity: 0;
}

.game-card.has-hover-image:hover img.game-card-hover {
  opacity: 1;
}

.game-card:hover .game-overlay {
  background: linear-gradient(transparent, rgba(109, 40, 217, 0.8));
}

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

.game-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  transition: background 0.3s ease;
}

.game-overlay h3 {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Why Choose Us Section */
.why-section {
  padding: 100px 0;
  background: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.features-grid-bottom {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 900px) {
  .features-grid,
  .features-grid-bottom {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  position: relative;
  background: linear-gradient(165deg, rgba(139, 92, 246, 0.09) 0%, rgba(255, 255, 255, 0.03) 42%, rgba(8, 6, 16, 0.85) 100%);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.feature-card:hover {
  border-color: rgba(167, 139, 250, 0.45);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(139, 92, 246, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.feature-card-wide {
  position: relative;
}

.feature-icon {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.loading-ring {
  width: 80px;
  height: 80px;
  border: 4px solid var(--purple-primary);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.checkmark {
  width: 60px;
  height: 60px;
  background: var(--purple-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

/* Media feature cards */
.feature-card-media {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card-media h3,
.feature-card-media p {
  display: none;
}

.feature-media {
  width: 100%;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.feature-media-wide {
  height: 200px;
}

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

.feature-media-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.feature-media-fallback svg {
  width: 64px;
  height: 64px;
  stroke: var(--purple-primary);
  opacity: 0.6;
}

/* Config Share Flow Design - Animated */
.config-share-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  width: 100%;
  height: 100%;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease;
}

.flow-step:nth-child(1) { animation: flow-step-1 4.5s ease-in-out infinite; }
.flow-step:nth-child(3) { animation: flow-step-2 4.5s ease-in-out infinite; }
.flow-step:nth-child(5) { animation: flow-step-3 4.5s ease-in-out infinite; }

@keyframes flow-step-1 {
  0%, 5% { opacity: 0.4; }
  10%, 30% { opacity: 1; }
  35%, 100% { opacity: 0.4; }
}

@keyframes flow-step-2 {
  0%, 30% { opacity: 0.4; }
  35%, 60% { opacity: 1; }
  65%, 100% { opacity: 0.4; }
}

@keyframes flow-step-3 {
  0%, 60% { opacity: 0.4; }
  65%, 95% { opacity: 1; }
  100% { opacity: 0.4; }
}

.flow-step span {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.flow-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.flow-step:nth-child(1) .flow-icon { animation: flow-icon-1 4.5s ease-in-out infinite; }
.flow-step:nth-child(3) .flow-icon { animation: flow-icon-2 4.5s ease-in-out infinite; }
.flow-step:nth-child(5) .flow-icon { animation: flow-icon-3 4.5s ease-in-out infinite; }

@keyframes flow-icon-1 {
  0%, 5% { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.1); box-shadow: none; }
  10%, 30% { background: rgba(109, 40, 217, 0.15); border-color: var(--purple-primary); box-shadow: 0 0 20px rgba(109, 40, 217, 0.3); }
  35%, 100% { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.1); box-shadow: none; }
}

@keyframes flow-icon-2 {
  0%, 30% { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.1); box-shadow: none; }
  35%, 60% { background: rgba(109, 40, 217, 0.15); border-color: var(--purple-primary); box-shadow: 0 0 20px rgba(109, 40, 217, 0.3); }
  65%, 100% { background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 255, 255, 0.1); box-shadow: none; }
}

@keyframes flow-icon-3 {
  0%, 60% { background: rgba(34, 197, 94, 0.05); border-color: rgba(34, 197, 94, 0.2); box-shadow: none; }
  65%, 95% { background: rgba(34, 197, 94, 0.15); border-color: #22c55e; box-shadow: 0 0 20px rgba(34, 197, 94, 0.3); }
  100% { background: rgba(34, 197, 94, 0.05); border-color: rgba(34, 197, 94, 0.2); box-shadow: none; }
}

.flow-icon svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255, 255, 255, 0.6);
  transition: all 0.4s ease;
}

.flow-step:nth-child(1) .flow-icon svg,
.flow-step:nth-child(3) .flow-icon svg { animation: flow-svg-purple 4.5s ease-in-out infinite; }

.flow-step:nth-child(1) .flow-icon svg { animation-delay: 0s; }
.flow-step:nth-child(3) .flow-icon svg { animation-delay: 1.125s; }

@keyframes flow-svg-purple {
  0%, 5% { stroke: rgba(255, 255, 255, 0.6); }
  10%, 30% { stroke: var(--purple-primary); }
  35%, 100% { stroke: rgba(255, 255, 255, 0.6); }
}

.flow-icon.success svg {
  stroke: #22c55e;
}

.flow-arrow {
  opacity: 0.3;
}

.flow-arrow:nth-of-type(2) { animation: flow-arrow-1 4.5s ease-in-out infinite; }
.flow-arrow:nth-of-type(4) { animation: flow-arrow-2 4.5s ease-in-out infinite; }

@keyframes flow-arrow-1 {
  0%, 25% { opacity: 0.3; }
  30%, 35% { opacity: 0.8; }
  40%, 100% { opacity: 0.3; }
}

@keyframes flow-arrow-2 {
  0%, 55% { opacity: 0.3; }
  60%, 65% { opacity: 0.8; }
  70%, 100% { opacity: 0.3; }
}

.flow-arrow svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.4);
}

.feature-text {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.feature-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* Easy Setup Visual - Interactive */
.easy-setup-visual {
  display: flex;
  width: 100%;
  height: 100%;
  background: transparent;
}

.setup-tabs {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.setup-tab {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.setup-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.setup-tab svg {
  width: 20px;
  height: 20px;
}

.setup-tab.active {
  background: var(--purple-primary);
  color: white;
}

.setup-panels-container {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.setup-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.setup-panel.active {
  opacity: 1;
  visibility: visible;
}

.setup-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s;
}

.setup-option:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.setup-option span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.setup-toggle {
  width: 36px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}

.setup-toggle::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: all 0.25s ease;
}

.setup-toggle.on {
  background: var(--purple-primary);
  box-shadow: 0 0 10px rgba(109, 40, 217, 0.4);
}

.setup-toggle.on::after {
  left: 18px;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.payment-icon {
  width: 60px;
  height: 40px;
  background: var(--bg-secondary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--border-color);
}

.payment-icon.pp {
  width: auto;
  padding: 0 15px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #003087;
  background: white;
}

/* Animated Payment Marquee */
.payment-feature-card {
  overflow: hidden;
}

.payment-marquee-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.payment-marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 20s linear infinite;
}

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

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

.payment-marquee-content {
  display: flex;
  gap: 24px;
  padding: 0 12px;
}

.payment-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.1) 0%, rgba(109, 40, 217, 0.05) 100%);
  border: 1px solid rgba(109, 40, 217, 0.2);
  border-radius: 12px;
  min-width: 90px;
  transition: all 0.3s ease;
}

.payment-brand:hover {
  border-color: rgba(109, 40, 217, 0.5);
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.15) 0%, rgba(109, 40, 217, 0.08) 100%);
  transform: translateY(-2px);
}

.payment-brand svg {
  width: 28px;
  height: 28px;
  color: var(--purple-light);
}

.payment-brand span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Instant Delivery Animation */
.feature-icon.delivery-animation {
  position: relative;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: transparent;
  border: none;
}

.delivery-loader {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: delivery-fade-out 3s ease-in-out infinite;
}

.delivery-spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(109, 40, 217, 0.2);
  border-top-color: var(--purple-light);
  border-radius: 50%;
  animation: delivery-spin 1s linear infinite;
}

.delivery-success {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  animation: delivery-fade-in 3s ease-in-out infinite;
}

.delivery-success svg {
  width: 52px;
  height: 52px;
  color: #22c55e;
  filter: drop-shadow(0 0 12px rgba(34, 197, 94, 0.6));
}

@keyframes delivery-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes delivery-fade-out {
  0%, 40% {
    opacity: 1;
  }
  50%, 90% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes delivery-fade-in {
  0%, 40% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  60%, 90% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
}

/* Update Animation */
.feature-icon.update-animation {
  background: transparent;
  border: none;
  overflow: hidden;
  height: 120px;
  position: relative;
}

.update-container {
  position: relative;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.update-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(139, 92, 246, 0.1);
  border: 2px solid rgba(139, 92, 246, 0.3);
  border-radius: 50%;
  color: #a78bfa;
  animation: update-pulse 3s ease-in-out infinite;
}

.update-icon svg {
  width: 30px;
  height: 30px;
}

.update-particles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #a78bfa;
  border-radius: 50%;
  opacity: 0;
}

.particle:nth-child(1) {
  animation: particle-float-1 3s ease-in-out infinite;
}

.particle:nth-child(2) {
  animation: particle-float-2 3s ease-in-out infinite 0.5s;
}

.particle:nth-child(3) {
  animation: particle-float-3 3s ease-in-out infinite 1s;
}

@keyframes update-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(139, 92, 246, 0);
  }
}

@keyframes particle-float-1 {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-20px, -30px);
  }
}

@keyframes particle-float-2 {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(20px, -25px);
  }
}

@keyframes particle-float-3 {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(0, -35px);
  }
}

.setup-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.setup-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.85rem;
}

.setup-slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-secondary);
  border-radius: 6px;
  font-size: 0.85rem;
}

.setup-slider input[type="range"] {
  width: 100px;
  accent-color: var(--purple-primary);
}

.easy-label {
  position: absolute;
  top: 30px;
  right: 30px;
  text-align: right;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

/* Footer */
.footer {
  background: transparent;
  padding: 60px 0 30px;
  border-top: 1px solid var(--border-color);
}

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

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand .logo-icon {
  font-size: 2rem;
}

.footer-brand span:nth-child(2) {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-brand p {
  color: var(--text-muted);
}

.footer-links h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
  min-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 120px 20px 40px;
}

.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Filter Section */
.filter-section {
  padding: 20px 0 40px;
  background: transparent;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.filter-tab {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s cubic-bezier(.4,0,.2,1);
}

.filter-tab:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-primary);
}

.filter-tab.active {
  background: #6d28d9;
  color: white;
}

/* Products Page */
.products-page {
  padding-top: 0;
}

/* Scroll Mouse Indicator */
.scroll-mouse {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s ease 0.5s both;
}

.mouse-body {
  width: 26px;
  height: 42px;
  border: 2px solid var(--text-muted);
  border-radius: 15px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: var(--text-muted);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for cards */
.product-card.fade-in:nth-child(1) { transition-delay: 0.1s; }
.product-card.fade-in:nth-child(2) { transition-delay: 0.2s; }
.product-card.fade-in:nth-child(3) { transition-delay: 0.3s; }
.game-card.fade-in:nth-child(1) { transition-delay: 0.1s; }
.game-card.fade-in:nth-child(2) { transition-delay: 0.2s; }
.game-card.fade-in:nth-child(3) { transition-delay: 0.3s; }
.game-card.fade-in:nth-child(4) { transition-delay: 0.4s; }
.feature-card.fade-in:nth-child(1) { transition-delay: 0.1s; }
.feature-card.fade-in:nth-child(2) { transition-delay: 0.2s; }
.feature-card.fade-in:nth-child(3) { transition-delay: 0.3s; }
.feature-card.fade-in:nth-child(4) { transition-delay: 0.4s; }
.feature-card.fade-in:nth-child(5) { transition-delay: 0.5s; }

/* New Footer Styles — same frosted glass tokens as .navbar */
.footer-new {
  position: relative;
  z-index: 10;
  margin-top: auto;
  background: var(--glass-bar-bg);
  backdrop-filter: var(--glass-bar-blur);
  -webkit-backdrop-filter: var(--glass-bar-blur);
  border-top: 1px solid var(--glass-bar-edge);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(140, 2, 238, 0.12);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand-col {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo span {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-logo .highlight {
  color: var(--purple-light);
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-badge.green {
  background: rgba(34, 197, 94, 0.15);
  color: var(--success);
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.footer-badge.purple {
  background: rgba(109, 40, 217, 0.15);
  color: var(--purple-light);
  border: 1px solid rgba(109, 40, 217, 0.3);
}

.footer-badge.yellow {
  background: rgba(234, 179, 8, 0.15);
  color: var(--warning);
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--purple-light);
}

.footer-bottom-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.footer-bottom-new p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.status-online {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--success);
  font-weight: 500;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Loading Overlay */
.page-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loading-spinner .spinner {
  width: 40px;
  height: 40px;
  position: relative;
}

.loading-spinner .spinner::before,
.loading-spinner .spinner::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.loading-spinner .spinner::before {
  border: 2px solid rgba(109, 40, 217, 0.15);
}

.loading-spinner .spinner::after {
  border: 2px solid transparent;
  border-top-color: var(--purple-light);
  animation: loader-spin 0.8s ease-in-out infinite;
}

.loading-spinner p {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes loader-spin {
  to { transform: rotate(360deg); }
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  font-size: 0.9rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--purple-light);
}

.breadcrumb-separator {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: var(--text-primary);
  font-weight: 500;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.mobile-menu-toggle:hover {
  color: var(--text-primary);
  border-color: var(--purple-primary);
}

.mobile-menu-toggle svg {
  display: block;
}

/* Mobile Navigation Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(5, 5, 7, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  color: var(--text-secondary);
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s;
}

.mobile-nav a:hover:not(.active) {
  color: var(--purple-light);
  background: rgba(109, 40, 217, 0.1);
}

.mobile-nav a.active {
  color: #ffffff;
  background: rgba(109, 40, 217, 0.1);
}

.mobile-nav .mobile-login-btn {
  margin-top: 8px;
  padding: 14px 16px;
  background: var(--purple-primary);
  color: white;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 0.95rem;
    padding: 0 10px;
  }
  
  .hero-buttons {
    flex-direction: row;
    padding: 0 20px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    justify-content: center;
    gap: 10px;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: auto;
    padding: 10px 16px;
    font-size: 0.8rem;
    text-align: center;
  }
  
  .nav-links {
    display: none;
  }
  
  .nav-btn {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-container {
    height: 60px;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .logo-img {
    max-height: 28px;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .section-header p {
    font-size: 0.9rem;
    padding: 0 10px;
  }
  
  .scroll-indicator,
  .scroll-mouse {
    display: none;
  }
  
  .footer-bottom-new {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .hero-badge-green {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .hero {
    padding: 80px 16px 60px;
    min-height: auto;
  }
  
  .hero-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
    white-space: normal !important;
  }
  
  .hero p {
    font-size: 0.9rem;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    padding: 8px 12px;
    font-size: 0.75rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
}

/* Media Program Section */
.media-program-section {
  padding: 100px 0;
  position: relative;
}

.media-program-section .container {
  text-align: center;
}

.media-program-section .section-badge {
  margin-bottom: 24px;
}

/* Media Program Animations */
.media-program-section .section-badge,
.media-program-section .media-program-title,
.media-program-section .media-program-desc,
.media-program-section .media-program-layout {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.media-program-section.animate .section-badge {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.media-program-section.animate .media-program-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.media-program-section.animate .media-program-desc {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.media-program-section.animate .media-program-layout {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.media-program-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.media-program-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 48px;
}

.media-program-layout {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.media-program-left {
  flex: 1;
  text-align: left;
}

.media-program-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.media-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.media-feature-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--purple-light);
  border-radius: 50%;
  margin-top: 8px;
  box-shadow: 0 0 12px rgba(109, 40, 217, 0.5);
}

.media-feature-content {
  flex: 1;
}

.media-feature-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.media-feature-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.media-program-actions {
  display: flex;
  gap: 12px;
}

.media-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.media-btn-discord {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid transparent;
}

.media-btn-discord:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: none;
  box-shadow: none;
}

.media-program-right {
  flex: 1;
  max-width: 480px;
}

.media-video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) {
  .media-program-layout {
    flex-direction: column;
    gap: 40px;
  }
  
  .media-program-left {
    text-align: center;
  }
  
  .media-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .media-feature-dot {
    margin-top: 0;
  }
  
  .media-program-actions {
    justify-content: center;
  }
  
  .media-program-right {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .media-program-title {
    font-size: 1.75rem;
  }
}

/* Live Purchase Notifications */
.live-notification {
  background: var(--bg-card) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 12px !important;
  padding: 12px !important;
  width: 280px !important;
  max-width: 280px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
  gap: 10px !important;
}

.live-notification-image {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: var(--bg-secondary) !important;
}

.live-notification-content {
  overflow: hidden !important;
}

.live-notification-label {
  font-size: 0.65rem !important;
  color: var(--purple-light) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  font-weight: 500 !important;
  margin-bottom: 2px !important;
}

.live-notification-title {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--text-primary) !important;
  margin-bottom: 4px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.live-notification-time {
  font-size: 0.7rem !important;
  color: var(--text-secondary) !important;
  margin-bottom: 1px !important;
}

.live-notification-location {
  font-size: 0.7rem !important;
  color: var(--text-muted) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
