/* ==========================================================================
   DOOMCORE - Ultra-Premium Game Enhancement & Kernel Hardware Suite
   Aesthetic: Cold Obsidian, Dark Slate, Ice Cyan, Razor-Sharp Typography,
   Authentic ImGui styling, zero AI cliches, pure craftsmanship.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* Ultra-Refined Dark Slate & Obsidian Palette */
  --bg-deep: #06070a;
  --bg-darker: #090b10;
  --bg-card: rgba(14, 17, 24, 0.78);
  --bg-card-hover: rgba(20, 25, 36, 0.88);
  --bg-elevated: #131722;
  --bg-glass: rgba(16, 21, 30, 0.72);
  --bg-terminal: #07090e;
  
  /* Precision Borders (No cheap glowing colored outlines) */
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.1);
  --border-light: rgba(255, 255, 255, 0.16);
  --border-accent: rgba(0, 230, 168, 0.35);

  /* Tactical Ice Cyan & Cold Emerald */
  --accent-cyan: #00e6a8;
  --accent-cyan-hover: #1ee8c3;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-red: #ef4444;
  --accent-blue: #38bdf8;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Neutral Text Hierarchy */
  --text-pure: #ffffff;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dim: #475569;

  /* Standard Dimensions */
  --container-max: 1240px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --trans-fast: 0.14s ease;
  --trans-normal: 0.24s var(--ease-out);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: #020407;
  background-image: 
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(0, 255, 120, 0.08) 0%, rgba(0, 230, 168, 0.02) 40%, rgba(2, 4, 7, 0) 75%),
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  background-position: center top, center center, center center;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 14.5px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Main Background */
#doomLightningCanvas,
.doom-ambient-energy {
  display: none !important;
}

/* Ensure foreground content stays crisp and accessible over canvas */
.site-header,
main,
footer,
.support-chat-window,
.support-widget-bubble,
.mobile-menu-drawer,
.modal-backdrop {
  position: relative;
  z-index: 1;
}

/* Dr. Doom Electric Arcane Typography & Accent Glows */
.highlight-text, .site-logo-text .highlight {
  background: linear-gradient(135deg, #00e6a8 0%, #10b981 45%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 28px rgba(0, 230, 168, 0.45);
  position: relative;
}

.dshero-title {
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9);
}

.dshero-window {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 230, 168, 0.08) !important;
}

body.has-overlay {
  overflow: hidden;
}

/* Custom Sleek Scrollbar */
::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #19202c;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Typography Base */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-pure);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--trans-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
  outline: none;
}

input, select, textarea {
  font-family: inherit;
  color: inherit;
  background: transparent;
  border: none;
  outline: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.u-container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Kickers & Section Headers */
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-cyan);
  margin-bottom: 12px;
  background: rgba(0, 230, 168, 0.08);
  border: 1px solid rgba(0, 230, 168, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 48px auto;
}

.section-head h2 {
  font-size: 2.35rem;
  margin-bottom: 14px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* High-Contrast Crisp Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  transition: all var(--trans-normal);
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: var(--accent-cyan);
  color: #05080c;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
  background: var(--accent-cyan-hover);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
  color: #05080c;
}

.btn-secondary {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  color: var(--text-pure);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  transform: translateY(-1px);
}

.btn-ghost {
  color: var(--text-secondary);
  background: transparent;
  padding: 8px 12px;
}

.btn-ghost:hover {
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.05);
}

.btn-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
  border-radius: 6px;
}

/* Tactical Status Badges */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-badge.undetected {
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.status-badge.testing {
  background: rgba(245, 158, 11, 0.12);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(6, 7, 10, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--trans-normal);
}

.site-header.is-scrolled {
  padding: 10px 32px;
  background: rgba(6, 7, 10, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.header-lead {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
}

.site-logo-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity var(--trans-fast);
}

.site-logo:hover .site-logo-img {
  opacity: 0.9;
}

.site-logo span.highlight {
  color: var(--accent-cyan);
}

.site-logo-text {
  display: inline-flex;
  align-items: center;
}

/* Online Members Badge */
.online-now {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  color: var(--text-secondary);
}

.online-now-count {
  font-weight: 700;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
}

/* Nav Links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--trans-fast);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover {
  color: var(--text-pure);
  background: rgba(255, 255, 255, 0.04);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.nav-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 540px;
  background: rgba(10, 13, 18, 0.98);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--trans-normal);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
}

.nav-mega-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all var(--trans-fast);
}

.nav-mega-item:hover {
  background: rgba(0, 230, 168, 0.06);
  border-color: rgba(0, 230, 168, 0.2);
  transform: translateX(2px);
}

.nav-mega-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(0, 230, 168, 0.12);
  color: var(--accent-cyan);
}

.nav-mega-name {
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--text-pure);
  margin-left: 8px;
}

.nav-mega-arrow {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}


/* Search Box */
.header-search {
  position: relative;
  display: flex;
  align-items: center;
}

.header-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  transition: all var(--trans-fast);
}

.header-search-btn:hover, .header-search.is-open .header-search-btn {
  color: var(--text-pure);
  border-color: var(--accent-cyan);
}

.header-search-input {
  width: 0;
  opacity: 0;
  padding: 0;
  height: 36px;
  background: #0c1017;
  border: 1px solid var(--accent-cyan);
  border-radius: 6px;
  color: var(--text-pure);
  font-size: 0.82rem;
  transition: all var(--trans-normal);
  position: absolute;
  right: 40px;
  pointer-events: none;
}

.header-search.is-open .header-search-input {
  width: 200px;
  opacity: 1;
  padding: 0 12px;
  pointer-events: auto;
}

/* Currency Menu */
.prefs-menu {
  position: relative;
}

.prefs-button {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  transition: all var(--trans-fast);
}

.prefs-button:hover {
  border-color: var(--border-light);
  color: var(--text-pure);
}

.prefs-panel {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 6px;
  width: 230px;
  background: #0c1017;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
  display: none;
  z-index: 110;
}

.prefs-panel.is-open {
  display: block;
}

.prefs-colhead {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.currency-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all var(--trans-fast);
}

.currency-option:hover, .currency-option.is-active {
  background: rgba(0, 230, 168, 0.1);
  color: var(--accent-cyan);
}

/* Cart Button */
.cart-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
  transition: all var(--trans-fast);
}

.cart-button:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: #030e0a;
  font-size: 0.68rem;
  font-weight: 800;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu Button */
.menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  color: var(--text-pure);
}

/* ==========================================================================
   HERO SECTION & TACTICAL STAGE
   ========================================================================== */

.dshero {
  padding-top: 130px;
  padding-bottom: 70px;
  text-align: center;
  position: relative;
}

.dshero-content {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.dshero-reviews {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  margin-bottom: 20px;
  transition: all var(--trans-fast);
}

.dshero-reviews:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-light);
}

.rating-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.dshero-reviews-text {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.dshero-reviews-text strong {
  color: var(--text-pure);
}

.dshero-title {
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 18px;
  color: var(--text-pure);
}

.dshero-title .highlight-text {
  color: var(--accent-cyan);
}

.dshero-lede {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 30px auto;
}

.dshero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}

/* Tactical Stage Window */
.dshero-stage {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  z-index: 2;
}

.dshero-window {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #090c12;
  border: 1px solid var(--border-medium);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  aspect-ratio: 16 / 9;
}

.dshero-window-header {
  height: 38px;
  background: #0d1118;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Stage Game Selector Pills */
.hero-game-selector {
  display: flex;
  gap: 4px;
}

.hero-game-btn {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--trans-fast);
}

.hero-game-btn:hover, .hero-game-btn.is-active {
  background: rgba(0, 230, 168, 0.15);
  color: var(--accent-cyan);
}

/* Simulated Gameplay Screen & Playable Mini-Game Canvas */
.dshero-screen-canvas {
  width: 100%;
  height: calc(100% - 38px);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  cursor: crosshair;
  user-select: none;
}

#heroGameCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.game-hud-overlay {
  position: absolute;
  top: 10px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.game-hud-stats {
  display: flex;
  gap: 12px;
  background: rgba(6, 8, 12, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 4px 10px;
  color: var(--text-secondary);
}

.game-hud-stats span strong {
  color: var(--accent-cyan);
}

.game-instruction-pill {
  background: rgba(0, 230, 168, 0.12);
  border: 1px solid rgba(0, 230, 168, 0.3);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.game-hitmarker {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.game-hitmarker.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.2);
}

.game-hitmarker::before, .game-hitmarker::after {
  content: '';
  position: absolute;
  background: #ff334b;
}
.game-hitmarker::before {
  top: 0; left: 8px; width: 2px; height: 18px; transform: rotate(45deg);
}
.game-hitmarker::after {
  top: 0; left: 8px; width: 2px; height: 18px; transform: rotate(-45deg);
}

.damage-number-popup {
  position: absolute;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 0.85rem;
  color: #00e6a8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  pointer-events: none;
  z-index: 12;
  animation: floatUpFade 0.6s ease-out forwards;
}

@keyframes floatUpFade {
  0% { opacity: 1; transform: translate(-50%, 0) scale(1.05); }
  100% { opacity: 0; transform: translate(-50%, -28px) scale(0.95); }
}
  overflow: hidden;
  transition: background-image 0.3s ease;
}

/* Canvas ESP Layers */
.esp-target-box {
  position: absolute;
  border: 1.5px solid var(--accent-cyan);
  background: rgba(0, 230, 168, 0.04);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.esp-health-bar {
  position: absolute;
  left: -5px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #ef4444;
  border-radius: 1px;
}

.esp-health-fill {
  background: var(--accent-cyan);
  width: 100%;
  height: 85%;
  position: absolute;
  bottom: 0;
}

.esp-tag {
  position: absolute;
  top: -20px;
  left: 0;
  background: rgba(6, 8, 12, 0.9);
  border: 1px solid rgba(0, 230, 168, 0.3);
  padding: 1px 5px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: #fff;
  white-space: nowrap;
}

/* Dynamic FOV Circle */
.canvas-fov-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 230, 168, 0.4);
  pointer-events: none;
  transition: width 0.1s ease, height 0.1s ease;
}

.canvas-crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  pointer-events: none;
}
.canvas-crosshair::before, .canvas-crosshair::after {
  content: '';
  position: absolute;
  background: var(--accent-cyan);
}
.canvas-crosshair::before { top: 3px; left: -6px; width: 20px; height: 2px; }
.canvas-crosshair::after { top: -6px; left: 3px; width: 2px; height: 20px; }

/* Radar Minimap */
.esp-radar-minimap {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(9, 12, 18, 0.85);
  border: 1px solid rgba(0, 230, 168, 0.35);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.radar-sweep {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(0, 230, 168, 0.25) 50deg, transparent 55deg);
  animation: radarRotate 3s linear infinite;
}

@keyframes radarRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.radar-blip {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ef4444;
}

.radar-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-cyan);
}

/* Draggable Dear ImGui Style Overlay Menu */
.dshero-ovl {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 350px;
  background: rgba(11, 14, 20, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
  z-index: 10;
  text-align: left;
  user-select: none;
}

.dshero-ovl.is-collapsed .dshero-ovl-content {
  display: none;
}

.dshero-ovl-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #141923;
  border-bottom: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  cursor: grab;
}

.dshero-ovl-topbar.is-grabbing {
  cursor: grabbing;
}

.dshero-ovl-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.dshero-ovl-toggle-btn {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 6px;
  border-radius: 3px;
}

.dshero-ovl-toggle-btn:hover {
  color: #fff;
}

.dshero-menu-tabs {
  display: flex;
  padding: 6px 8px;
  gap: 3px;
  border-bottom: 1px solid var(--border-subtle);
  background: #0a0d13;
}

.menu-tab-btn {
  flex: 1;
  padding: 5px 2px;
  font-size: 0.7rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-muted);
  border-radius: 4px;
  text-align: center;
  transition: all var(--trans-fast);
}

.menu-tab-btn:hover, .menu-tab-btn.is-active {
  color: var(--accent-cyan);
  background: rgba(0, 230, 168, 0.1);
}

.dshero-ovl-content {
  padding: 12px;
  max-height: 250px;
  overflow-y: auto;
}

.menu-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.78rem;
  color: var(--text-secondary);
}

/* ImGui Custom Toggle Switch */
.menu-toggle-switch {
  position: relative;
  width: 32px;
  height: 18px;
  background: #1e2430;
  border-radius: 9px;
  cursor: pointer;
  transition: background var(--trans-fast);
}

.menu-toggle-switch.is-on {
  background: var(--accent-cyan);
}

.menu-toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--trans-fast);
}

.menu-toggle-switch.is-on::after {
  transform: translateX(14px);
  background: #030e0a;
}

.menu-slider-group {
  margin-bottom: 10px;
}

.menu-slider-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.menu-slider-val {
  color: var(--accent-cyan);
  font-family: var(--font-mono);
}

.menu-slider-input {
  width: 100%;
  -webkit-appearance: none;
  height: 3px;
  border-radius: 2px;
  background: #1e2430;
  outline: none;
}

.menu-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
}

/* Keybind Binder Button */
.keybind-btn {
  padding: 2px 6px;
  background: #161c27;
  border: 1px solid var(--border-subtle);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--accent-cyan);
}
.keybind-btn.is-binding {
  background: var(--accent-amber);
  color: #000;
  animation: pulseBinding 1s infinite;
}

@keyframes pulseBinding {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ==========================================================================
   INTERACTIVE AIMBOT SIMULATOR PLAYGROUND
   ========================================================================== */

.aimbot-playground-section {
  padding: 80px 0;
  position: relative;
}

.playground-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 20px;
}

.playground-canvas-box {
  background: #070a0f;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  height: 340px;
  position: relative;
  overflow: hidden;
  cursor: crosshair;
}

.playground-dummy {
  position: absolute;
  width: 50px;
  height: 120px;
  border: 1.5px solid var(--accent-cyan);
  background: rgba(0, 230, 168, 0.05);
  border-radius: 4px;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.05s linear;
}

.dummy-head {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--accent-cyan);
  margin-bottom: 6px;
}

.playground-crosshair {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 1.5px solid #ef4444;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.15s ease-out, top 0.15s ease-out;
}

.playground-controls {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ==========================================================================
   HARDWARE MASKING LIVE SIMULATOR (DOOMHAWID)
   ========================================================================== */

.spoofer-sim-section {
  padding: 80px 0;
  position: relative;
}

.spoofer-sim-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.spoofer-terminal {
  background: var(--bg-terminal);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-secondary);
  height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.terminal-line {
  line-height: 1.4;
}
.terminal-line.success { color: #10b981; }
.terminal-line.info { color: var(--accent-cyan); }
.terminal-line.warn { color: var(--accent-amber); }

.spoofer-serial-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.serial-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xs);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.serial-name {
  color: var(--text-muted);
}
.serial-val {
  color: var(--text-pure);
  font-weight: 600;
}

/* ==========================================================================
   GAME MARQUEE TICKER (CLEAN & BORDERLESS - ONLY REAL GAME LOGOS)
   ========================================================================== */

.game-marquee-section {
  padding: 22px 0 26px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  border: none;
}

.game-marquee-kicker {
  text-align: center;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin: 0 0 16px 0;
}

.game-marquee-viewport {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.game-marquee-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
  padding: 6px 0;
}

.game-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.game-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  opacity: 0.85;
  transition: all var(--trans-fast);
  user-select: none;
  flex-shrink: 0;
  text-decoration: none;
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: pointer;
  padding: 2px 4px;
}

.game-marquee-item:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.game-marquee-item img {
  height: 28px;
  width: auto;
  max-width: 145px;
  object-fit: contain;
  display: block;
  filter: brightness(0.95);
  transition: filter var(--trans-fast), transform var(--trans-fast);
}

.game-marquee-item:hover img {
  filter: brightness(1.25) drop-shadow(0 0 14px rgba(0, 230, 168, 0.6));
}

.game-marquee-item.is-coming-soon {
  opacity: 0.65;
  cursor: default;
}

.game-marquee-item.is-coming-soon:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.game-marquee-item.is-coming-soon img {
  filter: grayscale(25%) brightness(0.85);
}

.marquee-soon-badge {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  text-transform: uppercase;
  display: inline-block;
  line-height: 1.2;
}

/* ==========================================================================
   UNDETECTABILITY & COMPARISON
   ========================================================================== */

.undetected {
  padding: 90px 0;
}

.undetected-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.undetected-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.undetected-screen {
  border-radius: var(--radius-sm);
  background: #07090e;
  border: 1px solid var(--border-subtle);
  padding: 16px;
  margin-bottom: 16px;
  min-height: 190px;
  position: relative;
  overflow: hidden;
}

.scan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.scan-head-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-pure);
}

.scan-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.75rem;
  font-family: var(--font-mono);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
}

.scan-row-label {
  color: var(--text-secondary);
}

.scan-status.is-clear {
  color: #10b981;
  font-weight: 600;
}

.scan-status.is-scanning {
  color: var(--accent-cyan);
}

.scan-spinner {
  display: inline-block;
  width: 9px;
  height: 9px;
  border: 1.5px solid var(--accent-cyan);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Compare Slider */
.undetected-screen.compare {
  padding: 0;
  cursor: ew-resize;
  user-select: none;
  height: 190px;
}

.compare-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.compare-chip {
  position: absolute;
  bottom: 8px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-family: var(--font-mono);
  font-weight: 700;
  z-index: 5;
}

.compare-chip.is-before {
  left: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: #94a3b8;
}

.compare-chip.is-after {
  right: 8px;
  background: rgba(0, 230, 168, 0.2);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 230, 168, 0.4);
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ffffff;
  z-index: 6;
}

.compare-handle {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #ffffff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 7;
}

.undetected-caption {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.undetected-caption strong {
  color: var(--text-pure);
}

/* Universal Compatibility Row */
.played-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

.played-row-label {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-pure);
}

.played-row-list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.played-row-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   PRODUCT CATALOG & STORE
   ========================================================================== */

.store-section {
  padding: 90px 0;
}

.store-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.store-filter-btn {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  transition: all var(--trans-fast);
}

.store-filter-btn:hover, .store-filter-btn.is-active {
  background: rgba(0, 230, 168, 0.1);
  border-color: rgba(0, 230, 168, 0.35);
  color: var(--accent-cyan);
}

/* NobleCheats Inspired Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
  gap: 24px;
  justify-content: start;
}

.product-card {
  position: relative;
  background: #0b0f19;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 340px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 230, 168, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

.product-card.is-coming-soon {
  border-color: rgba(245, 158, 11, 0.2);
  background: #0c0e16;
}

.product-card.is-coming-soon:hover {
  border-color: rgba(245, 158, 11, 0.4);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
}

/* Card Header Visual (1:1 Frame Compatible) */
.product-card-media {
  aspect-ratio: 1 / 1;
  max-height: 240px;
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
  background: #05070c;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img {
  transform: scale(1.06);
}

.product-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.1) 0%, rgba(11, 15, 25, 0.95) 100%);
  pointer-events: none;
}

/* Floating Badges */
.product-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(8, 12, 20, 0.85);
  border: 1px solid rgba(0, 230, 168, 0.35);
  padding: 3px 9px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--accent-cyan);
  z-index: 3;
  backdrop-filter: blur(8px);
}

.product-card-status {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  backdrop-filter: blur(8px);
}

/* Card Body */
.product-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: #0b0f19;
}

.product-card-title {
  font-size: 1.22rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  transition: color 0.15s ease;
}

.product-card:hover .product-card-title {
  color: var(--accent-cyan);
}

.product-card-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Feature Bullets Pill Container */
.product-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  flex-grow: 1;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 6px 10px;
  border-radius: 6px;
}

/* NobleCheats Style Duration Tabs */
.product-tier-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  background: #060910;
  padding: 4px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 16px;
}

.tier-btn {
  padding: 6px 0;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-align: center;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tier-btn:hover {
  color: #fff;
}

.tier-btn.is-active {
  background: #151d2c;
  color: var(--accent-cyan);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 230, 168, 0.25);
}

/* Card Bottom Action Bar */
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-price-box {
  display: flex;
  flex-direction: column;
}

.product-price-label {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-price-val {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-mono);
}

.product-btn-group {
  display: flex;
  gap: 8px;
}

.product-btn-group .btn-primary {
  flex-grow: 1;
  padding: 9px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--accent-cyan);
  color: #05080c;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.product-btn-group .btn-primary:hover {
  background: var(--accent-cyan-hover);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
  transform: translateY(-1px);
}

.product-btn-group .btn-secondary {
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-btn-group .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* ==========================================================================
   LIVE PURCHASE TOAST NOTIFICATIONS
   ========================================================================== */

.toast-feed-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 95;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast-item {
  background: rgba(12, 16, 24, 0.94);
  border: 1px solid rgba(0, 230, 168, 0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  max-width: 320px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  animation: slideToast 0.4s var(--ease-out);
}

@keyframes slideToast {
  from { transform: translateX(-30px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast-icon {
  color: var(--accent-cyan);
}

/* ==========================================================================
   MODALS, CART DRAWER & PORTALS
   ========================================================================== */

.cart-overlay, .modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-normal);
}

.cart-overlay.is-open, .modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 92vw;
  background: #090c12;
  border-left: 1px solid var(--border-medium);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.9);
  z-index: 210;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--trans-normal);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border-subtle);
}

.cart-close-btn {
  font-size: 1.4rem;
  color: var(--text-muted);
}
.cart-close-btn:hover { color: #fff; }

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item-card {
  display: flex;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 10px;
}

.cart-item-img {
  width: 58px;
  height: 58px;
  border-radius: 4px;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #fff;
}

.cart-item-tier {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent-cyan);
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #07090e;
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
}

.cart-footer {
  padding: 18px 22px;
  border-top: 1px solid var(--border-subtle);
  background: #080a0f;
}

.cart-subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.modal-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  background: #0a0d14;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
  z-index: 220;
  width: 500px;
  max-width: 92vw;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--trans-normal);
}

.modal-window.is-open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   SUPPORT BUBBLE & FOOTER
   ========================================================================== */

.support-widget-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: #05080c;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  z-index: 100;
  transition: transform var(--trans-fast);
}

.support-widget-bubble:hover {
  transform: scale(1.06);
}

.support-chat-window {
  position: fixed;
  bottom: 85px;
  right: 24px;
  width: 340px;
  max-width: 90vw;
  background: #0a0d14;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
  z-index: 100;
  display: none;
  flex-direction: column;
}

.support-chat-window.is-open {
  display: flex;
}

.chat-head {
  padding: 12px 16px;
  background: #11151f;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-body {
  height: 240px;
  padding: 12px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
}

.chat-msg {
  padding: 7px 11px;
  border-radius: 6px;
  max-width: 85%;
  line-height: 1.4;
}

.chat-msg.bot {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  align-self: flex-start;
}

.chat-msg.user {
  background: var(--accent-cyan);
  color: #030e0a;
  align-self: flex-end;
  font-weight: 600;
}

.site-footer {
  background: #040508;
  border-top: 1px solid var(--border-subtle);
  padding: 70px 0 28px 0;
}

.foot-cols {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 48px;
}

.foot-col h3 {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-pure);
  margin-bottom: 16px;
}

.flink {
  display: block;
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.flink:hover { color: var(--accent-cyan); }

/* Responsive Media Queries */
@media (max-width: 960px) {
  .undetected-grid, .spoofer-sim-card, .playground-container {
    grid-template-columns: 1fr;
  }
  .dshero-title {
    font-size: 2.7rem;
  }
  .foot-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 18px;
  }
  .site-nav, .header-search, .prefs-menu {
    display: none;
  }
  .menu-button {
    display: flex;
  }
  .dshero {
    padding-top: 100px;
  }
  .dshero-title {
    font-size: 2.1rem;
  }
  .dshero-cta-group {
    flex-direction: column;
    gap: 10px;
  }
  .played-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .played-row-list {
    flex-wrap: wrap;
    gap: 10px;
  }
  .foot-cols {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   DEDICATED PRODUCT DETAIL PAGE STYLES
   ========================================================================== */
/* ==========================================================================
   NOBLECHEATS & ARCTICCHEATS RECREATED DESIGN SYSTEM (Screenshots 1-6)
   ========================================================================== */

/* --- Screenshot 1: Noble Category / Game Cards --- */
.noble-store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
  gap: 28px;
  justify-content: start;
}

.noble-category-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #080c14;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 340px;
  height: auto;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.noble-category-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-cyan);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 230, 168, 0.25);
}

.noble-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  z-index: 3;
}

.noble-price-pill {
  align-self: flex-end;
  background: rgba(8, 12, 18, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 4;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
  transition: all 0.25s ease;
}

.noble-category-card:hover .noble-price-pill {
  background: var(--accent-cyan);
  color: #05080c;
  border-color: var(--accent-cyan);
}

.noble-card-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.noble-category-card:hover .noble-card-bg-img {
  transform: scale(1.05);
}

.noble-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,12,18,0.15) 0%, transparent 40%, rgba(8,12,18,0.4) 100%);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.noble-category-card:hover .noble-card-gradient {
  opacity: 0.7;
}

/* --- Screenshot 2: Category Editions Grid --- */
.noble-category-view-box {
  background: #080c13;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 36px;
  margin-top: 10px;
}

.noble-view-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 30px;
}

.noble-view-icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.noble-view-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.noble-editions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 340px));
  gap: 24px;
  justify-content: start;
}

.noble-edition-card {
  background: #0b1018;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 340px;
  transition: all var(--trans-fast);
}

.noble-edition-card:hover {
  border-color: rgba(0, 230, 168, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.noble-edition-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: 190px;
  max-height: 200px;
  border-radius: 8px;
  overflow: hidden;
  background: #05080c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.noble-edition-box-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.noble-edition-card:hover .noble-edition-box-img {
  transform: scale(1.05);
}

.noble-edition-status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(8, 12, 18, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 230, 168, 0.3);
  color: var(--accent-cyan);
  font-size: 0.7rem;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.noble-edition-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.noble-edition-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.noble-edition-price {
  text-align: right;
}

.noble-price-from {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.noble-price-value {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
  font-family: var(--font-mono);
}

.noble-edition-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #111824;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: all var(--trans-fast);
}

.noble-edition-card:hover .noble-edition-buy-btn {
  background: var(--accent-cyan);
  color: #05080c;
  border-color: var(--accent-cyan);
}

/* --- Screenshot 3: Arctic Product Detail Top Showcase --- */
/* ==========================================================================
   PRODUCT DETAIL & DIRECT PURCHASE INTERFACE (SHARP / TECHNICAL AESTHETIC)
   ========================================================================== */

/* Breadcrumb */
.prod-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.prod-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.prod-breadcrumb a:hover {
  color: var(--accent-cyan);
}

.prod-breadcrumb-current {
  color: #ffffff;
  font-weight: 700;
}

/* 2-Column Showcase Top Grid */
.prod-detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 40px;
}

/* Left Column: Media Preview & Specs */
.prod-media-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.prod-media-frame {
  position: relative;
  background: #040609;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 16 / 10;
  width: 100%;
  max-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-media-frame img,
.prod-media-img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.prod-media-frame video {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: contain;
  background: #000;
  display: block;
}

.prod-media-frame iframe {
  width: 100%;
  height: 100%;
  max-height: 380px;
  border: 0;
  display: block;
}

/* Thumbnails Strip */
.prod-thumb-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 6px 0;
  align-items: center;
}

.prod-thumb-btn {
  width: 76px;
  height: 50px;
  min-width: 76px;
  max-width: 76px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080c14;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--trans-fast);
}

.prod-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prod-thumb-btn.is-active,
.prod-thumb-btn:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 230, 168, 0.25);
}

.prod-thumb-btn.is-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 230, 168, 0.08);
  border-color: rgba(0, 230, 168, 0.3);
}

.prod-thumb-btn.is-video:hover,
.prod-thumb-btn.is-video.is-active {
  background: rgba(0, 230, 168, 0.18);
  border-color: var(--accent-cyan);
}

/* Hardware & Compatibility Specs Box */
.prod-specs-card {
  background: #080c14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 16px 18px;
  margin-top: 4px;
}

.prod-specs-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.prod-specs-head h3 {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.prod-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
}

.prod-spec-item {
  display: flex;
  flex-direction: column;
}

.prod-spec-label {
  font-size: 0.68rem;
  color: #64748b;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.prod-spec-val {
  font-size: 0.82rem;
  color: #e2e8f0;
  font-weight: 600;
}

/* Right Column: Buy Panel */
.prod-buy-panel {
  display: flex;
  flex-direction: column;
}

.prod-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.prod-category-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.prod-title {
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.15;
  margin: 2px 0 6px 0;
}

.prod-rating-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.prod-rating-score {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.prod-stars {
  display: inline-flex;
  gap: 2px;
  color: #fbbf24;
}

.prod-reviews-link {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-family: var(--font-mono);
}

.prod-stock-pill {
  color: #10b981;
  font-size: 0.74rem;
  font-weight: 600;
}

.prod-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 6px 0 16px 0;
}

/* Access Duration Selector Box */
.prod-duration-container {
  background: #080c14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.prod-duration-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.prod-currency-hint {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.prod-tier-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prod-tier-card {
  background: #05070b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  padding: 9px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: border-color var(--trans-fast), background var(--trans-fast);
}

.prod-tier-card:hover {
  background: #0a0e16;
  border-color: rgba(255, 255, 255, 0.2);
}

.prod-tier-card.is-active {
  background: rgba(0, 230, 168, 0.04);
  border-color: var(--accent-cyan);
}

.prod-tier-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prod-tier-radio {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  transition: all var(--trans-fast);
}

.prod-tier-card.is-active .prod-tier-radio {
  border-color: var(--accent-cyan);
  background: var(--accent-cyan);
}

.prod-tier-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.prod-badge-pop {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 800;
  color: #00e6a8;
  background: rgba(0, 230, 168, 0.1);
  border: 1px solid rgba(0, 230, 168, 0.25);
  padding: 1px 6px;
  border-radius: 2px;
}

.prod-tier-right {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.prod-tier-price {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.prod-tier-card.is-active .prod-tier-price {
  color: var(--accent-cyan);
}

.prod-tier-rate {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: #64748b;
}

/* Calculated Big Price Display */
.prod-price-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
}

.prod-price-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.prod-big-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  font-family: var(--font-mono);
}

.prod-instant-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 4px 10px;
  border-radius: 2px;
}

/* Action Buttons */
.prod-actions-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.prod-direct-buy-btn {
  flex: 1.3;
  padding: 12px 18px;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: 2px;
  text-align: center;
}

.prod-add-cart-btn {
  flex: 1;
  padding: 12px 14px;
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.prod-guarantee-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}

/* Included Feature Checklist */
.prod-quick-features {
  background: #080c14;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 12px 16px;
}

.prod-quick-head {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.prod-quick-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prod-quick-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #cbd5e1;
}

/* --- Section Blocks & Feature Modules --- */
.prod-section-block {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.prod-section-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.prod-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.prod-feature-card {
  background: #080c14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 18px 20px;
}

.prod-feature-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.prod-feature-title-row h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.prod-feature-sub {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.prod-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.prod-bullet-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* FAQ List */
.prod-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Reviews Summary Card */
.prod-review-summary-card {
  background: #080c14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 16px;
}

.prod-score-box {
  text-align: center;
  min-width: 100px;
}

.prod-huge-score {
  font-size: 2.4rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
}

.prod-bars-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.prod-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: #94a3b8;
  font-family: var(--font-mono);
}

.prod-bar-row .bar-track {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.prod-bar-row .bar-fill {
  height: 100%;
  background: var(--accent-cyan);
  border-radius: 2px;
}

.prod-summary-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  padding-left: 20px;
}

/* Filter buttons */
.prod-filter-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.prod-filter-btn {
  background: #080c14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  color: #94a3b8;
  font-size: 0.74rem;
  font-family: var(--font-mono);
  font-weight: 600;
  padding: 5px 12px;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.prod-filter-btn.is-active,
.prod-filter-btn:hover {
  border-color: var(--accent-cyan);
  color: #ffffff;
  background: rgba(0, 230, 168, 0.06);
}

/* Reviews Grid */
.prod-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}

/* Recommendations Grid */
.prod-more-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.prod-more-card {
  background: #080c14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--trans-fast), transform var(--trans-fast);
}

.prod-more-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.prod-more-media {
  height: 130px;
  background: #000000;
  overflow: hidden;
}

.prod-more-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prod-more-body {
  padding: 14px 16px;
}

/* Responsive */
@media (max-width: 900px) {
  .prod-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .prod-review-summary-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .prod-summary-badges {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 10px;
  }
}

/* ==========================================================================
   SENTINEL CYBER STATUS HUB - 2026 REDESIGN
   ========================================================================== */

.sentinel-hero {
  position: relative;
  padding: 40px 0 20px;
  text-align: center;
}

.sentinel-badge-beacon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 230, 168, 0.08);
  border: 1px solid rgba(0, 230, 168, 0.35);
  padding: 8px 18px;
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--accent-cyan);
  box-shadow: 0 0 24px rgba(0, 230, 168, 0.2);
  margin-bottom: 20px;
}

.sentinel-beacon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulseDot 1.4s infinite;
}

.sentinel-stats-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0 40px;
}

.sentinel-stat-box {
  background: rgba(8, 12, 18, 0.75);
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all var(--trans-fast);
}

.sentinel-stat-box:hover {
  border-color: rgba(0, 230, 168, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sentinel-stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
}

/* ==========================================================================
   AUTHENTIC 90-DAY BUILD STATUS & UPTIME MONITOR (Screenshot Recreated)
   ========================================================================== */

.status-filter-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.status-filter-pill {
  background: #090e17;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #8b98a5;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.02em;
}

.status-filter-pill:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
  background: #101622;
}

.status-filter-pill.is-active {
  color: #000000;
  background: var(--accent-cyan, #00e6a8);
  border-color: var(--accent-cyan, #00e6a8);
  font-weight: 800;
  box-shadow: 0 0 14px rgba(0, 230, 168, 0.35);
}

.build-status-wrapper {
  max-width: 900px;
  margin: 0 auto 28px;
  box-sizing: border-box;
}

.build-status-top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-mono, monospace);
  font-size: 0.74rem;
  color: #7d8b9e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
}

.build-status-top-header .right-text {
  font-size: 0.72rem;
  color: #64748b;
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
  display: flex;
  align-items: center;
  gap: 6px;
}

.build-status-group {
  margin-bottom: 16px;
}

.build-status-group:first-child .build-status-group-title {
  margin-top: 0;
}

.build-status-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.build-status-group-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.build-status-cat-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.6rem;
  color: #7d8b9e;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1px 6px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.build-status-group-count {
  font-family: var(--font-mono, monospace);
  font-size: 0.64rem;
  font-weight: 700;
  color: #00e6a8;
  background: rgba(0, 230, 168, 0.07);
  border: 1px solid rgba(0, 230, 168, 0.22);
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.build-status-group-count .pulse-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00e6a8;
  box-shadow: 0 0 6px #00e6a8;
}

.build-status-card {
  background: #080c14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
  margin: 0;
  padding: 0;
}

.build-status-row {
  padding: 9px 14px 7px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: transparent;
  transition: background 0.15s ease;
  margin: 0;
  display: block;
}

.build-status-row:last-child {
  border-bottom: none;
}

.build-status-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.build-status-row-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 5px 0;
  padding: 0;
  line-height: 1.1;
  gap: 10px;
}

.build-status-row-left {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.build-status-row-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.build-status-row-dot.dot-green {
  background: #00e6a8;
  box-shadow: 0 0 6px rgba(0, 230, 168, 0.8);
}

.build-status-row-dot.dot-blue {
  background: #38bdf8;
  box-shadow: 0 0 6px rgba(56, 189, 248, 0.8);
}

.build-status-row-dot.dot-orange {
  background: #f59e0b;
  box-shadow: 0 0 6px rgba(245, 158, 11, 0.8);
}

.build-status-row-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.build-status-row-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.6rem;
  color: #64748b;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1px 5px;
  border-radius: 3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.build-status-row-badges {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.build-badge-auto {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-mono, monospace);
  font-size: 0.62rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

.build-badge-auto svg {
  width: 9px;
  height: 9px;
  min-width: 9px;
  fill: currentColor;
  flex-shrink: 0;
}

.build-badge-auto .info-circle {
  opacity: 0.7;
  font-size: 0.65rem;
  cursor: help;
  margin-left: 1px;
}

.build-badge-auto .info-circle:hover {
  opacity: 1;
  color: #ffffff;
}

.build-badge-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 4px;
  line-height: 1;
}

.build-badge-status svg {
  width: 10px;
  height: 10px;
  min-width: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.build-badge-status.undetected {
  color: #00e6a8;
  background: rgba(0, 230, 168, 0.08);
  border: 1px solid rgba(0, 230, 168, 0.25);
}

.build-badge-status.updating {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.build-badge-status.testing {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

/* 10-Day Bars Grid */
.build-bars-timeline {
  display: flex;
  gap: 4px;
  align-items: center;
  height: 15px;
  margin: 0 0 4px 0;
  padding: 0;
  width: 100%;
}

.build-bar-tick {
  flex: 1;
  height: 100%;
  min-width: 8px;
  border-radius: 3px;
  cursor: pointer;
  margin: 0;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.build-bar-tick:hover {
  transform: scaleY(1.25);
  filter: brightness(1.4);
  z-index: 5;
}

.build-bar-tick.tick-green {
  background: #00e6a8;
}

.build-bar-tick.tick-cyan {
  background: #38bdf8;
}

.build-bar-tick.tick-orange {
  background: #f59e0b;
}

.build-bar-tick.tick-dark {
  background: #1e293b;
}

/* Row Footer */
.build-row-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono, monospace);
  font-size: 0.62rem;
  color: #64748b;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.build-footer-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #64748b;
}

.build-footer-label.live-now {
  color: #8b98a5;
}

.tiny-green-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #00e6a8;
}

.build-footer-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 8px;
}

.build-uptime-val {
  color: #8b98a5;
  font-size: 0.65rem;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .build-status-row {
    padding: 8px 10px 6px;
  }
  .build-status-row-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .build-bars-timeline {
    gap: 1px;
    height: 12px;
  }
  .build-bar-tick {
    min-width: 1.5px;
    border-radius: 1px;
  }
  .build-footer-line {
    margin: 0 4px;
  }
  .build-status-top-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
}

/* Sentinel Terminal Console */
.sentinel-terminal-box {
  background: #05080d;
  border: 1px solid var(--border-medium);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
  font-family: var(--font-mono);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.sentinel-terminal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.sentinel-terminal-logs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
  line-height: 1.6;
  max-height: 220px;
  overflow-y: auto;
}

.sentinel-terminal-line {
  color: var(--text-secondary);
}

.sentinel-terminal-line .term-time {
  color: var(--text-muted);
}

.sentinel-terminal-line .term-node {
  color: var(--accent-cyan);
  font-weight: 700;
}

.sentinel-terminal-line .term-pass {
  color: #10b981;
  font-weight: 700;
}

/* FAQ Accordion Styles */
.faq-item {
  transition: border-color var(--trans-fast), background var(--trans-fast);
}

.faq-item.is-open {
  border-color: var(--accent-cyan) !important;
  background: rgba(0, 230, 168, 0.03) !important;
}

.faq-question {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  font-family: inherit;
}

.faq-question svg {
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  transition: all 0.25s ease;
}

/* ==========================================================================
   AUTHENTICATION & USER PROFILE HEADER STYLES
   ========================================================================== */
.user-menu-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.user-header-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 18, 26, 0.9);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  color: #fff;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.user-header-btn:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 230, 168, 0.08);
  box-shadow: 0 0 16px rgba(0, 230, 168, 0.15);
}

.user-avatar-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), #059669);
  color: #06080d;
  font-weight: 900;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 8px rgba(0, 230, 168, 0.4);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.user-avatar-badge .user-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.user-avatar-badge .user-avatar-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-keys-pill {
  font-size: 0.68rem;
  background: rgba(0, 230, 168, 0.15);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 230, 168, 0.35);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.user-dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 280px;
  background: #090d14;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 230, 168, 0.1);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  backdrop-filter: blur(16px);
  animation: dropdownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.user-dropdown-panel.is-open {
  display: flex;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.user-dropdown-header {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.user-dropdown-name {
  font-weight: 800;
  color: #fff;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-dropdown-email {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.user-dropdown-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.user-dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  text-decoration: none;
  transition: all var(--trans-fast);
}

.user-dropdown-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transform: translateX(3px);
}

.user-dropdown-link svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.user-dropdown-footer {
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.user-logout-btn {
  width: 100%;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #ef4444;
  padding: 8px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--trans-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.user-logout-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
}

/* ==========================================================================
   GLOBAL AUTH MODAL STYLES
   ========================================================================== */
.auth-modal-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 92%;
  max-width: 480px;
  background: #080c14;
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  padding: 32px 28px;
  z-index: 10000;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(0, 230, 168, 0.15);
  backdrop-filter: blur(20px);
  display: none;
  opacity: 0;
  transition: all 0.25s var(--ease-out);
}

.auth-modal-window.is-open {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.auth-modal-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.auth-modal-close {
  position: absolute;
  top: -10px;
  right: -6px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--trans-fast);
}

.auth-modal-close:hover {
  color: #fff;
}

.auth-tabs-nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #04060a;
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 22px;
}

.auth-tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 8px 6px;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.auth-tab-btn:hover {
  color: #fff;
}

.auth-tab-btn.is-active {
  background: rgba(0, 230, 168, 0.14);
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 230, 168, 0.3);
  box-shadow: 0 0 10px rgba(0, 230, 168, 0.15);
}

.auth-input-group {
  margin-bottom: 14px;
}

.auth-label {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.auth-input {
  width: 100%;
  background: #05080c;
  border: 1px solid var(--border-medium);
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.88rem;
  font-family: var(--font-sans);
  transition: all var(--trans-fast);
}

.auth-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 12px rgba(0, 230, 168, 0.2);
}

.auth-input.is-mono {
  font-family: var(--font-mono);
}

.auth-social-divider {
  display: flex;
  align-items: center;
  margin: 18px 0;
  color: var(--text-muted);
  font-size: 0.74rem;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.auth-social-divider::before,
.auth-social-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.auth-social-divider span {
  padding: 0 12px;
}

.auth-discord-btn {
  width: 100%;
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid rgba(88, 101, 242, 0.35);
  color: #8591f7;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--trans-fast);
}

.auth-discord-btn:hover {
  background: rgba(88, 101, 242, 0.22);
  border-color: #5865F2;
  color: #fff;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.25);
}

.auth-google-btn {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e2e8f0;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--trans-fast);
  margin-top: 8px;
}

.auth-google-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.15);
}

.auth-social-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-demo-btn {
  width: 100%;
  background: rgba(0, 230, 168, 0.08);
  border: 1px dashed var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 8px;
  border-radius: 6px;
  font-size: 0.76rem;
  font-family: var(--font-mono);
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: all var(--trans-fast);
}

.auth-demo-btn:hover {
  background: rgba(0, 230, 168, 0.16);
}

/* ==========================================================================
   BUYER DASHBOARD & CLIENT AREA STYLES (CLEAN HUMAN-CRAFTED PRO UI)
   ========================================================================== */
.buyer-hero-banner {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 16px 20px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.buyer-profile-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.buyer-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.buyer-avatar-huge {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #1e293b;
  border: 1px solid #334155;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buyer-avatar-huge .buyer-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.buyer-avatar-badge-icon {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: #0f172a;
  border: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buyer-meta-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
  align-items: center;
}

.buyer-vip-pill {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}

.buyer-discord-pill {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: #818cf8;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.25);
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}

.buyer-status-pill {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  font-weight: 600;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #1e293b;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.buyer-actions-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

/* COMPACT HUD METRICS TILES */
.buyer-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .buyer-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.buyer-stat-card {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.15s ease;
}

.buyer-stat-card:hover {
  border-color: #334155;
}

.buyer-stat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.buyer-stat-label {
  font-size: 0.68rem;
  font-family: var(--font-mono);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.buyer-stat-icon {
  width: 20px;
  height: 20px;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.buyer-stat-val {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f8fafc;
  font-family: var(--font-mono);
  line-height: 1.2;
}

.buyer-stat-sub {
  font-size: 0.68rem;
  color: #64748b;
  font-family: var(--font-mono);
  margin-top: 2px;
}

/* CLEAN TAB NAVIGATION */
.buyer-tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid #1e293b;
  margin-bottom: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.buyer-tabs-nav::-webkit-scrollbar {
  display: none;
}

.buyer-tab-link {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.15s ease;
  font-family: var(--font-sans);
  border-radius: 4px 4px 0 0;
}

.buyer-tab-link:hover {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.03);
}

.buyer-tab-link.is-active {
  color: #10b981;
  border-bottom-color: #10b981;
  font-weight: 700;
  background: transparent;
}

.buyer-tab-count-badge {
  font-size: 0.65rem;
  background: #1e293b;
  color: #94a3b8;
  padding: 1px 5px;
  border-radius: 4px;
  font-family: var(--font-mono);
}

.buyer-tab-link.is-active .buyer-tab-count-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}

.buyer-tab-pane {
  display: none;
}

.buyer-tab-pane.is-active {
  display: block;
}

/* COMPACT LICENSE VAULT */
.key-vault-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.key-card-compact {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr auto;
  align-items: center;
  gap: 16px;
  transition: border-color 0.15s ease;
}

@media (max-width: 1000px) {
  .key-card-compact {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.key-card-compact:hover {
  border-color: #334155;
}

.key-product-lead {
  display: flex;
  align-items: center;
  gap: 10px;
}

.key-thumb-sm {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #1e293b;
  flex-shrink: 0;
}

.key-code-box-inline {
  background: #090d16;
  border: 1px solid #1e293b;
  border-radius: 6px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.key-code-text {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: #38bdf8;
  letter-spacing: 0.03em;
}

/* COMPACT DOWNLOADS LIST */
.download-list-compact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.download-row-compact {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  transition: border-color 0.15s ease;
}

.download-row-compact:hover {
  border-color: #334155;
}

.download-row-compact.is-locked {
  background: #0a0e17;
  border-color: #1a2232;
  opacity: 0.8;
}

.download-row-lead {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 240px;
}

.download-row-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: #94a3b8;
}

.download-lock-badge {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: #f87171;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
}

.download-unlocked-badge {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
}

/* COMPACT SETUP GUIDES */
.guide-stepper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guide-step-box {
  background: #0f172a;
  border: 1px solid #1e293b;
  border-radius: 8px;
  padding: 14px 16px;
}

.guide-step-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.guide-step-badge {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-code-snippet {
  background: #090d16;
  border: 1px solid #1e293b;
  border-radius: 6px;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #38bdf8;
  margin: 6px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================
   INTERACTIVE REVIEWS & BUYER REVIEW MODAL (PRO STYLING)
   ========================================== */
/* ==========================================
   AUTHENTIC COMPACT PLAYER REVIEW CARDS (PRO HUMAN-MADE UI)
   ========================================== */
.review-card-item {
  background: #080c14;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.review-card-item:hover {
  border-color: rgba(0, 230, 168, 0.35);
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.7), 0 0 16px -4px rgba(0, 230, 168, 0.12);
  transform: translateY(-2px);
}

/* Header Row: Avatar, Username, Verified, Timestamp */
.rev-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.rev-user-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rev-avatar-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 230, 168, 0.18), rgba(59, 130, 246, 0.22));
  border: 1px solid rgba(0, 230, 168, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  color: #00e6a8;
  font-family: var(--font-mono);
  text-transform: uppercase;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.rev-username {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: -0.01em;
}

.rev-verified-tag {
  font-size: 0.64rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.09);
  border: 1px solid rgba(16, 185, 129, 0.22);
  border-radius: 4px;
  padding: 1px 5px;
  font-weight: 600;
  font-family: var(--font-mono);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.rev-time {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  white-space: nowrap;
}

/* Meta Subrow: Stars + Product + Tier in one compact line */
.rev-meta-subrow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-size: 0.74rem;
  color: var(--text-secondary);
}

.rev-star-group {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #fbbf24;
}

.rev-prod-badge {
  color: #94a3b8;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rev-tier-highlight {
  color: var(--accent-cyan);
  font-weight: 600;
}

/* Review text */
.rev-body-text {
  color: #cbd5e1;
  font-size: 0.83rem;
  line-height: 1.48;
  margin: 0 0 10px 0;
  font-weight: 400;
  word-break: break-word;
}

/* Card Footer */
.rev-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed rgba(255, 255, 255, 0.06);
  padding-top: 8px;
  margin-top: auto;
  font-size: 0.72rem;
}

.rev-auth-code {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  gap: 4px;
}

.rev-helpful-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  color: var(--text-secondary);
  font-size: 0.7rem;
  padding: 2px 7px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.15s ease;
}

.rev-helpful-btn:hover {
  background: rgba(0, 230, 168, 0.1);
  border-color: rgba(0, 230, 168, 0.3);
  color: #00e6a8;
}

.star-select-btn {
  background: none;
  border: none;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0 3px;
  transition: all 0.15s ease;
  line-height: 1;
}

.star-select-btn.is-active,
.star-select-btn:hover {
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.7);
  transform: scale(1.18);
}

/* Review Modal */
.review-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.review-modal-backdrop.is-open {
  display: flex;
  opacity: 1;
}

.review-modal-box {
  background: #080c14;
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-md);
  max-width: 520px;
  width: 100%;
  padding: 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
  position: relative;
}

.review-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.review-modal-close:hover {
  color: #fff;
}

@media (max-width: 860px) {
  .reviews-header-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}




