:root {
  --cs-green: #A2FF00;
  --cs-blue: #60A5FA;
  --cs-red: #F87171;
  --cs-bg: #050607;
  --cs-panel: rgba(10, 14, 18, 0.92);
  --cs-card: rgba(14, 18, 24, 0.96);
  --cs-text: #F9FAFB;
}

/* GLOBAL */
body {
  background:
    radial-gradient(circle at 20% 10%, rgba(162,255,0,.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(96,165,250,.18), transparent 32%),
    linear-gradient(180deg, #030405 0%, #070A0D 45%, #020303 100%) !important;
  color: var(--cs-text) !important;
  font-family: Arial, sans-serif !important;
}

/* PAGE GLOW */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(162,255,0,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  z-index: 0;
}

/* PANELS */
.container,
.content,
.main,
.wrapper,
.card,
.product,
.products .item,
.shop-item,
.category,
.panel {
  background: var(--cs-panel) !important;
  border: 1px solid rgba(162,255,0,.22) !important;
  box-shadow: 0 0 22px rgba(162,255,0,.08), inset 0 0 18px rgba(96,165,250,.04) !important;
  border-radius: 10px !important;
}

/* PRODUCT CARDS */
.product,
.shop-item,
.products .item,
.item-card {
  position: relative !important;
  overflow: hidden !important;
  background: linear-gradient(180deg, rgba(18,24,31,.98), rgba(4,6,8,.98)) !important;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}

.product::before,
.shop-item::before,
.products .item::before,
.item-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg, transparent, rgba(162,255,0,.18), rgba(96,165,250,.16), transparent);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.product:hover,
.shop-item:hover,
.products .item:hover,
.item-card:hover {
  transform: translateY(-6px) scale(1.015) !important;
  border-color: var(--cs-green) !important;
  box-shadow: 0 0 28px rgba(162,255,0,.35), 0 0 42px rgba(96,165,250,.12) !important;
}

.product:hover::before,
.shop-item:hover::before,
.products .item:hover::before,
.item-card:hover::before {
  opacity: 1;
}

/* PULSING FEATURED ITEM */
.cs-pulse,
.product:first-of-type,
.shop-item:first-of-type,
.products .item:first-of-type {
  animation: csPulse 2.2s infinite ease-in-out;
  border-color: rgba(162,255,0,.72) !important;
}

@keyframes csPulse {
  0%, 100% {
    box-shadow: 0 0 14px rgba(162,255,0,.25), 0 0 28px rgba(96,165,250,.08);
  }
  50% {
    box-shadow: 0 0 34px rgba(162,255,0,.65), 0 0 64px rgba(96,165,250,.22);
  }
}

/* TITLES */
h1, h2, h3, h4,
.product-title,
.item-title,
.title {
  color: var(--cs-text) !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(162,255,0,.35);
}

/* PRICE */
.price,
.product-price,
.item-price {
  color: var(--cs-green) !important;
  font-weight: 800 !important;
  text-shadow: 0 0 14px rgba(162,255,0,.55);
}

/* BUTTONS */
button,
.btn,
.button,
.buy,
.buy-button,
input[type="submit"] {
  background: linear-gradient(90deg, var(--cs-green), var(--cs-blue)) !important;
  color: #020303 !important;
  border: none !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  border-radius: 8px !important;
  box-shadow: 0 0 18px rgba(162,255,0,.35) !important;
  transition: transform .2s ease, filter .2s ease !important;
}

button:hover,
.btn:hover,
.button:hover,
.buy:hover,
.buy-button:hover,
input[type="submit"]:hover {
  transform: scale(1.04);
  filter: brightness(1.15);
}

/* CATEGORY MENU */
.category a,
.categories a,
.nav a,
.menu a {
  color: var(--cs-text) !important;
  border-left: 3px solid transparent;
  transition: .2s ease;
}

category a:hover,
.categories a:hover,
.nav a:hover,
.menu a:hover {
  color: var(--cs-green) !important;
  border-left-color: var(--cs-green);
  text-shadow: 0 0 10px rgba(162,255,0,.7);
}

/* IMAGES */
.product img,
.shop-item img,
.products .item img,
.item-card img {
  border-radius: 8px !important;
  filter: contrast(1.08) saturate(1.12);
}

/* NO P2W BADGE */
.cs-nop2w-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin: 10px 0;
  color: var(--cs-green);
  border: 1px solid rgba(162,255,0,.5);
  background: rgba(162,255,0,.08);
  border-radius: 999px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(162,255,0,.2);
}

/* FOOTER */
footer,
.footer {
  background: rgba(3,5,7,.96) !important;
  border-top: 1px solid rgba(162,255,0,.2);
}

/* MOBILE */
@media (max-width: 768px) {
  .product,
  .shop-item,
  .products .item {
    transform: none !important;
  }
}