/*
 * AVORIA — Cyber Neon v3
 * Cyan · Purple · Pink
 */

/* ================================================
   VARIABLES
================================================ */
:root {
  --av-bg:      #02000C;
  --av-purple:  #8B5CF6;
  --av-cyan:    #22D3EE;
  --av-pink:    #F472B6;
  --av-dark:    #6D28D9;
  --av-neon:    #C4B5FD;
  --av-glow-p:  rgba(139, 92, 246, 0.55);
  --av-glow-c:  rgba(34, 211, 238, 0.45);
  --av-glow-pk: rgba(244, 114, 182, 0.35);
}

/* ================================================
   BLUR FIX — kill ALL backdrop-filter
   hero.njk uses .modal-backdrop.show with !important (specificity 0-2-0)
   so we need equal/higher specificity to override
================================================ */

/* Low-specificity catch-all */
* {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* High-specificity overrides for hero.njk modal rules */
.modal-backdrop,
.modal-backdrop.fade,
.modal-backdrop.show {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  background: rgba(2, 0, 12, 0.75) !important;
  transition: opacity 0.3s ease !important;
}

/* Search modal — ensure backdrop-filter stays off */
.search-modal .modal-content {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* product-card.njk has backdrop-filter on buy-button area */
.product-card .buy-btn,
.product-card .buy-area,
.snippet-product-card .btn-area {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Fix pro.css btn hover black text */
.btn:hover { color: #fff !important; }
.btn-primary { color: #fff !important; --bs-btn-color: #fff !important; }

/* ================================================
   SCROLLBAR
================================================ */
::-webkit-scrollbar              { width: 4px; }
::-webkit-scrollbar-track        { background: #020008; }
::-webkit-scrollbar-thumb        { background: linear-gradient(180deg, var(--av-cyan), var(--av-purple), var(--av-pink)); border-radius: 2px; }

/* ================================================
   SELECTION
================================================ */
::selection { background: rgba(34, 211, 238, 0.3); color: #fff; }

/* ================================================
   BACKGROUND
================================================ */
body {
  background-color: var(--av-bg) !important;
  background-image: none !important;
}

/* Cyan grid */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 211, 238, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  animation: gridMove 40s linear infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes gridMove {
  0%   { background-position: 0 0, 0 0; }
  100% { background-position: 55px 55px, 55px 55px; }
}

/* Floating tri-color orbs */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 500px at 10% 20%, rgba(109, 40, 217, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 500px 400px at 90% 75%, rgba(34, 211, 238, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 350px 350px at 55%  5%, rgba(244, 114, 182, 0.06) 0%, transparent 65%);
  animation: orbsSwim 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes orbsSwim {
  0% {
    background:
      radial-gradient(ellipse 600px 500px at 10% 20%, rgba(109, 40, 217, 0.14) 0%, transparent 65%),
      radial-gradient(ellipse 500px 400px at 90% 75%, rgba(34, 211, 238, 0.09) 0%, transparent 65%),
      radial-gradient(ellipse 350px 350px at 55%  5%, rgba(244, 114, 182, 0.06) 0%, transparent 65%);
  }
  50% {
    background:
      radial-gradient(ellipse 600px 500px at 30% 55%, rgba(109, 40, 217, 0.16) 0%, transparent 65%),
      radial-gradient(ellipse 500px 400px at 70% 30%, rgba(34, 211, 238, 0.11) 0%, transparent 65%),
      radial-gradient(ellipse 350px 350px at 15% 80%, rgba(244, 114, 182, 0.08) 0%, transparent 65%);
  }
  100% {
    background:
      radial-gradient(ellipse 600px 500px at 80% 65%, rgba(109, 40, 217, 0.13) 0%, transparent 65%),
      radial-gradient(ellipse 500px 400px at 15% 40%, rgba(34, 211, 238, 0.1)  0%, transparent 65%),
      radial-gradient(ellipse 350px 350px at 85% 15%, rgba(244, 114, 182, 0.07) 0%, transparent 65%);
  }
}

/* All content above bg — NO z-index on flex-wrapper (breaks Bootstrap modal stacking) */
body::before, body::after { pointer-events: none; }
header, footer, main, .component { position: relative; z-index: 1; }

/* ================================================
   PAGE LOAD
================================================ */
.component {
  animation: riseIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.component:nth-child(2) { animation-delay: 0.09s; }
.component:nth-child(3) { animation-delay: 0.17s; }
.component:nth-child(4) { animation-delay: 0.25s; }
.component:nth-child(5) { animation-delay: 0.33s; }
.component:nth-child(6) { animation-delay: 0.41s; }
.component:nth-child(7) { animation-delay: 0.49s; }
.component:nth-child(8) { animation-delay: 0.57s; }
.component:nth-child(9) { animation-delay: 0.65s; }

@keyframes riseIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* ================================================
   ANNOUNCEMENT BAR
================================================ */
.announcement {
  background: linear-gradient(90deg, #1a0050, var(--av-dark), var(--av-purple), var(--av-dark), #1a0050) !important;
  background-size: 400% 100% !important;
  animation: annRun 5s linear infinite !important;
  border-bottom: 1px solid rgba(139, 92, 246, 0.4) !important;
  box-shadow: 0 2px 20px rgba(139, 92, 246, 0.3) !important;
}
@keyframes annRun {
  0%   { background-position: 0%   50%; }
  100% { background-position: 400% 50%; }
}

/* ================================================
   NAVBAR
================================================ */
.navbar-glass {
  background: rgba(2, 0, 12, 0.97) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(34, 211, 238, 0.15) !important;
  box-shadow: 0 4px 40px rgba(34, 211, 238, 0.06), 0 4px 40px rgba(139, 92, 246, 0.06) !important;
}

.navbar-nav.me-auto .nav-link { position: relative; transition: color 0.25s !important; }
.navbar-nav.me-auto .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--av-cyan), var(--av-purple));
  transform: translateX(-50%);
  transition: width 0.3s ease;
  border-radius: 1px;
  box-shadow: 0 0 8px var(--av-cyan);
}
.navbar-nav.me-auto .nav-link:hover::after { width: 80%; }
.navbar-nav.me-auto .nav-link:hover { color: var(--av-cyan) !important; }

.navbar-nav.gap-3 .btn-outline-primary,
.navbar-nav .cart .btn {
  border: 1.5px solid rgba(34, 211, 238, 0.4) !important;
  color: var(--av-cyan) !important;
  background: rgba(34, 211, 238, 0.05) !important;
  transition: all 0.3s ease !important;
}
.navbar-nav.gap-3 .btn-outline-primary:hover,
.navbar-nav .cart .btn:hover {
  background: rgba(34, 211, 238, 0.15) !important;
  border-color: var(--av-cyan) !important;
  box-shadow: 0 0 20px var(--av-glow-c), inset 0 0 15px rgba(34, 211, 238, 0.06) !important;
  color: #fff !important;
}

.cart .count {
  background: linear-gradient(135deg, var(--av-purple), var(--av-cyan)) !important;
  animation: cartBlink 2.2s ease-in-out infinite !important;
}
@keyframes cartBlink {
  0%, 100% { box-shadow: 0 0 6px  var(--av-glow-p); }
  50%       { box-shadow: 0 0 18px var(--av-glow-c); }
}

/* ================================================
   HERO
================================================ */
.nexus-hero { background: var(--av-bg) !important; }

/* Glow — cyan-tinted */
.nexus-glow {
  background: rgba(34, 211, 238, 0.12) !important;
  filter: blur(100px) !important;
  width: 800px !important;
  height: 800px !important;
  animation: heroGlow 5s ease-in-out infinite alternate;
}
.nexus-glow::before {
  background: rgba(139, 92, 246, 0.18) !important;
  filter: blur(80px) !important;
}
.nexus-glow::after {
  background: rgba(244, 114, 182, 0.1) !important;
  filter: blur(60px) !important;
  animation: pinkOrbit 12s linear infinite;
}
@keyframes heroGlow {
  from { opacity: 0.7; transform: translate(-50%, -50%) scale(0.92); }
  to   { opacity: 1.0; transform: translate(-50%, -50%) scale(1.12); }
}
@keyframes pinkOrbit {
  0%   { transform: translate(-50%, -50%) rotate(0deg)   translateX(140px); }
  100% { transform: translate(-50%, -50%) rotate(360deg) translateX(140px); }
}

/* Hero title — glitch shimmer */
.hero-title {
  background: linear-gradient(110deg, var(--av-cyan) 0%, #fff 20%, var(--av-purple) 45%, var(--av-pink) 70%, var(--av-cyan) 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  animation: titleFlow 5s ease infinite, glitchFlicker 9s ease-in-out infinite;
}
.hero-color {
  background: linear-gradient(110deg, #fff 0%, var(--av-cyan) 30%, var(--av-purple) 60%, var(--av-pink) 85%, #fff 100%);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  animation: titleFlow 3.5s ease infinite, glitchFlicker 7s 2s ease-in-out infinite;
}
@keyframes titleFlow {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}
/* Glitch flicker — transform only, no filter (filter causes GPU blur bug) */
@keyframes glitchFlicker {
  0%, 88%, 100% { transform: none; opacity: 1; }
  89%  { transform: translateX(3px)  skewX(1deg);  opacity: 0.85; }
  90%  { transform: translateX(-2px);               opacity: 0.9; }
  91%  { transform: translateX(2px)  skewX(-1deg); opacity: 0.8; }
  92%  { transform: none;                           opacity: 1; }
}

.hero-subtitle {
  color: rgba(196, 181, 253, 0.82) !important;
  text-shadow: 0 0 25px rgba(34, 211, 238, 0.1);
}

/* Badge — cyan glow */
.nexus-badge {
  background: rgba(34, 211, 238, 0.08) !important;
  border: 1px solid rgba(34, 211, 238, 0.45) !important;
  color: var(--av-cyan) !important;
  text-shadow: 0 0 10px var(--av-glow-c);
  animation: badgeCyan 2.5s ease-in-out infinite;
}
@keyframes badgeCyan {
  0%, 100% { box-shadow: 0 0 10px rgba(34, 211, 238, 0.18), inset 0 0 10px rgba(34, 211, 238, 0.04); }
  50%       { box-shadow: 0 0 28px rgba(34, 211, 238, 0.4),  inset 0 0 20px rgba(34, 211, 238, 0.08); }
}

/* Hero buttons */
.nexus-btn-glass {
  border: 1px solid rgba(34, 211, 238, 0.35) !important;
  background: rgba(34, 211, 238, 0.06) !important;
  overflow: hidden !important;
  position: relative;
}
.nexus-btn-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(34, 211, 238, 0.2) 50%, transparent 70%);
  transform: translateX(-200%) skewX(-15deg);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.nexus-btn-glass:hover::before { transform: translateX(250%) skewX(-15deg); }
.nexus-btn-glass:hover {
  border-color: var(--av-cyan) !important;
  background: rgba(34, 211, 238, 0.14) !important;
  box-shadow: 0 0 22px var(--av-glow-c), 0 0 60px rgba(34, 211, 238, 0.08), inset 0 0 20px rgba(34, 211, 238, 0.06) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}

/* Corner decorations — cyan neon */
.nexus-corner {
  border-color: rgba(34, 211, 238, 0.55) !important;
  animation: cornerNeon 3s ease-in-out infinite;
}
@keyframes cornerNeon {
  0%, 100% { border-color: rgba(34, 211, 238, 0.3) !important; box-shadow: 0 0 5px  rgba(34, 211, 238, 0.15); }
  50%       { border-color: rgba(34, 211, 238, 0.9) !important; box-shadow: 0 0 16px rgba(34, 211, 238, 0.55); }
}

/* Floating stat cards */
.nexus-stat-item {
  border: 1px solid rgba(34, 211, 238, 0.15) !important;
  background: rgba(34, 211, 238, 0.04) !important;
  transition: all 0.35s ease !important;
  position: relative;
  overflow: hidden;
  animation: statFloat 4s ease-in-out infinite;
}
.nexus-stat-item:nth-child(2) { animation-delay: 0.6s; }
.nexus-stat-item:nth-child(3) { animation-delay: 1.2s; }
.nexus-stat-item:nth-child(4) { animation-delay: 1.8s; }
@keyframes statFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* Cyan shine sweep on stat cards */
.nexus-stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.15), transparent);
  animation: statSweep 5s ease-in-out infinite;
  pointer-events: none;
}
.nexus-stat-item:nth-child(1)::before { animation-delay: 0s; }
.nexus-stat-item:nth-child(2)::before { animation-delay: 1.2s; }
.nexus-stat-item:nth-child(3)::before { animation-delay: 2.4s; }
.nexus-stat-item:nth-child(4)::before { animation-delay: 3.6s; }
@keyframes statSweep {
  0%      { left: -120%; }
  40%, 100% { left: 180%; }
}

.nexus-stat-item:hover {
  border-color: var(--av-cyan) !important;
  background: rgba(34, 211, 238, 0.1) !important;
  box-shadow: 0 0 30px var(--av-glow-c) !important;
  transform: translateY(-9px) scale(1.04) !important;
}

.nexus-stat-value {
  color: var(--av-cyan) !important;
  animation: cyanPulse 2s ease-in-out infinite alternate;
}
@keyframes cyanPulse {
  from { text-shadow: 0 0 10px rgba(34, 211, 238, 0.5); }
  to   { text-shadow: 0 0 28px rgba(34, 211, 238, 0.95), 0 0 55px rgba(34, 211, 238, 0.3); }
}

/* ================================================
   FEATURES
================================================ */
.glow-inner {
  background: var(--av-purple) !important;
  opacity: 0.28 !important;
  filter: blur(130px) !important;
  animation: featureGlow 4.5s ease-in-out infinite alternate;
}
@keyframes featureGlow {
  from { opacity: 0.18; transform: scale(0.88) translateZ(0); }
  to   { opacity: 0.35; transform: scale(1.1)  translateZ(0); }
}

.about-wrapper {
  background: rgba(2, 0, 12, 0.85) !important;
  border: 1px solid transparent !important;
  position: relative;
  overflow: hidden;
}
/* Animated tri-color border */
.about-wrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(60deg, var(--av-cyan), var(--av-purple), var(--av-pink), var(--av-cyan), var(--av-purple));
  background-size: 400% 400%;
  animation: triColorBorder 5s linear infinite;
  border-radius: inherit;
  z-index: -1;
  opacity: 0.4;
}
@keyframes triColorBorder {
  0%   { background-position: 0%   50%; }
  100% { background-position: 400% 50%; }
}

.feature-box .icon {
  background: rgba(34, 211, 238, 0.08) !important;
  border: 1px solid rgba(34, 211, 238, 0.3) !important;
  color: var(--av-cyan) !important;
  transition: all 0.35s ease !important;
}
.feature-box:hover { transform: translateX(8px) !important; }
.feature-box:hover .icon {
  background: rgba(34, 211, 238, 0.2) !important;
  border-color: var(--av-cyan) !important;
  box-shadow: 0 0 28px var(--av-glow-c) !important;
  color: #fff !important;
  transform: scale(1.12) rotate(-6deg) !important;
}

/* ================================================
   CARDS — NEON BORDER ON HOVER (no @property / no GPU bug)
================================================ */
.card,
.product-card,
.feedback-card {
  background: rgba(3, 1, 14, 0.92) !important;
  border: 1px solid rgba(34, 211, 238, 0.08) !important;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}

/* Sliding gradient border — animation ONLY on hover, not always running */
.card::before,
.product-card::before,
.feedback-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(90deg, var(--av-cyan), var(--av-purple), var(--av-pink), var(--av-cyan));
  background-size: 300% 100%;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: none;
}
.card:hover::before,
.product-card:hover::before,
.feedback-card:hover::before {
  opacity: 1;
  animation: borderSlide 3s linear infinite;
}

@keyframes borderSlide {
  0%   { background-position: 0%   50%; }
  100% { background-position: 300% 50%; }
}

/* Shine sweep on hover */
.card::after,
.product-card::after,
.feedback-card::after {
  content: '';
  position: absolute;
  top: -50%; left: -65%;
  width: 40%; height: 200%;
  background: linear-gradient(to right, transparent, rgba(34, 211, 238, 0.1), transparent);
  transform: skewX(-15deg);
  pointer-events: none;
  opacity: 0;
}
.card:hover::after,
.product-card:hover::after,
.feedback-card:hover::after {
  animation: cardSweep 0.65s ease forwards;
}
@keyframes cardSweep {
  0%   { left: -65%; opacity: 1; }
  100% { left: 135%; opacity: 0; }
}

.card:hover,
.product-card:hover,
.feedback-card:hover {
  border-color: transparent !important;
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.08),
    0 0 50px rgba(34, 211, 238, 0.1),
    0 0 50px rgba(139, 92, 246, 0.1),
    0 25px 60px rgba(0, 0, 0, 0.6) !important;
  transform: translateY(-7px) !important;
}

/* ================================================
   BUTTONS
================================================ */
.btn-primary {
  background: linear-gradient(135deg, var(--av-dark), var(--av-purple), var(--av-cyan)) !important;
  background-size: 200% 200% !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 4px 22px rgba(139, 92, 246, 0.4) !important;
  animation: btnFlow 4s ease infinite;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.45s ease;
  pointer-events: none;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  box-shadow: 0 6px 40px rgba(34, 211, 238, 0.45), 0 6px 40px rgba(139, 92, 246, 0.3) !important;
  transform: translateY(-2px) scale(1.02) !important;
  color: #fff !important;
}
@keyframes btnFlow {
  0%, 100% { background-position: 0%   50%; }
  50%       { background-position: 100% 50%; }
}

.btn-outline-primary {
  border-color: rgba(34, 211, 238, 0.45) !important;
  color: var(--av-cyan) !important;
}
.btn-outline-primary:hover {
  background: rgba(34, 211, 238, 0.12) !important;
  border-color: var(--av-cyan) !important;
  box-shadow: 0 0 20px var(--av-glow-c) !important;
  color: #fff !important;
}

/* ================================================
   FORMS
================================================ */
.form-control:focus,
.form-select:focus {
  border-color: var(--av-cyan) !important;
  box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.18), 0 0 20px rgba(34, 211, 238, 0.06) !important;
}

/* ================================================
   FAQ
================================================ */
.accordion-item {
  background: rgba(3, 1, 14, 0.75) !important;
  border-color: rgba(34, 211, 238, 0.1) !important;
  transition: border-color 0.3s ease;
}
.accordion-item:hover { border-color: rgba(34, 211, 238, 0.3) !important; }
.accordion-button:not(.collapsed) {
  background: rgba(34, 211, 238, 0.08) !important;
  color: var(--av-cyan) !important;
  box-shadow: none !important;
  border-left: 3px solid var(--av-cyan) !important;
  text-shadow: 0 0 15px var(--av-glow-c);
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.18) !important;
}

/* ================================================
   MODALS
================================================ */
.modal-content {
  background: rgba(2, 0, 12, 0.97) !important;
  border: 1px solid rgba(34, 211, 238, 0.2) !important;
  box-shadow: 0 25px 80px rgba(34, 211, 238, 0.1), 0 25px 80px rgba(139, 92, 246, 0.08) !important;
}
.modal-header { border-bottom-color: rgba(34, 211, 238, 0.1) !important; }
.search-modal .modal-content { border-color: rgba(34, 211, 238, 0.25) !important; }
.nexus-searchbar { border-color: rgba(34, 211, 238, 0.3) !important; }

/* ================================================
   FOOTER
================================================ */
.nexus-footer {
  background: var(--av-bg) !important;
  border-top: 1px solid rgba(34, 211, 238, 0.12) !important;
}
.nexus-footer-glow {
  background: rgba(34, 211, 238, 0.12) !important;
  filter: blur(65px) !important;
  width: 900px !important;
  height: 200px !important;
}
.nexus-footer-link:hover { color: var(--av-cyan) !important; text-shadow: 0 0 10px var(--av-glow-c); }
.nexus-footer-link::after { background: linear-gradient(90deg, var(--av-cyan), var(--av-purple)) !important; }
.nexus-social-link { border-color: rgba(34, 211, 238, 0.18) !important; transition: all 0.3s ease !important; }
.nexus-social-link:hover {
  border-color: var(--av-cyan) !important;
  background: rgba(34, 211, 238, 0.12) !important;
  box-shadow: 0 0 22px var(--av-glow-c) !important;
  color: var(--av-cyan) !important;
  transform: translateY(-4px) scale(1.12) !important;
}

/* ================================================
   REVIEWS
================================================ */
.text-warning {
  color: var(--av-cyan) !important;
  text-shadow: 0 0 8px var(--av-glow-c);
}
[data-component-id*="reviews"] .card {
  border-color: rgba(34, 211, 238, 0.07) !important;
  background: rgba(2, 0, 12, 0.93) !important;
}

/* ================================================
   JOIN / DISCORD CTA
================================================ */
section[data-component-id*="join"] .btn {
  background: linear-gradient(135deg, var(--av-dark), var(--av-purple), var(--av-cyan)) !important;
  background-size: 200% 200% !important;
  animation: btnFlow 3s ease infinite !important;
  border: none !important;
  color: #fff !important;
  box-shadow: 0 6px 38px rgba(34, 211, 238, 0.3), 0 6px 38px rgba(139, 92, 246, 0.3) !important;
}
section[data-component-id*="join"] .btn:hover {
  box-shadow: 0 10px 55px rgba(34, 211, 238, 0.5), 0 10px 55px rgba(139, 92, 246, 0.4) !important;
  transform: translateY(-3px) scale(1.04) !important;
  color: #fff !important;
}

/* ================================================
   SCROLL TO TOP
================================================ */
[data-component-id*="scroll-to-top"] i,
[data-component-id*="scroll-to-top"] svg {
  color: var(--av-cyan) !important;
  animation: scrollCyan 2s ease-in-out infinite alternate !important;
}
@keyframes scrollCyan {
  from { opacity: 0.65; text-shadow: 0 0 5px  rgba(34, 211, 238, 0.5); }
  to   { opacity: 1.0;  text-shadow: 0 0 18px rgba(34, 211, 238, 1.0), 0 0 30px rgba(34, 211, 238, 0.5); }
}

/* ================================================
   GLOBAL HELPERS
================================================ */
.text-primary {
  color: var(--av-cyan) !important;
  text-shadow: 0 0 10px var(--av-glow-c);
}
.badge, .bg-primary {
  background: linear-gradient(135deg, var(--av-dark), var(--av-purple)) !important;
}

/* ================================================
   STATUS PAGE
================================================ */
.status-card {
  background: rgba(3, 1, 14, 0.9) !important;
  border: 1px solid rgba(34, 211, 238, 0.1) !important;
  border-radius: 10px !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem !important;
}
.status-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.status-card:hover {
  background: rgba(34, 211, 238, 0.06) !important;
  border-color: rgba(34, 211, 238, 0.35) !important;
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.1), 0 8px 30px rgba(0,0,0,0.4) !important;
  transform: translateY(-3px) translateX(4px) !important;
  text-decoration: none !important;
}
.status-card h3 {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  margin: 0 !important;
  text-shadow: none !important;
}

.status-group {
  margin-bottom: 2rem;
}
.status-group h2 {
  color: var(--av-cyan) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem !important;
  text-shadow: 0 0 15px var(--av-glow-c);
}
.status-group h2::before {
  content: '▸ ';
  opacity: 0.7;
}

.status-cards {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Pulsating indicator — match theme if status is green */
.status-card .indicator {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  position: relative;
  flex-shrink: 0;
}
.status-card .pulsating {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0;
  animation: statusPulse 2.5s ease-out infinite;
}
@keyframes statusPulse {
  0%   { transform: scale(0.8); opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
.status-card .status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.status-card .label {
  font-size: 0.82rem !important;
  font-weight: 500 !important;
}

/* Page title */
.container[data-component-id] .section-title h1 {
  background: linear-gradient(110deg, var(--av-cyan), var(--av-purple));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  filter: drop-shadow(0 0 20px rgba(34, 211, 238, 0.3));
}

/* ================================================
   PRODUCT PAGE — CRISP
================================================ */
.product-wrapper {
  background: transparent !important;
}
.product-wrapper .card,
.product-wrapper .card-img-top {
  border-color: rgba(34, 211, 238, 0.12) !important;
}
