/*
 * ROGUE DMA - SellAuth Theme
 * Based on rogue-dma-app.html + Marathon infiltration
 */

:root {
  --bg: #0b0b0d;
  --bg2: #080a12;
  --card: #141722;
  --card2: #181c2e;
  --card3: #10131e;
  --border: rgba(255, 255, 255, 0.1);
  --border2: rgba(255, 255, 255, 0.15);
  --accent: #ff0100;
  --accent2: #ff0100;
  --accent-glow: rgba(255, 1, 0, 0.4);
  --accent-dim: rgba(255, 1, 0, 0.1);
  --green: #22c55e;
  --yellow: #f59e0b;
  --red: #ef4444;
  --font: "Kanit", sans-serif;
  --font-display: "Orbitron", sans-serif;
  --m-text: #fff;
  --m-text2: rgba(255, 255, 255, 0.8);
  --m-text3: rgba(255, 255, 255, 0.6);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 1, 0, 0.3) var(--bg);
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 1, 0, 0.3);
  border-radius: 3px;
}

body {
  background: var(--bg) !important;
  color: var(--m-text);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: #fff;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--accent);
}

/* ========== CANVASES & WRAPPER ========== */
.rogue-circuit,
.rogue-bouncer-canvas,
.rogue-starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.rogue-circuit {
  z-index: 1;
}
.rogue-bouncer-canvas {
  z-index: 2;
}
.rogue-starfield {
  z-index: 1;
  opacity: 0.6;
}
.flex-wrapper {
  position: relative;
}

/* ========== MARATHON VFX — PLAYER INFIL SCREEN ========== */
.inf-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
}
.inf-overlay.inf-exit {
  opacity: 0 !important;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
#inf-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.inf-dotmask {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.35) 1px,
    transparent 1px
  );
  background-size: 4px 4px;
  mix-blend-mode: multiply;
}
.inf-chroma {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}
.inf-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: 5;
  pointer-events: none;
  max-width: 140px;
  max-height: 140px;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 0 30px rgba(255, 1, 0, 0.6));
}
.inf-shop-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 40%);
  z-index: 5;
  pointer-events: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  text-shadow:
    0 0 15px rgba(255, 1, 0, 0.6),
    0 0 40px rgba(255, 1, 0, 0.3),
    0 0 80px rgba(255, 1, 0, 0.15);
}
.inf-hud {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  padding: 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.inf-hud-bl {
  position: absolute;
  bottom: 24px;
  left: 30px;
}
.inf-bungie {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ff0100;
  text-shadow:
    0 0 8px rgba(255, 1, 0, 0.6),
    0 0 20px rgba(255, 1, 0, 0.3);
}
.inf-hud-br {
  position: absolute;
  bottom: 24px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.inf-tally {
  font-family: "Share Tech Mono", var(--font-display), monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
}
.inf-marathon {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ff0100;
  text-shadow:
    0 0 8px rgba(255, 1, 0, 0.6),
    0 0 20px rgba(255, 1, 0, 0.3);
}
.inf-meta {
  position: absolute;
  bottom: 50px;
  left: 30px;
  z-index: 3;
  pointer-events: none;
  font-family: "Share Tech Mono", var(--font-display), monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #ff0100;
  opacity: 0;
  text-shadow: 0 0 6px rgba(255, 1, 0, 0.4);
}

/* ========== LOADING SCREEN (inter-page nav) ========== */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
  overflow: hidden;
}
.loading-screen.loaded {
  opacity: 0;
  pointer-events: none;
}
.loading-embers {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.loading-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    ellipse at center,
    transparent 20%,
    rgba(0, 0, 0, 0.8) 100%
  );
  pointer-events: none;
}
.loading-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.loading-logo-img {
  max-width: 180px;
  max-height: 180px;
  object-fit: contain;
  margin-bottom: 28px;
  filter: drop-shadow(0 0 20px rgba(255, 1, 0, 0.4))
    drop-shadow(0 0 60px rgba(255, 1, 0, 0.15));
  animation: logoBreath 2s ease-in-out infinite alternate;
}
@keyframes logoBreath {
  0% {
    filter: drop-shadow(0 0 20px rgba(255, 1, 0, 0.3))
      drop-shadow(0 0 60px rgba(255, 1, 0, 0.1));
  }
  100% {
    filter: drop-shadow(0 0 30px rgba(255, 1, 0, 0.6))
      drop-shadow(0 0 80px rgba(255, 1, 0, 0.25));
  }
}
.loading-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 28px;
}
.loading-accent {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(255, 1, 0, 0.5);
}
.loading-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 1, 0, 0.1);
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(255, 1, 0, 0.1);
}
.loading-bar-fill {
  width: 100%;
  height: 100%;
  background: var(--accent);
  box-shadow:
    0 0 10px rgba(255, 1, 0, 0.6),
    0 0 20px rgba(255, 1, 0, 0.3);
  animation: loadingBar 0.8s ease-in-out infinite alternate;
}
@keyframes loadingBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.loading-text {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.4em;
  color: rgba(255, 1, 0, 0.5);
  text-shadow: 0 0 8px rgba(255, 1, 0, 0.2);
}
.loading-screen.loaded {
  opacity: 0;
  pointer-events: none;
}
.loading-inner {
  text-align: center;
}
.loading-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 24px;
}
.loading-accent {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(255, 1, 0, 0.5);
}
.loading-bar {
  width: 180px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 12px;
  overflow: hidden;
  border-radius: 1px;
}
.loading-bar-fill {
  width: 100%;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(255, 1, 0, 0.5);
  animation: loadingBar 0.8s ease-in-out infinite alternate;
}
@keyframes loadingBar {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.loading-text {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--m-text3);
}
/* ========== ANNOUNCEMENT ========== */
.announcement,
.component.announcement {
  background: var(--card) !important;
  color: var(--m-text2) !important;
  font-family: var(--font);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid var(--border);
}
.announcement a {
  color: var(--accent) !important;
}

/* ========== NAVBAR ========== */
.navbar {
  background: transparent !important;
  border: none !important;
  padding: 0.5rem 0;
  z-index: 1040;
}
.navbar .container {
  background: rgba(11, 11, 13, 0.08);
  border: 1px solid rgba(255, 1, 0, 0.5);
  border-radius: 16px;
  padding: 6px 12px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 0 8px rgba(255, 1, 0, 0.3),
    0 0 20px rgba(255, 1, 0, 0.15),
    0 0 40px rgba(255, 1, 0, 0.05),
    inset 0 0 12px rgba(255, 1, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: neonPulse 3s ease-in-out infinite;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
@keyframes neonPulse {
  0%,
  100% {
    box-shadow:
      0 0 8px rgba(255, 1, 0, 0.3),
      0 0 20px rgba(255, 1, 0, 0.15),
      0 0 40px rgba(255, 1, 0, 0.05),
      inset 0 0 12px rgba(255, 1, 0, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }
  50% {
    box-shadow:
      0 0 12px rgba(255, 1, 0, 0.45),
      0 0 30px rgba(255, 1, 0, 0.2),
      0 0 60px rgba(255, 1, 0, 0.08),
      inset 0 0 18px rgba(255, 1, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}
.navbar .container:hover {
  border-color: rgba(255, 1, 0, 0.8);
  box-shadow:
    0 0 10px rgba(255, 1, 0, 0.5),
    0 0 30px rgba(255, 1, 0, 0.25),
    0 0 60px rgba(255, 1, 0, 0.1),
    inset 0 0 20px rgba(255, 1, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.navbar.scrolled .container {
  background: rgba(11, 11, 13, 0.2);
  border-color: rgba(255, 1, 0, 0.6);
}
.navbar .navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff !important;
  transition: color 0.2s;
}
.navbar .navbar-brand:hover {
  color: var(--accent) !important;
}
.navbar .navbar-brand img {
  max-height: 2rem;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
.navbar .navbar-nav {
  align-items: center;
}
.navbar .nav-link {
  font-family: var(--font-display);
  color: var(--m-text2) !important;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px !important;
  border-radius: 10px;
  transition: all 0.25s;
  position: relative;
}
.navbar .nav-link:hover {
  color: #fff !important;
  background: rgba(255, 1, 0, 0.08);
  box-shadow: inset 0 0 12px rgba(255, 1, 0, 0.06);
}
.navbar .nav-link.active {
  color: var(--accent) !important;
  background: rgba(255, 1, 0, 0.1);
  box-shadow: inset 0 0 12px rgba(255, 1, 0, 0.08);
}
.navbar .btn-outline-primary {
  font-family: var(--font-display);
  border-color: var(--border2) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  background: transparent !important;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 10px !important;
  padding: 7px 16px !important;
  transition: all 0.25s;
}
.navbar .btn-outline-primary:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: rgba(255, 1, 0, 0.08) !important;
  box-shadow: inset 0 0 16px rgba(255, 1, 0, 0.08);
}
.navbar .cart .btn .count {
  background: var(--accent) !important;
  border-radius: 99px !important;
  font-size: 10px;
}
.navbar-toggler {
  border: 1px solid var(--border2) !important;
  border-radius: 10px !important;
}

/* ========== BUTTONS ========== */
.btn-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 12px !important;
  padding: 10px 22px !important;
  transition: all 0.25s;
  box-shadow: 0 0 0 rgba(255, 1, 0, 0);
}
.btn-primary:hover {
  background: var(--accent2) !important;
  border-color: var(--accent2) !important;
  box-shadow: 0 0 28px var(--accent-glow);
  transform: translateY(-1px);
  color: #fff !important;
}
.btn-outline-primary {
  border-color: var(--border2) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  background: transparent !important;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 12px !important;
  padding: 10px 22px !important;
  transition: all 0.25s;
}
.btn-outline-primary:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: var(--accent-dim) !important;
  box-shadow: 0 0 20px var(--accent-dim);
}

/* ========== HERO ========== */
.hero {
  background: transparent !important;
  background-image: none !important;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  border-bottom: 1px solid var(--border);
}
.hero .bg-overlay {
  display: none !important;
}
.hero .rogue-embers {
  display: none !important;
}
.hero > .container {
  position: relative;
  z-index: 5;
}
.hero .content {
  position: relative;
  z-index: 5;
  text-align: center;
}
.hero .content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
}
.hero .content p {
  color: var(--m-text2);
  font-size: 15px;
  max-width: 560px;
  margin: 16px auto 0;
  font-weight: 300;
  line-height: 1.7;
}
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 40px rgba(255, 1, 0, 0.5))
    drop-shadow(0 0 80px rgba(255, 1, 0, 0.2));
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.rogue-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1px solid rgba(255, 1, 0, 0.25);
  background: rgba(255, 1, 0, 0.06);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 28px;
}
.rogue-pulse-dot {
  position: relative;
  width: 6px;
  height: 6px;
}
.rogue-pulse-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--accent);
}
.rogue-pulse-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0;
    transform: scale(2);
  }
}

.rogue-gradient-text {
  background: linear-gradient(90deg, #ff6b8a, #ff0100, #ff3d5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== NEON TITLE ========== */
.rogue-neon-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.05;
  text-shadow:
    0 0 10px rgba(255, 1, 0, 0.6),
    0 0 30px rgba(255, 1, 0, 0.4),
    0 0 60px rgba(255, 1, 0, 0.2),
    0 0 100px rgba(255, 1, 0, 0.1);
  animation: neonFlicker 4s ease-in-out infinite;
}
@keyframes neonFlicker {
  0%,
  100% {
    text-shadow:
      0 0 10px rgba(255, 1, 0, 0.6),
      0 0 30px rgba(255, 1, 0, 0.4),
      0 0 60px rgba(255, 1, 0, 0.2),
      0 0 100px rgba(255, 1, 0, 0.1);
  }
  50% {
    text-shadow:
      0 0 14px rgba(255, 1, 0, 0.8),
      0 0 40px rgba(255, 1, 0, 0.5),
      0 0 80px rgba(255, 1, 0, 0.3),
      0 0 120px rgba(255, 1, 0, 0.15);
  }
}

/* ========== GLOBAL TEXT GLOW ========== */
h1,
h2,
h3,
h4 {
  text-shadow:
    0 0 8px rgba(255, 1, 0, 0.15),
    0 0 20px rgba(255, 1, 0, 0.08);
}
.hero .content p,
.section-subtitle p,
.feat-card p,
.how-card p,
.news-card p,
.review-card p,
.cat-body p {
  text-shadow: 0 0 6px rgba(255, 1, 0, 0.08);
}

.rogue-glow-btn {
  display: inline-flex;
  border: 1px solid rgba(255, 1, 0, 0.3);
  padding: 0;
  background: transparent;
  text-decoration: none;
  border-radius: 14px !important;
}
.rogue-glow-btn-inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.25s;
  border-radius: 14px !important;
}
.rogue-glow-btn-inner:hover {
  background: var(--accent2);
  box-shadow: 0 0 28px var(--accent-glow);
  transform: translateY(-1px);
}

.rogue-3d-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid var(--border2);
  background: transparent;
  border-radius: 14px !important;
  transition: all 0.25s;
}
.rogue-3d-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-dim);
}

/* SEARCHBAR */
.fake-searchbar {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 14px !important;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s;
  max-width: 480px;
  margin: 24px auto;
}
.fake-searchbar:hover {
  border-color: rgba(255, 1, 0, 0.3);
  box-shadow: 0 0 20px var(--accent-dim);
}
.fake-searchbar svg {
  flex-shrink: 0;
  opacity: 0.4;
}
.fake-searchbar .form-control {
  background: transparent;
  border: none;
  color: var(--m-text3);
  font-size: 13px;
  outline: none;
  pointer-events: none;
}

/* HERO CTAs */
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* STATS */
.stats-wrapper {
  margin-top: 56px;
}
.stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}
.stats > div {
  text-align: center;
}
.stats .value {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}
.stats .value.accent {
  color: var(--accent);
}
.stats .label {
  display: block;
  font-size: 11px;
  color: var(--m-text3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

/* ========== SECTION TITLES ========== */
.section-title {
  margin-bottom: 20px;
}
.section-title .section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: #fff;
}
.section-subtitle p {
  font-size: 15px;
  color: var(--m-text3);
  max-width: 520px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* ========== PRODUCTS ========== */
.products {
  display: flex;
  flex-wrap: wrap;
}
.products .card {
  border-radius: 20px !important;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.products .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 1, 0, 0.4),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s;
}
.products .card:hover {
  border-color: rgba(255, 1, 0, 0.3) !important;
  box-shadow:
    0 0 42px rgba(255, 1, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}
.products .card:hover::before {
  opacity: 1;
}
.products .card-img-top {
  position: relative;
  overflow: hidden;
  background: var(--card3);
  aspect-ratio: var(--product-card-image-aspect-ratio, 16/9);
}
.products .card-img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.products .card:hover .card-img-top img {
  transform: scale(1.03);
}
.products .card-img-top .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.2s;
}
.products .card:hover .card-img-top .overlay {
  opacity: 1;
}
.products .card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.products .card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.products .card-body .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.products .card-body .info .price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
  margin: 0;
}
.products .card-body .info .price s {
  color: var(--m-text3);
  margin-left: 0.3rem;
}
.products .card-body .info .text-primary {
  font-size: 10px;
  color: var(--green) !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.products .card-body .info .stock-unlimited {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
}
.products .card .badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.products .card .badges > div {
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  border-radius: 99px !important;
}

/* ========== PRODUCT PAGE ========== */
.product-page {
  padding: 2rem 0;
}
.product-page .product-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card3);
  border-radius: 20px !important;
  aspect-ratio: var(--product-page-image-aspect-ratio, 16/9);
}
.product-page .product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-page h1 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.product-page .price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
}

/* ========== MODALS ========== */
.modal {
  z-index: 1060 !important;
}
.modal-content {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  z-index: 1061 !important;
}
.modal-backdrop {
  z-index: 1055 !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
}
.modal-header {
  border-bottom: 1px solid var(--border) !important;
  padding: 20px 28px;
}
.modal-header .modal-title {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.modal-header .btn-close {
  filter: invert(1);
}
.modal-body {
  padding: 28px;
  color: var(--m-text2);
}

/* ========== LOGIN MODAL ========== */
.login-modal {
  background: #0d0f14 !important;
  border: 1px solid rgba(255, 1, 0, 0.4) !important;
  border-radius: 20px !important;
  box-shadow:
    0 0 30px rgba(255, 1, 0, 0.1),
    0 0 60px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
}
.login-field {
  margin-bottom: 0;
}
.login-label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--m-text2);
  margin-bottom: 8px;
}
.login-sub {
  display: block;
  font-size: 12px;
  color: var(--m-text3);
  margin-top: -4px;
  margin-bottom: 10px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}
.login-field .form-control {
  background: rgba(20, 23, 34, 0.8) !important;
  border: 1px solid var(--border2) !important;
  color: #fff !important;
  border-radius: 12px !important;
  font-size: 14px;
  padding: 12px 16px;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.login-field .form-control:focus {
  border-color: rgba(255, 1, 0, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(255, 1, 0, 0.12) !important;
}
.login-field .form-control::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.login-btn {
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  border-radius: 12px !important;
  padding: 12px 24px !important;
  transition: all 0.25s !important;
}
.login-link {
  font-size: 12px !important;
  color: var(--m-text3) !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}
.login-link:hover {
  color: var(--accent) !important;
}
.login-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 20px 0;
}
.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.login-divider span {
  font-size: 11px;
  color: var(--m-text3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.login-signup-note {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 12px;
  color: var(--m-text3);
}
.login-signup-note strong {
  color: var(--accent);
}
.otp-input {
  width: 44px !important;
  height: 52px !important;
  font-family: var(--font-display) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  background: rgba(20, 23, 34, 0.8) !important;
  border: 1px solid var(--border2) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0 !important;
  text-align: center;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.otp-input:focus {
  border-color: rgba(255, 1, 0, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(255, 1, 0, 0.12) !important;
  outline: none;
}
.altcha-widget {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
}

/* ========== PRODUCT FORM ========== */
.product-form .form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--m-text2);
  margin-bottom: 6px;
}
.product-form .form-control,
.product-form .form-select {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  color: #fff !important;
  border-radius: 12px !important;
  font-size: 13px;
  padding: 10px 16px;
}
.product-form .form-control:focus,
.product-form .form-select:focus {
  border-color: rgba(255, 1, 0, 0.3) !important;
  box-shadow: 0 0 0 3px var(--accent-dim) !important;
}

/* ========== FOOTER ========== */
.footer {
  border-top: 1px solid var(--border) !important;
  background: var(--bg) !important;
  padding: 60px 32px 40px;
}
.footer h5 {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--m-text3);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer .nav-link {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 13px;
  padding: 0.15rem 0 !important;
  transition: color 0.2s;
}
.footer .nav-link:hover {
  color: var(--accent) !important;
}
.footer .logo img {
  filter: drop-shadow(0 0 8px var(--accent-glow));
}
.footer .fs-5.fw-bold {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.rogue-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.15);
  letter-spacing: 0.15em;
}

/* ========== FEEDBACKS ========== */
.rogue-marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}
.rogue-marquee-track {
  display: flex;
  gap: 16px;
  animation: marquee-scroll var(--marquee-speed, 35s) linear infinite;
  width: max-content;
}
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.rogue-marquee-card {
  flex-shrink: 0;
  width: 300px;
  padding: 20px;
  border-radius: 16px !important;
}

/* ========== FAQ ========== */
.text-block {
  padding: 3rem 0;
}
.faq .accordion-item {
  border-radius: 16px !important;
  margin-bottom: 8px;
}
.faq .accordion-button {
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none !important;
  border-radius: 16px !important;
}
.faq .accordion-button:not(.collapsed) {
  color: var(--accent) !important;
}
.faq .accordion-button::after {
  filter: invert(1);
}
.faq .accordion-body {
  color: var(--m-text2);
  font-size: 13px;
  border-radius: 0 0 16px 16px !important;
}

/* ========== TABLES ========== */
.table {
  --bs-table-bg: var(--card);
  --bs-table-color: var(--m-text2);
  --bs-table-border-color: var(--border);
  font-size: 13px;
}
.table thead th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--m-text3) !important;
}

/* ========== PAGINATION ========== */
.pagination .page-item .page-link {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  color: var(--m-text2) !important;
  font-size: 12px;
  border-radius: 10px !important;
  margin: 0 3px;
  transition: all 0.25s;
}
.pagination .page-item .page-link:hover {
  border-color: var(--accent) !important;
  color: var(--accent) !important;
  background: var(--accent-dim) !important;
}
.pagination .page-item.active .page-link {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #fff !important;
}

/* ========== GLASS MORPHISM — Apple-style frosted glass ========== */
.glass,
.products .card,
.feat-card,
.how-card,
.news-card,
.review-card,
.status-card,
.category-card,
.rogue-marquee-card,
.faq .accordion-item,
.faq .accordion-button,
.faq .accordion-body,
.sidebar,
.customer-layout .card,
.login-modal {
  background: rgba(11, 11, 13, 0.35) !important;
  border: 1px solid rgba(255, 1, 0, 0.25) !important;
  backdrop-filter: blur(20px) saturate(180%) brightness(1.1);
  -webkit-backdrop-filter: blur(20px) saturate(180%) brightness(1.1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 12px rgba(255, 1, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02);
  position: relative;
}
/* Subtle grain texture for glass distortion feel */
.glass::after,
.products .card::after,
.feat-card::after,
.how-card::after,
.news-card::after,
.review-card::after,
.status-card::after,
.category-card::after,
.rogue-marquee-card::after,
.sidebar::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.03;
  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)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  mix-blend-mode: overlay;
}
/* Top-edge highlight for glass depth */
.glass::before,
.feat-card::before,
.how-card::before,
.news-card::before,
.review-card::before,
.status-card::before,
.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

/* Hover glow intensify */
.products .card:hover,
.feat-card:hover,
.how-card:hover,
.news-card:hover,
.review-card:hover,
.status-card:hover,
.category-card:hover {
  border-color: rgba(255, 1, 0, 0.45) !important;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 0 24px rgba(255, 1, 0, 0.15),
    0 0 48px rgba(255, 1, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03) !important;
}
.form-control,
.form-select {
  background: rgba(11, 11, 13, 0.3) !important;
  border: 1px solid rgba(255, 1, 0, 0.35) !important;
  color: #fff !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    0 0 6px rgba(255, 1, 0, 0.12),
    inset 0 0 8px rgba(255, 1, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.form-control:focus,
.form-select:focus {
  border-color: rgba(255, 1, 0, 0.6) !important;
  box-shadow:
    0 0 10px rgba(255, 1, 0, 0.25),
    0 0 25px rgba(255, 1, 0, 0.1),
    inset 0 0 10px rgba(255, 1, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
}
.form-control::placeholder,
.form-select::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--m-text2);
}
.form-text {
  color: var(--m-text3);
  font-size: 11px;
}
.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

/* ALERTS / BADGES */
.alert-success {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.25);
  color: var(--green);
  border-radius: 12px;
}
.alert-danger {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.25);
  color: var(--red);
  border-radius: 12px;
}
.alert-info {
  background: var(--accent-dim);
  border-color: rgba(255, 1, 0, 0.15);
  color: var(--m-text2);
  border-radius: 12px;
}
.badge {
  border-radius: 99px !important;
}

/* STATUS */
.status-card {
  border-radius: 16px !important;
  padding: 20px;
}

/* BREADCRUMB */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
}
.breadcrumb-item a {
  color: var(--m-text3);
  font-size: 12px;
}
.breadcrumb-item.active {
  color: var(--m-text2);
  font-size: 12px;
}

/* SIDEBAR */
.sidebar {
  padding: 20px;
  border-radius: 16px !important;
}

/* ========== CUSTOMER DASHBOARD ========== */
.customer-layout {
  padding: 2rem 0;
}
.customer-layout h1,
.customer-layout h2,
.customer-layout h3 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
}
.customer-layout .card {
  border-radius: 16px !important;
}
.customer-layout .card-header {
  background: var(--card2) !important;
  border-bottom: 1px solid var(--border) !important;
  color: var(--m-text2) !important;
  font-size: 13px;
  font-weight: 600;
}

/* ========== CART ========== */
.cart-page {
  padding: 2rem 0;
}
.cart-page h1 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
}
.cart-page .cart-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.cart-page .cart-item .name {
  font-weight: 600;
  color: #fff;
}
.cart-page .cart-item .price {
  font-weight: 700;
  color: var(--accent);
}

/* ========== REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MISC */
.category-card {
  border-radius: 16px !important;
  padding: 20px;
  transition: all 0.3s;
}
.category-card:hover {
  transform: translateY(-3px);
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--m-text2);
  font-size: 13px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: all 0.25s;
}
.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.image-gallery img {
  border-radius: 16px !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero .content h1 {
    font-size: 2rem;
  }
  .stats {
    gap: 28px;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 576px) {
  .hero .content h1 {
    font-size: 1.6rem;
  }
  .stats {
    flex-direction: column;
    gap: 16px;
  }
  .section-title h2 {
    font-size: 1.3rem;
  }
}

/* ========== FEATURES ========== */
.feat-card {
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
  height: 100%;
}
.feat-card:hover {
  transform: translateY(-2px);
}
.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 1, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
  color: var(--accent);
}
.feat-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}
.feat-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.how-card {
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}
.how-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}
.how-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.how-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

/* ========== NEWS ========== */
.news-card {
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s;
}
.news-card:hover {
  transform: translateY(-3px);
}
.news-date {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 10px;
}
.news-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}
.news-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 14px;
}
.news-link {
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.news-link:hover {
  color: var(--accent2);
  text-shadow: 0 0 12px var(--accent-glow);
}

/* ========== LIVE STATUS PAGE ========== */
.status-live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.status-live-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: background 0.2s;
}
.status-live-cell:hover {
  background: rgba(255, 1, 0, 0.03);
}
.status-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-live-dot-stable {
  background: var(--green);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}
.status-live-dot-partial {
  background: var(--yellow);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}
.status-live-dot-offline {
  background: var(--red);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}
.status-live-name {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  flex: 1;
}
.status-live-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
}
.status-live-tag-stable {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
}
.status-live-tag-partial {
  background: rgba(245, 158, 11, 0.1);
  color: var(--yellow);
}
.status-live-tag-offline {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
}

/* ========== CATEGORY CARDS ========== */
.cat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.cat-card:hover {
  border-color: rgba(255, 1, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255, 1, 0, 0.08);
}
.cat-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--card3);
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.cat-card:hover .cat-img img {
  transform: scale(1.05);
}
.cat-img-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--m-text3);
}
.cat-body {
  padding: 20px;
}
.cat-body h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.cat-body p {
  font-size: 12px;
  color: var(--m-text2);
  line-height: 1.6;
  margin-bottom: 14px;
}
.cat-arrow {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.cat-card:hover .cat-arrow {
  text-shadow: 0 0 12px var(--accent-glow);
}

/* ========== REVIEW CARDS ========== */
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: all 0.3s;
}
.review-card:hover {
  border-color: rgba(255, 1, 0, 0.25);
  transform: translateY(-3px);
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  font-size: 12px;
  color: #ffd700;
}
.review-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.review-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--m-text3);
  letter-spacing: 0.05em;
}

/* ========== BACKGROUND CONSISTENCY ========== */
body {
  background: var(--bg) !important;
}
.components {
  background: transparent;
}
.components > section,
.components .container {
  background: transparent;
}

/* ========== NAVBAR PRODUCTS DROPDOWN (hover, non-clickable label) ========== */
.rogue-nav-dropdown {
  position: relative;
}
.rogue-nav-dropdown > .nav-link {
  cursor: default;
  user-select: none;
}
.rogue-nav-dropdown > .nav-link:hover,
.rogue-nav-dropdown:hover > .nav-link,
.rogue-nav-dropdown:focus-within > .nav-link {
  color: #fff !important;
  background: rgba(255, 1, 0, 0.08);
  box-shadow: inset 0 0 12px rgba(255, 1, 0, 0.06);
}
.rogue-nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1050;
  min-width: 12rem;
  margin: 0;
  background: rgba(11, 11, 13, 0.85);
  border: 1px solid rgba(255, 1, 0, 0.35);
  border-radius: 14px;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 16px rgba(255, 1, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 8px;
}
/* Invisible bridge so cursor can move into the menu without closing */
.rogue-nav-dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.rogue-nav-dropdown:hover > .dropdown-menu,
.rogue-nav-dropdown:focus-within > .dropdown-menu {
  display: block;
  pointer-events: auto;
}
.rogue-nav-dropdown .dropdown-item {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--m-text2);
  border-radius: 8px;
  padding: 9px 14px;
  transition: all 0.2s;
  cursor: pointer;
  pointer-events: auto;
  display: block;
  text-decoration: none;
}
.rogue-nav-dropdown .dropdown-item:hover,
.rogue-nav-dropdown .dropdown-item:focus {
  background: rgba(255, 1, 0, 0.1);
  color: #fff;
  box-shadow: inset 0 0 12px rgba(255, 1, 0, 0.06);
}
.rogue-nav-dropdown .dropdown-item:active {
  background: rgba(255, 1, 0, 0.2);
  color: #fff;
}
.rogue-nav-dropdown .dropdown-divider {
  border-top: 1px solid var(--border);
  margin: 6px 4px;
  opacity: 1;
}
.rogue-nav-dropdown .dropdown-toggle::after {
  vertical-align: 0.15em;
}
/* Collapsed mobile nav: still expand on tap via focus-within */
@media (max-width: 991.98px) {
  .rogue-nav-dropdown .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    margin-top: 4px;
  }
  .rogue-nav-dropdown .dropdown-menu::before {
    display: none;
  }
}

/* Brief highlight when scrolling to a group from the nav dropdown */
.rogue-group-highlight .card,
.rogue-group-highlight > .card {
  border-color: rgba(255, 1, 0, 0.7) !important;
  box-shadow:
    0 0 0 1px rgba(255, 1, 0, 0.35),
    0 0 28px rgba(255, 1, 0, 0.25) !important;
  transition:
    border-color 0.35s,
    box-shadow 0.35s;
}

/* ========== NEON CARD BORDERS — matches navbar glow ========== */
.status-card,
.category-card,
.cat-card,
.feat-card,
.how-card,
.news-card,
.review-card {
  border: 1px solid rgba(255, 1, 0, 0.5) !important;
  box-shadow:
    0 0 8px rgba(255, 1, 0, 0.3),
    0 0 20px rgba(255, 1, 0, 0.15),
    0 0 40px rgba(255, 1, 0, 0.05),
    inset 0 0 12px rgba(255, 1, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06) !important;
  animation: neonPulse 3s ease-in-out infinite;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
.status-card:hover,
.category-card:hover,
.cat-card:hover,
.feat-card:hover,
.how-card:hover,
.news-card:hover,
.review-card:hover {
  border-color: rgba(255, 1, 0, 0.8) !important;
  box-shadow:
    0 0 10px rgba(255, 1, 0, 0.5),
    0 0 30px rgba(255, 1, 0, 0.25),
    0 0 60px rgba(255, 1, 0, 0.1),
    inset 0 0 20px rgba(255, 1, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}