/* ============================================================
   SHOPNOVA ULTRA BLUE FX PACK — FULL EDITION
   Fog • Spotlight • Gradient Text • Glow Navbar • Feature Cards
   ============================================================ */


/* ============================================================
   1.  GLOBAL BLUE GRADIENT TEXT
   ============================================================ */

.text-gradient-blue {
  background: linear-gradient(90deg, #4da3ff, #1aaaff, #00e0ff, #1aaaff, #4da3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s linear infinite;
  background-size: 300%;
}

@keyframes gradientFlow {
  0% { background-position: 0% }
  100% { background-position: 300% }
}


/* ============================================================
   2.  SPOTLIGHT CURSOR GLOW
   ============================================================ */

body {
  position: relative;
  overflow-x: hidden;
}

#spotlight-cursor {
  position: fixed;
  pointer-events: none;
  width: 280px;
  height: 280px;
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(0,160,255,0.4) 0%, rgba(0,60,120,0.05) 70%, transparent 100%);
  transition: transform .1s linear;
  mix-blend-mode: screen;
  z-index: 1;
}

body:hover #spotlight-cursor {
  opacity: 1;
}


/* ============================================================
   3.  MOVING FOG EFFECT
   ============================================================ */

.fog-layer {
  position: fixed;
  top: 0; left: 0;
  width: 200%;
  height: 200%;
  background: url('https://i.imgur.com/V7l8F7L.png') repeat;
  opacity: 0.12;
  filter: blur(80px);
  animation: fogMove 65s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes fogMove {
  0%   { transform: translateX(0) translateY(0); }
  50%  { transform: translateX(-20%) translateY(10%); }
  100% { transform: translateX(0) translateY(0); }
}


/* ============================================================
   4.  NAVBAR — GLASS + BLUE NEON GLOW + GRADIENT FIX
   ============================================================ */

nav.component {
  position: sticky;
  top: 0;
  z-index: 50;
}

.glass-nav-inner {
  backdrop-filter: blur(18px);
  background: rgba(0, 15, 40, 0.65);
  border-bottom: 1px solid rgba(0, 120, 255, 0.25);
  box-shadow: 0 0 25px rgba(0, 120, 255, 0.25);
}

.drop-glow img {
  filter: drop-shadow(0 0 12px rgba(0, 150, 255, 0.9));
}

/* Links */
.nav-link {
  color: #ffffffcc;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 4px;
  position: relative;
  transition: color .25s ease;
}

/* Underline hover */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #1570ff, #00e0ff);
  box-shadow: 0 0 10px rgba(0,150,255,.6);
  transition: width .3s ease;
}

.nav-link:hover {
  color: #ffffff;
}
.nav-link:hover::after { width: 100%; }

/* Active */
.active-nav-link {
  color: #ffffff;
}
.active-nav-link::after { width: 100%; }

/* Discord + Account Buttons */
.nav-blue-btn {
  background: linear-gradient(135deg, #1570ff, #00c8ff);
  padding: 9px 20px;
  border-radius: 12px;
  font-weight: 600;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.45);
  transition: all .25s ease;
}

.nav-blue-btn:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #1c8cff, #00e0ff);
  box-shadow: 0 0 35px rgba(0, 200, 255, .9);
}

/* Hide currency safely */
.currency-selector { display: none !important; }


/* ============================================================
   5.  FEATURE CARDS — YOUR ORIGINAL FX + CLEAN MERGE
   ============================================================ */

.why-card {
  position: relative;
  background: rgba(0, 25, 60, 0.25);
  border: 1px solid rgba(0, 150, 255, 0.35);
  padding: 26px;
  border-radius: 20px;
  text-align: center;
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: all .3s ease, border-color .3s ease, box-shadow .3s ease;
  box-shadow:
    inset 0 0 20px rgba(0, 120, 255, 0.15),
    0 0 25px rgba(0, 140, 255, 0.25);
}

.why-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(0, 180, 255, 0.7);
  box-shadow:
    0 0 35px rgba(0, 180, 255, 0.7),
    inset 0 0 25px rgba(0, 170, 255, 0.5);
}

.why-card::before {
  content: "";
  position: absolute;
  top: -150%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(0, 190, 255, 0.18) 50%,
    transparent 100%
  );
  transform: rotate(20deg);
  opacity: 0;
  transition: opacity .6s ease, top .6s ease, left .6s ease;
}

.why-card:hover::before {
  top: -20%;
  left: -20%;
  opacity: 1;
}

/* Border animation */
.why-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(0, 200, 255, .8),
    rgba(0, 100, 255, .6),
    rgba(0, 200, 255, .8)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  animation: borderFlow 4s linear infinite;
  opacity: .75;
}

@keyframes borderFlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Icon */
.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1160ff, #00e0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow:
    0 0 25px rgba(0, 160, 255, 0.9),
    inset 0 0 12px rgba(0, 160, 255, 0.7);
  animation: iconPulse 2.8s infinite ease-in-out;
}

@keyframes iconPulse {
  0%   { transform: scale(1); box-shadow: 0 0 20px rgba(0,150,255,0.6); }
  50%  { transform: scale(1.08); box-shadow: 0 0 40px rgba(0,200,255,1); }
  100% { transform: scale(1); box-shadow: 0 0 20px rgba(0,150,255,0.6); }
}

/* Title + Desc */
.why-title {
  font-weight: 800;
  font-size: 1.03rem;
  color: #e9f3ff;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0,180,255,0.4);
}

.why-desc {
  color: #c0e6ff;
  opacity: 0.88;
  font-size: .92rem;
  line-height: 1.55;
}


/* Mobile */
@media (max-width: 768px) {
  .why-card { padding: 18px; }
  .why-icon { width: 52px; height: 52px; }
  .why-title { font-size: .95rem; }
  .why-desc { font-size: .82rem; }
}
.stock-wrapper {
    margin-top: 14px;
}

.stock-label {
    color: #ccc;
    font-size: 13px;
    margin-bottom: 6px;
}

.stock-bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: #262626;
    overflow: hidden;
    position: relative;
}

.stock-fill {
    width: 80%; /* You can change this to dynamic later */
    height: 100%;
    background: linear-gradient(90deg, #00d47e, #27ff9e);
    border-radius: inherit;
    transition: width 0.3s ease;
}

.stock-badge {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

.stock-count {
    background: rgba(0, 255, 150, 0.15);
    color: #00ff9d;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 150, 0.25);
}