/* =============================================
   Forever Development - Ana Stil Dosyası
   Dark Mode | Glassmorphism | Neon Effects
   ============================================= */

/* --- CSS Değişkenleri --- */
:root {
  --purple: #7c3aed;
  --purple-light: #9d5ff5;
  --purple-dark: #5b21b6;
  --neon-blue: #00d4ff;
  --neon-blue-dk: #0099cc;
  --bg-primary: #07070e;
  --bg-secondary: #0c0c18;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(124, 58, 237, 0.4);
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b5;
  --text-muted: #60607a;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --glass-bg: rgba(15, 15, 26, 0.8);
  --glass-border: rgba(124, 58, 237, 0.2);
  --navbar-height: 72px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-glow: 0 0 30px rgba(124, 58, 237, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg-primary);
  /* Subtle dot grid + soft top glow — clean, not overwhelming */
  background-image:
    radial-gradient(ellipse 100% 45% at 50% -2%, rgba(124,58,237,.09) 0%, transparent 68%),
    radial-gradient(circle at 1px 1px, rgba(255,255,255,.032) 1px, transparent 0);
  background-size: auto, 30px 30px;
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Dark mode select & option */
select,
select option {
  background: #1a1a2e !important;
  color: #f0f0f5 !important;
}

select option:checked {
  background: rgba(124, 58, 237, 0.3) !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 3px;
}

/* --- Background Particles --- */
.bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Background orbs — very subtle, non-overwhelming */
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle 28s infinite ease-in-out;
  opacity: 0.018;
  filter: blur(60px);
}

.particle:nth-child(1) {
  width: 500px; height: 500px;
  background: var(--purple);
  top: -150px; left: -150px;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 380px; height: 380px;
  background: var(--neon-blue);
  top: 25%; right: -100px;
  animation-delay: -9s;
}

.particle:nth-child(3) {
  width: 320px; height: 320px;
  background: var(--purple-dark);
  bottom: 5%; left: 15%;
  animation-delay: -18s;
}

.particle:nth-child(4) {
  width: 260px; height: 260px;
  background: var(--neon-blue);
  top: 55%; left: 55%;
  animation-delay: -5s;
}

.particle:nth-child(5) {
  width: 420px; height: 420px;
  background: var(--purple);
  bottom: -120px; right: 15%;
  animation-delay: -13s;
}

@keyframes float-particle {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(25px, -35px) scale(1.05); }
  66%       { transform: translate(-18px, 22px) scale(0.95); }
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* =============================================
   NAV
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  background: rgba(7, 7, 14, 0.75);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 7, 14, 0.95);
  border-bottom-color: rgba(124,58,237,.18);
  box-shadow: 0 1px 0 rgba(124,58,237,.12), 0 8px 32px rgba(0,0,0,.5);
}

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', sans-serif;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--purple), var(--neon-blue));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.5);
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(124, 58, 237, 0.15);
}

.nav-link.active {
  color: var(--purple-light);
}

.navbar-auth {
  margin-left: auto;
}

/* Navbar Toggle (Mobile) */
.navbar-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  margin-left: auto;
}

.navbar-toggle:hover {
  background: var(--bg-card);
  border-color: var(--purple);
}

/* User Menu */
.user-menu {
  position: relative;
}

.user-menu-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.user-menu-btn:hover {
  border-color: var(--purple);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
}

.user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
}

.user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  min-width: 180px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.user-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: var(--transition);
}

.user-dropdown a:hover {
  background: var(--bg-card);
  color: #fff;
}

.user-dropdown a.danger:hover {
  color: var(--danger);
}

.user-dropdown a i {
  width: 16px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn-discord {
  background: linear-gradient(135deg, #5865F2, #7289DA);
  color: #fff;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
}

.btn-neon {
  background: transparent;
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2), inset 0 0 10px rgba(0, 212, 255, 0.05);
}

.btn-neon:hover {
  background: rgba(0, 212, 255, 0.1);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.5), inset 0 0 15px rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-success {
  background: var(--success);
  color: #fff;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--navbar-height) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 600px 500px at 10% 50%, rgba(124, 58, 237, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 90% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--purple-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: pulse-glow 3s ease-in-out infinite;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--success);
  border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.3
  }
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(124, 58, 237, 0.2)
  }

  50% {
    box-shadow: 0 0 25px rgba(124, 58, 237, 0.5)
  }
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 0%, var(--neon-blue) 50%, var(--purple-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease both;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 36px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.hero-feature i {
  color: var(--neon-blue);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
  animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.hero-stat:hover {
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, var(--purple-light), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* =============================================
   SECTIONS
   ============================================= */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  color: var(--purple-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple) 30%, var(--neon-blue) 70%, transparent);
  margin: 0;
  opacity: 0.3;
}

/* =============================================
   PRODUCT CARDS — Yeni Tasarım
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.product-card {
  /* Clean glassmorphism base */
  background: linear-gradient(160deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, border-color .3s ease;
  --mx: 50%; --my: 50%;
}

/* Top shimmer line — revealed on hover */
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,.7), rgba(0,212,255,.5), transparent);
  opacity: 0;
  transition: opacity .35s;
  z-index: 2;
}

/* Mouse tracking radial glow */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(124,58,237,.1), transparent 58%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,.32);
  box-shadow:
    0 22px 56px rgba(0,0,0,.5),
    0 0 0 1px rgba(124,58,237,.1),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.product-card:hover::before { opacity: 1; }
.product-card:hover::after  { opacity: 1; }

/* ── Card Image ── */
.product-card-image {
  height: 164px;
  background: linear-gradient(145deg, rgba(12,12,24,1) 0%, rgba(124,58,237,.14) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

/* Bottom fade on image */
.product-card-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  background: linear-gradient(transparent, rgba(7,7,14,.9));
  pointer-events: none;
}

.product-card-image.no-image {
  font-size: 3.2rem;
}

/* Featured badge */
.product-featured-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, var(--purple), var(--neon-blue));
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 3;
  box-shadow: 0 2px 12px rgba(124,58,237,.5);
}

/* ── Card Body ── */
.product-card-body {
  padding: 18px 20px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.product-category {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--purple-light);
  opacity: .75;
}

.product-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
  color: var(--text-primary);
}

.product-card-desc {
  color: var(--text-secondary);
  font-size: .82rem;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Features list */
.product-features-list {
  margin-bottom: 14px;
}

.product-features-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  padding: 3px 0;
}

.product-features-list li i {
  color: var(--neon-blue);
  font-size: .72rem;
  min-width: 12px;
  opacity: .8;
}

/* ── Card Footer ── */
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  background: rgba(0,0,0,.18);
  position: relative;
  z-index: 2;
}

/* ── Price ── */
.product-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a78bfa, #67e8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.product-price small {
  font-size: .62rem;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

/* =============================================
   WHY US SECTION
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.why-card {
  background: linear-gradient(150deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.015) 100%);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 30px 26px;
  text-align: center;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
  --mx: 50%; --my: 50%;
}

/* Mouse tracking glow */
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(124,58,237,.1), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}

/* Bottom accent bar */
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--neon-blue), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s ease;
}

.why-card:hover {
  border-color: rgba(124,58,237,.28);
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0,0,0,.4), 0 0 0 1px rgba(124,58,237,.08);
}

.why-card:hover::before { opacity: 1; }
.why-card:hover::after  { transform: scaleX(1); }

.why-icon {
  width: 60px; height: 60px;
  background: linear-gradient(145deg, rgba(124,58,237,.18), rgba(0,212,255,.08));
  border: 1px solid rgba(124,58,237,.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin: 0 auto 18px;
  transition: all .3s;
}

.why-card:hover .why-icon {
  box-shadow: 0 0 20px rgba(124,58,237,.4);
  border-color: rgba(124,58,237,.5);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--text-primary);
}

.why-card p {
  color: var(--text-secondary);
  font-size: .85rem;
  line-height: 1.65;
}

/* =============================================
   SALE TICKER
   ============================================= */
.sale-ticker {
  background: rgba(15, 15, 26, 0.9);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
}

.sale-ticker::before,
.sale-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.sale-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-primary), transparent);
}

.sale-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-primary), transparent);
}

.ticker-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 4px 16px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 20px;
}

.ticker-item .ticker-name {
  color: var(--purple-light);
  font-weight: 600;
}

.ticker-item .ticker-bot {
  color: var(--neon-blue);
  font-weight: 600;
}

.ticker-item i {
  color: var(--success);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin: 16px 0 20px;
  line-height: 1.6;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--purple);
  color: var(--purple-light);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--purple-light);
  padding-left: 4px;
}

.footer-contact p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact a {
  color: var(--neon-blue);
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.footer-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.footer-badges span i {
  color: var(--success);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  padding: calc(var(--navbar-height) + 20px) 0 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--purple-light);
}

.breadcrumb span {
  margin: 0 8px;
}

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  padding: calc(var(--navbar-height) + 60px) 0 60px;
  text-align: center;
  background: radial-gradient(ellipse 600px 300px at 50% 0%, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
}

.page-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

/* =============================================
   FILTER BAR
   ============================================= */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.filter-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.filter-btn {
  padding: 7px 18px;
  border-radius: 20px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--purple);
  color: var(--purple-light);
}

.filter-search {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 14px;
}

.filter-search input {
  background: none;
  border: none;
  color: var(--text-primary);
  outline: none;
  font-size: 0.85rem;
  width: 180px;
}

.filter-search input::placeholder {
  color: var(--text-muted);
}

.filter-search i {
  color: var(--text-muted);
}

/* =============================================
   FORMS
   ============================================= */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 12px 16px;
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
  background: rgba(124, 58, 237, 0.05);
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control {
  cursor: pointer;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* =============================================
   GLASS CARDS
   ============================================= */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* =============================================
   BADGES & ALERTS
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--warning);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-danger {
  background: rgba(239, 68, 68, 0.15);
  color: var(--danger);
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-purple {
  background: rgba(124, 58, 237, 0.15);
  color: var(--purple-light);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.badge-blue {
  background: rgba(0, 212, 255, 0.1);
  color: var(--neon-blue);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6ee7b7;
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fcd34d;
}

.alert-info {
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: #67e8f9;
}

/* =============================================
   TABLE
   ============================================= */
.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  background: rgba(124, 58, 237, 0.1);
  padding: 14px 16px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 14px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  vertical-align: middle;
}

tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

tbody tr:last-child td {
  border-bottom: none;
}

/* =============================================
   LOGIN PAGE
   ============================================= */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.auth-logo {
  font-size: 3rem;
  margin-bottom: 24px;
}

.auth-card h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.auth-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* =============================================
   PRODUCT DETAIL
   ============================================= */
.product-detail {
  padding: 40px 0 80px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.product-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--bg-secondary), rgba(124, 58, 237, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info {}

.product-detail-info h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.product-detail-desc {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-detail-features {
  margin-bottom: 32px;
}

.product-detail-features h3 {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-item i {
  color: var(--neon-blue);
  width: 16px;
}

.product-buy-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.buy-price {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon-blue);
  line-height: 1;
}

.buy-price small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  display: block;
  margin-top: 4px;
  font-weight: normal;
}

/* =============================================
   PROFILE PAGE
   ============================================= */
.profile-header {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--purple);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.4);
}

.profile-name {
  font-size: 1.4rem;
  font-weight: 700;
}

.profile-role {
  color: var(--purple-light);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* =============================================
   SUCCESS PAGE
   ============================================= */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
}

.success-card {
  text-align: center;
  max-width: 520px;
  background: var(--bg-card);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--success);
  margin: 0 auto 24px;
  animation: pulse-success 2s ease-in-out infinite;
}

@keyframes pulse-success {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4)
  }

  50% {
    box-shadow: 0 0 0 16px rgba(16, 185, 129, 0)
  }
}

.license-key-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--neon-blue);
  cursor: pointer;
  transition: var(--transition);
  user-select: all;
  margin: 16px 0;
}

.license-key-box:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   LOADING
   ============================================= */
.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Gradient Text Utility */
.gradient-text {
  background: linear-gradient(135deg, var(--purple-light), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
  }

  .navbar-menu.open {
    display: flex;
  }

  .navbar-toggle {
    display: block;
  }

  .navbar .container {
    flex-wrap: wrap;
  }

  .navbar-auth {
    margin-left: 0;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .auth-card {
    padding: 32px 24px;
  }

  .profile-header {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   CLAUDE-STYLE GLOBAL CURSOR GLOW
   ============================================= */
#site-cursor-glow {
  position: fixed;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,.1) 0%, rgba(0,212,255,.04) 35%, transparent 65%);
  pointer-events: none;
  transform: translate(-50%,-50%);
  z-index: 0;
  will-change: left, top;
  mix-blend-mode: screen;
  opacity: 0;
  top: -9999px;
  left: -9999px;
  transition: opacity .35s;
}

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  min-height: calc(100vh - var(--navbar-height));
  display: flex;
  align-items: center;
  padding: calc(var(--navbar-height) + 50px) 0 70px;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  width: 750px; height: 750px;
  background: radial-gradient(circle, rgba(124,58,237,.2) 0%, transparent 65%);
  top: -220px; left: -180px;
  animation: hoFloat1 22s ease-in-out infinite;
}

.hero-orb-2 {
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(0,212,255,.12) 0%, transparent 65%);
  bottom: -130px; right: -130px;
  animation: hoFloat2 28s ease-in-out infinite;
}

.hero-orb-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(88,101,242,.1) 0%, transparent 65%);
  top: 45%; left: 42%;
  animation: hoFloat1 38s ease-in-out infinite reverse;
}

@keyframes hoFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(42px,-32px) scale(1.04); }
  66%      { transform: translate(-28px,46px) scale(.96); }
}

@keyframes hoFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(-36px,26px) scale(1.03); }
  66%      { transform: translate(32px,-38px) scale(.97); }
}

.hero-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hslider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Text slides */
.hslide-text {
  display: none;
  flex-direction: column;
  animation: hslideIn .6s cubic-bezier(.16,1,.3,1) both;
}
.hslide-text.active { display: flex; }

@keyframes hslideIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hslide-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 100px;
  font-size: .78rem; font-weight: 600; letter-spacing: .8px;
  margin-bottom: 22px; width: fit-content;
}
.hslide-badge.discord { background: rgba(88,101,242,.12); border: 1px solid rgba(88,101,242,.28); color: #818cf8; }
.hslide-badge.fivem   { background: rgba(239,68,68,.12);  border: 1px solid rgba(239,68,68,.28);  color: #f87171; }
.hslide-badge.trust   { background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.28); color: #34d399; }

.hslide-badge .sbdot { width: 6px; height: 6px; border-radius: 50%; animation: sbBlink 1.5s ease-in-out infinite; }
.hslide-badge.discord .sbdot { background: #818cf8; }
.hslide-badge.fivem   .sbdot { background: #f87171; }
.hslide-badge.trust   .sbdot { background: #34d399; }
@keyframes sbBlink { 0%,100%{opacity:1} 50%{opacity:.25} }

.hslide-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2rem,4.5vw,3.3rem);
  font-weight: 900; line-height: 1.15; margin-bottom: 18px; color: #fff;
}

.hslide-title .acc-discord { background: linear-gradient(135deg,#818cf8,#5865F2); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.hslide-title .acc-fivem   { background: linear-gradient(135deg,#fca5a5,#ef4444); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }
.hslide-title .acc-trust   { background: linear-gradient(135deg,#6ee7b7,#10b981); -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text; }

.hslide-desc {
  color: rgba(255,255,255,.38); font-size: 1rem; font-weight: 300;
  line-height: 1.82; margin-bottom: 28px; max-width: 480px;
}

.hslide-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

/* Slide progress bars */
.slide-bars { display: flex; gap: 10px; margin-bottom: 44px; }
.slide-bar {
  height: 3px; flex: 1; max-width: 72px; border-radius: 2px;
  background: rgba(255,255,255,.1); cursor: pointer; position: relative; overflow: hidden;
}
.slide-bar .sfill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--purple), var(--neon-blue));
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
}
.slide-bar.active .sfill { animation: sfillAnim 4.4s linear forwards; }
@keyframes sfillAnim { from{transform:scaleX(0)} to{transform:scaleX(1)} }

/* Stats row */
.hero-stats-row { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.hstat-v2 { text-align: left; }
.hstat-v2-num {
  font-family: 'Orbitron', sans-serif; font-size: 1.55rem; font-weight: 700;
  background: linear-gradient(135deg,#a78bfa,#67e8f9);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.hstat-v2-lbl { color: rgba(255,255,255,.32); font-size: .73rem; margin-top: 3px; }
.hstat-divider { width: 1px; height: 32px; background: rgba(255,255,255,.08); }

/* ── Floating visual cards (right column) ── */
.hslider-visual { position: relative; height: 500px; }

.hv-card {
  position: absolute;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px 22px;
  cursor: default;
  transition: box-shadow .4s;
}

.hv-main {
  width: 290px; top: 28px; left: 50%;
  border-color: rgba(124,58,237,.22);
  animation: hvF1 7s ease-in-out infinite;
}
.hv-discord {
  width: 218px; top: 0; left: -10px;
  border-color: rgba(88,101,242,.18);
  animation: hvF2 8s ease-in-out infinite;
}
.hv-fivem {
  width: 218px; bottom: 16px; right: 0;
  border-color: rgba(239,68,68,.18);
  animation: hvF3 9s ease-in-out infinite;
}

@keyframes hvF1 {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-15px); }
}
@keyframes hvF2 {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-11px) rotate(-2deg); }
}
@keyframes hvF3 {
  0%,100% { transform: translateY(0) rotate(2deg); }
  50%      { transform: translateY(-10px) rotate(2deg); }
}

.hv-card:hover { box-shadow: 0 24px 80px rgba(0,0,0,.55); }

.hv-label { font-size:.66rem; font-weight:700; letter-spacing:1.8px; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:10px; }
.hv-product-list { display:flex; flex-direction:column; gap:7px; margin-top:4px; }
.hv-product-item {
  display:flex; align-items:center; justify-content:space-between;
  padding:8px 10px; border-radius:10px;
  background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.05);
}
.hv-product-name { color:rgba(255,255,255,.65); font-size:.78rem; }
.hv-product-price { font-family:'Orbitron',sans-serif; font-size:.74rem; color:#a78bfa; }
.hv-stat-row { display:flex; align-items:center; gap:10px; }
.hv-stat-val { font-family:'Orbitron',sans-serif; font-size:1.1rem; font-weight:700; }
.hv-stat-lbl { font-size:.7rem; color:rgba(255,255,255,.32); margin-top:2px; }
.hv-stat-bar { margin-top:12px; height:3px; border-radius:2px; opacity:.65; }

/* ── Card mouse tracking (pcard + why-item) ── */
.pcard, .why-item { --mx:50%; --my:50%; }

.pcard::before {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(124,58,237,.12), transparent 55%) !important;
}

.why-item {
  position: relative; overflow: hidden;
}
.why-item::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(124,58,237,.09), transparent 55%);
  opacity: 0; transition: opacity .3s;
}
.why-item:hover::before { opacity: 1; }
.why-item:hover { transform: translateY(-4px); border-color: rgba(124,58,237,.2); box-shadow: 0 14px 40px rgba(0,0,0,.35); }

/* Improve product card transition */
.pcard { transition: transform .28s cubic-bezier(.34,1.56,.64,1), box-shadow .28s ease, border-color .28s ease; }

@media(max-width:900px) {
  .hslider-grid { grid-template-columns: 1fr; gap: 40px; }
  .hslider-visual { display: none; }
}
@media(max-width:600px) {
  .hero-stats-row { gap: 14px; }
  .hslide-ctas { flex-direction: column; }
  .slide-bars { margin-bottom: 28px; }
}