:root {
  --neon-cyan: #00f5ff;
  --neon-green: #39ff14;
  --neon-pink: #ff006e;
  --neon-yellow: #ffe600;
  --bg-dark: #050912;
  --bg-card: #0b1220;
  --bg-card2: #0d1a2a;
  --border-glow: rgba(0,245,255,0.25);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-dark);
  font-family: 'Rajdhani', sans-serif;
  color: #c8d8e8;
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 12px;
  height: 12px;
  background: var(--neon-cyan);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
  transition: transform 0.1s ease;
  mix-blend-mode: screen;
}

.cursor-ring {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(0,245,255,0.6);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.18s ease;
  mix-blend-mode: screen;
}

/* SCAN LINES */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,245,255,0.012) 2px, rgba(0,245,255,0.012) 4px);
  pointer-events: none;
  z-index: 9990;
}

/* NOISE GRAIN */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9989;
  opacity: 0.4;
}

/* GRID BG */
.grid-bg {
  background-image:
    linear-gradient(rgba(0,245,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* HEADER */
.header-bar {
  background: rgba(5,9,18,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,245,255,0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

/* GLITCH TEXT */
.glitch {
  position: relative;
  display: inline-block;
  font-family: 'Orbitron', monospace;
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan), 0 0 30px rgba(0,245,255,0.4);
  animation: glitch-main 4s infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.glitch::before {
  color: var(--neon-pink);
  animation: glitch-top 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  text-shadow: 2px 0 var(--neon-pink);
}

.glitch::after {
  color: var(--neon-green);
  animation: glitch-bottom 4s infinite;
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  text-shadow: -2px 0 var(--neon-green);
}

@keyframes glitch-main {
  0%, 90%, 100% { transform: none; }
  92% { transform: skewX(0.5deg); }
  94% { transform: skewX(-0.5deg); }
  96% { transform: none; }
}

@keyframes glitch-top {
  0%, 88%, 100% { transform: none; opacity: 0; }
  90% { transform: translate(-2px, 1px); opacity: 1; }
  92% { transform: translate(2px, -1px); opacity: 1; }
  94% { opacity: 0; }
}

@keyframes glitch-bottom {
  0%, 85%, 100% { transform: none; opacity: 0; }
  87% { transform: translate(2px, 1px); opacity: 1; }
  89% { transform: translate(-2px, -1px); opacity: 1; }
  91% { opacity: 0; }
}

/* HERO */
.hero-title {
  font-family: 'Orbitron', monospace;
  letter-spacing: 0.05em;
}

.neon-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  animation: scan 3s linear infinite;
}

@keyframes scan {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

/* TICKER */
.ticker-wrap {
  overflow: hidden;
}

.ticker {
  display: flex;
  gap: 60px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* PRODUCT CARD */
.prod-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,245,255,0.12);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.prod-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,245,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.prod-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 24px rgba(0,245,255,0.15), 0 8px 32px rgba(0,0,0,0.5);
}

.prod-card:hover .card-glow {
  opacity: 1;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0,245,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.badge {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 2px;
}

.badge-hot {
  background: rgba(255,0,110,0.15);
  color: var(--neon-pink);
  border: 1px solid rgba(255,0,110,0.4);
}

.badge-new {
  background: rgba(57,255,20,0.12);
  color: var(--neon-green);
  border: 1px solid rgba(57,255,20,0.35);
}

.badge-popular {
  background: rgba(255,230,0,0.12);
  color: var(--neon-yellow);
  border: 1px solid rgba(255,230,0,0.35);
}

/* ICON GLOW */
.icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  position: relative;
}

.icon-wrap svg {
  width: 26px;
  height: 26px;
}

/* CTA BUTTON */
.btn-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-family: 'Orbitron', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.25s, box-shadow 0.25s;
}

.btn-buy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--neon-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 0;
}

.btn-buy:hover::before {
  transform: scaleX(1);
}

.btn-buy:hover {
  color: #050912;
  box-shadow: 0 0 20px rgba(0,245,255,0.4);
}

.btn-buy span,
.btn-buy svg {
  position: relative;
  z-index: 1;
}

/* PRICE */
.price-tag {
  font-family: 'Orbitron', monospace;
  color: var(--neon-cyan);
  text-shadow: 0 0 8px rgba(0,245,255,0.5);
}

/* SECTION TITLE */
.sec-title {
  font-family: 'Orbitron', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--neon-cyan);
  text-transform: uppercase;
}

/* STATS */
.stat-num {
  font-family: 'Orbitron', monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-shadow: 0 0 12px rgba(0,245,255,0.6);
}

/* FLOATING PARTICLES */
.particle {
  position: fixed;
  pointer-events: none;
  width: 2px;
  height: 2px;
  background: var(--neon-cyan);
  border-radius: 50%;
  opacity: 0;
  animation: float-up linear infinite;
  box-shadow: 0 0 4px var(--neon-cyan);
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% {
    transform: translateY(-10vh) translateX(var(--dx, 20px));
    opacity: 0;
  }
}

/* FEATURE LIST */
.feat-item::before {
  content: '▸';
  color: var(--neon-cyan);
  margin-right: 8px;
  font-size: 0.8rem;
}

/* CONTACT */
.wa-btn {
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: white;
  font-family: 'Orbitron', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 20px rgba(37,211,102,0.3);
}

.wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(37,211,102,0.5);
}

/* DIVIDER */
.cyber-divider {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cyber-divider::before,
.cyber-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,245,255,0.25), transparent);
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #050912;
}

::-webkit-scrollbar-thumb {
  background: var(--neon-cyan);
  border-radius: 2px;
}

/* MOBILE CURSOR OFF */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }
}

/* FADE IN */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* CORNER DECOR */
.corner-tl::before,
.corner-tl::after {
  content: '';
  position: absolute;
}

.corner-tl::before {
  top: -1px;
  left: -1px;
  width: 12px;
  height: 1px;
  background: var(--neon-cyan);
}

.corner-tl::after {
  top: -1px;
  left: -1px;
  width: 1px;
  height: 12px;
  background: var(--neon-cyan);
}

/* MARQUEE PAUSE */
.ticker-wrap:hover .ticker {
  animation-play-state: paused;
}
