/* ============================================================
   PRTV SHOW - Advanced Cyber Platform & Systems Showcase
   Theme: Pure Black, Crisp White, Neon Red & Fiery Orange
   ============================================================ */

:root {
  --bg-primary: #050508;
  --bg-secondary: #0a0a0f;
  --bg-card: rgba(14, 14, 20, 0.76);
  --bg-card-hover: rgba(22, 22, 32, 0.9);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(239, 68, 68, 0.45);
  --border-orange: rgba(249, 115, 22, 0.45);
  
  --accent-red: #ef4444;
  --accent-red-glow: rgba(239, 68, 68, 0.5);
  --accent-orange: #f97316;
  --accent-orange-glow: rgba(249, 115, 22, 0.5);
  --accent-fire: #ff5722;
  --accent-amber: #f59e0b;
  --accent-white: #ffffff;
  
  --text-main: #ffffff;
  --text-muted: #cbd5e1;
  --text-dim: #64748b;
  
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', Consolas, monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   SCROLLBAR HIDDEN (SCROLLING PRESERVED)
   ============================================================ */
html, body {
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none !important;  /* Firefox */
  scroll-behavior: smooth;
  color-scheme: dark;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
}

/* Background Cyber Grid & Subtle Vignette */
.cyber-bg-overlay {
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(239, 68, 68, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 85% 60%, rgba(249, 115, 22, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(239, 68, 68, 0.05) 0%, transparent 70%),
    linear-gradient(to bottom, transparent 0%, rgba(5, 5, 8, 0.85) 100%);
  pointer-events: none;
  z-index: -2;
}

.cyber-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}

#matrix-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   0. GATEWAY SCREEN (INTRO CURTAIN)
   ============================================================ */
.matrix-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: radial-gradient(circle at center, #110d12 0%, #08060a 70%, #020204 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.85s ease;
}

.matrix-gate.dismissed {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.gate-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.gate-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 4px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #ff4d4d;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gate-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 10px var(--accent-red);
  animation: gatePulse 1.8s infinite;
}

@keyframes gatePulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.25); }
}

.gate-title {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #f97316 60%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gate-sub {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: -8px;
}

.gate-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.gate-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 320px;
}

.btn-gate-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.45);
  transition: all 0.25s ease;
}

.btn-gate-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 35px rgba(249, 115, 22, 0.65);
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
}

.btn-gate-secondary {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px;
  transition: color 0.2s;
}

.btn-gate-secondary:hover {
  color: #fff;
}

/* ============================================================
   1. FIXED TOP SLIM GLASS NAVBAR (EDGE-TO-EDGE)
   ============================================================ */
.hud-nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 56px !important;
  z-index: 1000 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px !important;
  margin: 0 !important;
  background: rgba(8, 8, 12, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hud-nav.scrolled {
  background: rgba(5, 5, 8, 0.98);
  border-bottom-color: rgba(239, 68, 68, 0.35);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.85);
}

.hud-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.1em;
}

.hud-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: 0 0 12px var(--accent-red);
}

.hud-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.hud-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s ease, text-shadow 0.2s ease;
  position: relative;
}

.hud-link:hover {
  color: #fff;
  text-shadow: 0 0 12px rgba(249, 115, 22, 0.6);
}

.hud-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hud-audio-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
}

.hud-audio-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: var(--accent-orange);
}

.hud-audio-btn.playing {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
  box-shadow: 0 0 14px var(--accent-orange-glow);
}

.hud-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hud-btn-bomber {
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.45);
  color: #fb923c;
}

.hud-btn-bomber:hover {
  background: rgba(249, 115, 22, 0.3);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(249, 115, 22, 0.4);
}

.hud-btn-portal {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.hud-btn-portal:hover {
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  box-shadow: 0 0 20px var(--accent-red-glow);
  transform: translateY(-1px);
}

.hud-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* ============================================================
   CONTAINER & SECTION COMMON
   ============================================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 24px 60px;
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border-radius: 4px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ff5252;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   2. HERO SECTION WITH BACKGROUND VIDEO & GRID OVERLAY
   ============================================================ */
.hero-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 130px 20px 60px;
  position: relative;
  overflow: hidden;
  z-index: 5;
}

/* Background Video Container */
.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.52;
  filter: contrast(1.15) brightness(0.95);
  pointer-events: none;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 70% 70% at 50% 50%, rgba(5, 5, 8, 0.25) 0%, rgba(5, 5, 8, 0.88) 85%, #050508 100%),
    linear-gradient(to bottom, rgba(5, 5, 8, 0.5) 0%, transparent 25%, transparent 75%, #050508 100%);
  z-index: 1;
}

.hero-video-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(239, 68, 68, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(249, 115, 22, 0.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, #000 45%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at center, #000 45%, transparent 90%);
  z-index: 2;
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.25) 1px,
    transparent 1px,
    transparent 3px
  );
  pointer-events: none;
  opacity: 0.35;
  z-index: 3;
}

/* Foreground Content (Animated Bold Text in Center) */
.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  margin: 0 auto;
  animation: heroTitleReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroTitleReveal {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  transition: all 0.25s ease;
}

.hero-pill:hover {
  border-color: var(--accent-red);
  background: rgba(239, 68, 68, 0.1);
  color: #fff;
}

.hero-name {
  font-size: clamp(44px, 9vw, 84px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 14px;
  text-transform: uppercase;
  text-shadow: 0 0 35px rgba(239, 68, 68, 0.25);
}

.hero-name-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #f97316 45%, #ef4444 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: clamp(13px, 2.5vw, 17px);
  color: #f97316;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-subtext {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 38px;
}

.hero-role-tag {
  padding: 6px 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #cbd5e1;
  font-size: 12px;
  font-family: var(--font-mono);
  transition: all 0.2s ease;
}

.hero-role-tag:hover {
  border-color: var(--accent-red);
  color: #fff;
  transform: translateY(-2px);
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}

.btn-cyber-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 4px;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(239, 68, 68, 0.45);
  transition: all 0.25s ease;
  border: none;
}

.btn-cyber-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 35px rgba(249, 115, 22, 0.7);
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
}

.btn-cyber-terminal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 4px;
  background: rgba(14, 14, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-cyber-terminal:hover {
  border-color: var(--accent-orange);
  background: rgba(249, 115, 22, 0.1);
  color: #fb923c;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.35);
}

.btn-cyber-bomber {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #ff6b6b;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-cyber-bomber:hover {
  border-color: #ef4444;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.35) 0%, rgba(249, 115, 22, 0.35) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(239, 68, 68, 0.5);
}

/* ============================================================
   3. LIVE STATS COUNTER BAR
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 40px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-number-red {
  color: var(--accent-red);
  text-shadow: 0 0 22px var(--accent-red-glow);
}

.stat-number-orange {
  color: var(--accent-orange);
  text-shadow: 0 0 22px var(--accent-orange-glow);
}

.stat-number-white {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-sub {
  font-size: 11.5px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-top: 4px;
}

/* ============================================================
   4. FLAGSHIP WORKS MATRIX (EXACTLY 3 CARDS)
   ============================================================ */
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .works-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(14px);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.work-card.featured-bomber {
  border-color: rgba(249, 115, 22, 0.35);
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.08) 0%, rgba(14, 14, 20, 0.82) 100%);
}

.work-card.featured-bomber:hover {
  border-color: var(--accent-orange);
  box-shadow: 0 20px 45px rgba(249, 115, 22, 0.3);
}

.work-card.featured-keyauth {
  border-color: rgba(239, 68, 68, 0.35);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.08) 0%, rgba(14, 14, 20, 0.82) 100%);
}

.work-card.featured-keyauth:hover {
  border-color: var(--accent-red);
  box-shadow: 0 20px 45px rgba(239, 68, 68, 0.3);
}

.work-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.work-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.work-status-badge {
  padding: 4px 10px;
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-red {
  background: rgba(239, 68, 68, 0.15);
  color: #ff5252;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.status-orange {
  background: rgba(249, 115, 22, 0.15);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.35);
}

.status-white {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.work-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.work-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 26px;
}

.work-tag {
  padding: 4px 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 11px;
}

.work-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.work-btn {
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.work-btn-primary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.work-btn-primary:hover {
  background: #fff;
  color: #000;
}

.work-btn-orange {
  background: rgba(249, 115, 22, 0.2);
  color: #fb923c;
  border: 1px solid rgba(249, 115, 22, 0.4);
}

.work-btn-orange:hover {
  background: #f97316;
  color: #fff;
}

.work-btn-red {
  background: rgba(239, 68, 68, 0.2);
  color: #ff6b6b;
  border: 1px solid rgba(239, 68, 68, 0.4);
}

.work-btn-red:hover {
  background: #ef4444;
  color: #fff;
}

/* ============================================================
   4.5. WORK CARDS - CYBER TREE/LEAF VEIN BRANCHING OVERLAY
   ============================================================ */
.work-card {
  position: relative;
  overflow: hidden;
}

.card-vein-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 135px;
  height: 135px;
  pointer-events: none;
  z-index: 5;
  overflow: visible;
}

.vein-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.vein-path {
  fill: none;
  stroke: var(--accent-red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  opacity: 0;
  filter: drop-shadow(0 0 5px var(--accent-red));
  transition: stroke-dashoffset 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.featured-bomber .vein-path {
  stroke: var(--accent-orange);
  filter: drop-shadow(0 0 5px var(--accent-orange));
}

.vein-branch-1 {
  stroke-width: 1.3;
  transition-delay: 0.08s;
}
.vein-branch-2 {
  stroke-width: 1.3;
  transition-delay: 0.16s;
}
.vein-branch-3 {
  stroke-width: 1.2;
  transition-delay: 0.24s;
}
.vein-branch-4 {
  stroke-width: 1.2;
  transition-delay: 0.32s;
}

.vein-bud {
  fill: #ffffff;
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
  filter: drop-shadow(0 0 6px var(--accent-red));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.featured-bomber .vein-bud {
  filter: drop-shadow(0 0 6px var(--accent-orange));
}

/* On Card Hover: Branching leaf-vein sprouting outward smoothly */
.work-card:hover .vein-path {
  stroke-dashoffset: 0;
  opacity: 1;
}

.work-card:hover .vein-bud {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.45s;
}

/* ============================================================
   5. 3D TILT INTERACTIVE CLIENT RUNTIME LOADER (.EXE)
   ============================================================ */
:root {
  --loader-accent: #ef4444;
  --loader-glow: rgba(239, 68, 68, 0.35);
}

.exe-perspective-wrapper {
  perspective: 1200px;
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 0 20px;
}

.exe-window {
  background: #09090f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.8), 0 0 30px var(--loader-glow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  font-family: var(--font-sans);
}

.exe-window:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

/* Dynamic Sheen / Glare Overlay */
.exe-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  background: radial-gradient(circle 500px at var(--glare-x, 50%) var(--glare-y, 30%), rgba(255, 255, 255, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
  mix-blend-mode: screen;
}

.exe-perspective-wrapper:hover .exe-glare {
  opacity: 1;
}

/* Titlebar */
.exe-titlebar {
  background: #11111a;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  user-select: none;
}

.exe-titlebar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11.5px;
}

.exe-app-icon {
  font-size: 14px;
  color: var(--loader-accent);
}

.exe-title-text {
  font-weight: 700;
  color: #f1f5f9;
  letter-spacing: 0.04em;
}

.exe-status-pill {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.06em;
}

.exe-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: hudPulse 2s infinite;
}

.exe-window-controls {
  display: flex;
  gap: 5px;
}

.exe-ctrl-btn {
  width: 26px;
  height: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  color: #94a3b8;
  font-family: var(--font-mono);
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.exe-ctrl-btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.exe-ctrl-close:hover {
  background: #ef4444 !important;
  color: #fff !important;
  border-color: #ef4444 !important;
}

/* Body: Sidebar + Main Content Area */
.exe-body {
  display: flex;
  min-height: 440px;
  background: rgba(8, 8, 13, 0.95);
}

/* Sidebar Navigation */
.exe-sidebar {
  width: 215px;
  flex-shrink: 0;
  background: rgba(13, 13, 20, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exe-nav-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid transparent;
  background: transparent;
  color: #94a3b8;
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: all 0.2s ease;
  position: relative;
}

.exe-nav-tab:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #f1f5f9;
}

.exe-nav-tab.active {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  box-shadow: inset 3px 0 0 var(--loader-accent), 0 2px 10px rgba(0, 0, 0, 0.3);
}

.exe-tab-icon {
  font-size: 14px;
  color: var(--loader-accent);
}

.exe-tab-label {
  flex: 1;
  font-weight: 600;
}

.exe-tab-badge {
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-weight: 700;
}

.exe-nav-tab.active .exe-tab-badge {
  background: var(--loader-accent);
  color: #ffffff;
}

.exe-sidebar-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.exe-ping-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: #64748b;
  padding: 4px 8px;
}

.exe-ping-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
}

/* Content Area */
.exe-content-area {
  flex: 1;
  padding: 24px 28px;
  overflow-y: auto;
  position: relative;
}

.exe-tab-pane {
  display: none;
}

.exe-tab-pane.active {
  display: block;
  animation: exePaneFade 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes exePaneFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.exe-pane-header {
  margin-bottom: 20px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
  padding-bottom: 12px;
}

.exe-pane-title {
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-sans);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.exe-pane-sub {
  font-size: 11.5px;
  color: #94a3b8;
  font-family: var(--font-mono);
}

/* Module Cards & Toggles */
.exe-module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.exe-module-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: all 0.2s ease;
}

.exe-module-card:hover {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.16);
}

.exe-module-info {
  flex: 1;
  min-width: 0;
}

.exe-module-name {
  font-size: 12.5px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.exe-module-desc {
  font-size: 10.5px;
  color: #64748b;
  line-height: 1.35;
}

/* High-Tech Glowing Toggle Switch */
.exe-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
  flex-shrink: 0;
  cursor: pointer;
}

.exe-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.exe-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.exe-slider::before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background: #94a3b8;
  border-radius: 2px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), background 0.2s;
}

.exe-switch input:checked + .exe-slider {
  background: var(--loader-accent);
  border-color: var(--loader-accent);
  box-shadow: 0 0 12px var(--loader-glow);
}

.exe-switch input:checked + .exe-slider::before {
  transform: translateX(20px);
  background: #ffffff;
}

/* Range Slider & FOV */
.exe-slider-card {
  align-items: center;
}

.exe-range-control {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.exe-range-val {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  color: var(--loader-accent);
  width: 36px;
  text-align: right;
}

.exe-range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 90px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
  cursor: pointer;
}

.exe-range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: var(--loader-accent);
  border: 1px solid #fff;
  cursor: pointer;
  box-shadow: 0 0 8px var(--loader-glow);
}

/* Dynamic FOV Simulator */
.exe-crosshair-preview-box {
  height: 130px;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.6) 0%, rgba(5, 5, 8, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 14px;
}

.exe-crosshair-preview-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}

.exe-fov-circle {
  position: absolute;
  width: 95px;
  height: 95px;
  border: 1.5px dashed var(--loader-accent);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--loader-glow);
  transition: width 0.15s ease-out, height 0.15s ease-out;
}

.exe-crosshair-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px #ffffff;
  z-index: 2;
}

.exe-fov-hud-tag {
  position: absolute;
  bottom: 8px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: #64748b;
}

/* Action Box & Progress Bar */
.exe-action-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.exe-action-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.exe-btn-inject {
  padding: 9px 18px;
  background: var(--loader-accent);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 18px var(--loader-glow);
  transition: all 0.2s ease;
}

.exe-btn-inject:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.exe-btn-inject:active {
  transform: translateY(1px);
}

.exe-inject-status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #94a3b8;
}

.exe-progress-bar-wrap {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.exe-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--loader-accent), #ffffff);
  box-shadow: 0 0 8px var(--loader-accent);
  transition: width 0.12s linear;
}

/* Theme Accent Switcher */
.exe-theme-picker-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.exe-theme-label {
  font-size: 12px;
  color: #cbd5e1;
  font-family: var(--font-mono);
  margin-bottom: 12px;
}

.exe-swatches {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.exe-swatch {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--swatch-c);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.exe-swatch:hover {
  transform: scale(1.1);
}

.exe-swatch.active {
  border-color: #ffffff;
  transform: scale(1.12);
  box-shadow: 0 0 16px var(--swatch-c);
}

.exe-theme-name {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #94a3b8;
}

.exe-theme-demo-preview {
  background: rgba(0, 0, 0, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.exe-preview-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #64748b;
  letter-spacing: 0.1em;
}

.exe-preview-badges {
  display: flex;
  gap: 8px;
}

.exe-demo-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid var(--loader-accent);
  color: var(--loader-accent);
  box-shadow: 0 0 8px var(--loader-glow);
}

.exe-demo-badge.filled {
  background: var(--loader-accent);
  color: #ffffff;
}

/* HWID Spoofer */
.exe-hwid-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.exe-hwid-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.04);
}

.exe-hwid-row:last-child {
  border-bottom: none;
}

.exe-hwid-key {
  color: #94a3b8;
  font-size: 11.5px;
}

.exe-hwid-val {
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.exe-hwid-val.status-active {
  color: #4ade80;
  text-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

/* Footer Status Bar of .EXE */
.exe-footer-bar {
  background: #0d0d15;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: #64748b;
  user-select: none;
}

.exe-footer-left {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.exe-footer-led {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--loader-accent);
  box-shadow: 0 0 6px var(--loader-accent);
  flex-shrink: 0;
}

.exe-footer-right {
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #475569;
  flex-shrink: 0;
}


/* ============================================================
   6. WEAPON ARSENAL / TECH MATRIX
   ============================================================ */
.arsenal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.arsenal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 24px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.arsenal-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.arsenal-cat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.arsenal-cat-icon {
  font-size: 20px;
}

.arsenal-cat-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.arsenal-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-pill {
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: #cbd5e1;
  transition: all 0.2s ease;
}

.skill-pill:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: var(--accent-red);
  color: #fff;
  transform: scale(1.04);
}

/* ============================================================
   7. JOURNEY TIMELINE (HIGH-SPEED ANIMATED ENERGY BEAM & ARROWS)
   ============================================================ */
.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}

@media (min-width: 768px) {
  .timeline-wrapper::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Vertical High-Speed Energy Beam */
.timeline-energy-beam {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 2px;
  background: linear-gradient(180deg, #ef4444 0%, #f97316 35%, #06b6d4 70%, #ffffff 100%);
  background-size: 100% 250%;
  animation: timelineEnergyBoost 3s linear infinite;
  z-index: 2;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.8), 0 0 20px rgba(249, 115, 22, 0.5);
}

@keyframes timelineEnergyBoost {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 250%; }
}

@media (min-width: 768px) {
  .timeline-energy-beam {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Fast Flowing Energy Arrows / Chevrons Traveling Down */
.timeline-energy-runner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 20px;
  pointer-events: none;
  z-index: 3;
  transform: translateX(-50%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .timeline-energy-runner {
    left: 50%;
  }
}

.timeline-arrow-packet {
  position: absolute;
  left: 50%;
  font-size: 11px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 8px #ef4444, 0 0 16px #f97316;
  opacity: 0;
  animation: streamDownward 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.timeline-arrow-packet.arrow-1 { animation-delay: 0s; }
.timeline-arrow-packet.arrow-2 { animation-delay: 1.05s; }
.timeline-arrow-packet.arrow-3 { animation-delay: 2.1s; }

@keyframes streamDownward {
  0% {
    top: -5%;
    opacity: 0;
    transform: translateX(-50%) scale(0.6);
  }
  15% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
  85% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    top: 105%;
    opacity: 0;
    transform: translateX(-50%) scale(0.6);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  z-index: 4;
}

.timeline-dot {
  position: absolute;
  left: 13px;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #050508;
  border: 3px solid var(--accent-red);
  box-shadow: 0 0 12px var(--accent-red);
  z-index: 5;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-red);
  opacity: 0.8;
  animation: dotRadarPulse 2.4s ease-out infinite;
}

@keyframes dotRadarPulse {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

@media (min-width: 768px) {
  .timeline-dot {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-content {
  margin-left: 50px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 20px 24px;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: calc(50% + 30px);
    text-align: right;
  }
  .timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 30px);
  }
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-orange);
  font-weight: 700;
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================================
   8. MARQUEE USER REVIEWS
   ============================================================ */
.marquee-container {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollMarquee 50s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.feed-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 16px 20px;
  min-width: 280px;
  max-width: 320px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: border-color 0.2s ease;
}

.feed-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

.feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  margin-bottom: 8px;
}

.feed-user {
  font-weight: 700;
  color: #f8fafc;
}

.feed-stars {
  color: #f97316;
  font-size: 12px;
}

.feed-body {
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.45;
  font-style: italic;
}

/* ============================================================
   9. NEURAL CONNECT / CONTACT (EXACTLY 3 CARDS)
   ============================================================ */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
}

@media (max-width: 860px) {
  .connect-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

.connect-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.connect-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.connect-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.connect-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.connect-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

.connect-platform {
  font-size: 11px;
  color: var(--text-dim);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.connect-copy-hint {
  font-size: 11px;
  color: var(--accent-orange);
  font-family: var(--font-mono);
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.connect-handle {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  word-break: normal !important;
}

/* ============================================================
   10. FOOTER
   ============================================================ */
.cyber-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 24px 30px;
  background: #030305;
  position: relative;
  z-index: 10;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
}

.footer-credits {
  font-size: 12px;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.footer-scroll-top {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  width: 38px;
  height: 38px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.footer-scroll-top:hover {
  border-color: var(--accent-orange);
  color: #fff;
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE DESIGN (MOBILE & TABLET DEEP OPTIMIZATION)
   ============================================================ */
@media (max-width: 900px) {
  .hud-links {
    display: none;
  }
  .hud-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    font-size: 16px;
  }
  
  .hud-nav.mobile-open .hud-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(8, 8, 12, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0;
    padding: 20px 24px;
    gap: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
  }

  .hud-link {
    font-size: 15px;
    padding: 6px 0;
    display: block;
    width: 100%;
  }
}

@media (max-width: 768px) {
  /* Navbar */
  .hud-nav {
    padding: 0 12px !important;
    height: 52px !important;
  }
  .hud-brand {
    font-size: 13px !important;
    letter-spacing: 0.04em !important;
    gap: 6px !important;
  }
  .hud-brand-dot {
    width: 6px !important;
    height: 6px !important;
  }
  .hud-actions {
    gap: 6px !important;
  }
  .hud-audio-btn {
    width: 30px !important;
    height: 30px !important;
    font-size: 12px !important;
  }
  .hud-btn {
    padding: 6px 9px !important;
    font-size: 11px !important;
    gap: 4px !important;
  }
  .hud-btn-bomber span:not(:first-child),
  .hud-btn-portal span:not(:first-child) {
    display: none !important;
  }
  .hud-mobile-toggle {
    width: 30px !important;
    height: 30px !important;
    font-size: 15px !important;
  }
  .hud-nav.mobile-open .hud-links {
    top: 52px !important;
  }

  /* Video Background on Mobile */
  .hero-video-container {
    height: 100% !important;
    width: 100% !important;
  }
  .hero-bg-video {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    opacity: 0.52 !important;
  }

  /* Section Containers */
  .section-container {
    padding: 48px 16px !important;
  }
  .section-header {
    margin-bottom: 28px !important;
  }
  .section-title {
    font-size: clamp(24px, 7.5vw, 32px) !important;
    line-height: 1.15 !important;
    margin-bottom: 10px !important;
  }
  .section-desc {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    padding: 0 4px !important;
  }
  .section-badge {
    font-size: 10px !important;
    padding: 4px 12px !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 10px !important;
  }

  /* Hero Section */
  .hero-wrapper {
    min-height: auto !important;
    padding: 95px 16px 45px !important;
  }
  .hero-pill {
    padding: 5px 12px !important;
    font-size: 10.5px !important;
    letter-spacing: 0.06em !important;
    margin-bottom: 16px !important;
    max-width: 100% !important;
  }
  .hero-name {
    font-size: clamp(34px, 11vw, 48px) !important;
    line-height: 1.1 !important;
    margin-bottom: 10px !important;
  }
  .hero-tagline {
    font-size: 11.5px !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 14px !important;
  }
  .hero-subtext {
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 0 auto 22px !important;
    padding: 0 4px !important;
  }
  .hero-roles {
    gap: 6px !important;
    margin-bottom: 24px !important;
  }
  .hero-role-tag {
    font-size: 11px !important;
    padding: 4px 10px !important;
  }
  .hero-cta-group {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    max-width: 320px !important;
    margin: 0 auto 20px !important;
  }
  .btn-cyber-primary,
  .btn-cyber-terminal,
  .btn-cyber-bomber {
    width: 100% !important;
    justify-content: center !important;
    padding: 12px 20px !important;
    font-size: 13px !important;
  }

  /* Telemetry Stats Grid */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    margin-bottom: 24px !important;
  }
  .stat-card {
    padding: 16px 12px !important;
  }
  .stat-number {
    font-size: 26px !important;
  }
  .stat-label {
    font-size: 10.5px !important;
    letter-spacing: 0.04em !important;
  }

  /* Works Cards */
  .works-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .work-card {
    padding: 20px 16px !important;
  }
  .work-icon-box {
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
  }
  .work-title {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }
  .work-desc {
    font-size: 13px !important;
    line-height: 1.55 !important;
    margin-bottom: 16px !important;
  }
  .work-tags {
    gap: 6px !important;
    margin-bottom: 18px !important;
  }
  .work-tag {
    font-size: 10.5px !important;
    padding: 3px 8px !important;
  }
  .work-actions {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .work-btn {
    width: 100% !important;
    justify-content: center !important;
    padding: 10px 14px !important;
  }

  /* 3D Tilt Cyber Loader (.EXE) on Mobile */
  .exe-perspective-wrapper {
    perspective: none !important;
    padding: 6px 0 16px !important;
  }
  .exe-window {
    transform: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7) !important;
    border-radius: 6px !important;
  }
  .exe-glare {
    display: none !important;
  }
  .exe-titlebar {
    padding: 9px 12px !important;
  }
  .exe-title-text {
    font-size: 11px !important;
  }
  .exe-status-pill {
    display: none !important;
  }
  .exe-body {
    flex-direction: column !important;
    min-height: auto !important;
  }
  .exe-sidebar {
    width: 100% !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 8px 10px !important;
    gap: 8px !important;
    -webkit-overflow-scrolling: touch !important;
  }
  .exe-nav-tab {
    width: auto !important;
    white-space: nowrap !important;
    padding: 7px 12px !important;
    font-size: 11px !important;
    flex-shrink: 0 !important;
  }
  .exe-tab-badge {
    display: none !important;
  }
  .exe-sidebar-footer {
    display: none !important;
  }
  .exe-content-area {
    padding: 16px 14px !important;
  }
  .exe-pane-title {
    font-size: 14.5px !important;
  }
  .exe-pane-sub {
    font-size: 10.5px !important;
  }
  .exe-module-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .exe-module-card {
    padding: 10px 12px !important;
  }
  .exe-module-name {
    font-size: 12px !important;
  }
  .exe-module-desc {
    font-size: 10px !important;
  }
  .exe-action-box {
    padding: 12px 14px !important;
  }
  .exe-action-left {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .exe-btn-inject {
    width: 100% !important;
    justify-content: center !important;
  }
  .exe-inject-status {
    text-align: center !important;
    font-size: 10.5px !important;
  }
  .exe-footer-bar {
    padding: 6px 12px !important;
    font-size: 10px !important;
  }
  .exe-footer-right {
    display: none !important;
  }

  /* Timeline mobile adjustments */
  .timeline-energy-beam,
  .timeline-energy-runner {
    left: 14px !important;
  }

  /* Arsenal Grid */
  .arsenal-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .arsenal-card {
    padding: 18px 16px !important;
  }
  .arsenal-cat-title {
    font-size: 15px !important;
  }
  .skill-pill {
    font-size: 11px !important;
    padding: 4px 9px !important;
  }

  /* Journey Timeline */
  .timeline-wrapper {
    padding: 10px 0 !important;
  }
  .timeline-wrapper::before {
    left: 14px !important;
  }
  .timeline-dot {
    left: 7px !important;
    width: 14px !important;
    height: 14px !important;
    top: 16px !important;
  }
  .timeline-content {
    margin-left: 36px !important;
    margin-right: 0 !important;
    padding: 16px 14px !important;
    text-align: left !important;
  }
  .timeline-year {
    font-size: 10.5px !important;
  }
  .timeline-title {
    font-size: 15px !important;
  }
  .timeline-desc {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
  }

  /* Connect Section */
  .connect-grid {
    grid-template-columns: 1fr !important;
    max-width: 100% !important;
    gap: 12px !important;
  }
  .connect-card {
    padding: 14px 16px !important;
  }
  .connect-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 18px !important;
  }
  .connect-handle {
    font-size: 13px !important;
  }

  /* Intro Gate on Mobile */
  .gate-content {
    padding: 24px 18px !important;
    max-width: 92% !important;
  }
  .gate-title {
    font-size: clamp(30px, 9vw, 42px) !important;
    margin-bottom: 8px !important;
  }
  .gate-sub {
    font-size: 10.5px !important;
    letter-spacing: 0.12em !important;
    margin-bottom: 12px !important;
  }
  .gate-desc {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 22px !important;
  }
  .btn-gate-primary {
    width: 100% !important;
    padding: 12px 18px !important;
    font-size: 11px !important;
  }
  .btn-gate-secondary {
    font-size: 10px !important;
    padding: 8px !important;
  }

  /* Footer */
  .cyber-footer {
    padding: 30px 16px 24px !important;
  }
  .footer-inner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 12px !important;
  }
}

@media (max-width: 360px) {
  .hud-brand span:last-child {
    font-size: 11.5px !important;
  }
  .stats-grid {
    grid-template-columns: 1fr !important;
  }
  .hero-name {
    font-size: 32px !important;
  }
}
