.elementor-15118 .elementor-element.elementor-element-88ae7c2{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7c440e5 *//* ═══════════════════════════════════════════════════════════════
   BASE &amp; RESET
   ═══════════════════════════════════════════════════════════════ */
html { scroll-behavior: smooth; font-size: 16px; }
body {
  color: #c9d1d9;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,240,255,.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(0,255,65,.03) 0%, transparent 60%),
    linear-gradient(180deg,#0a0e17 0%,#0d1525 50%,#0a0e17 100%);
  background-attachment: fixed;
}
a { color: #a855f7; text-decoration: none; transition: color .2s, text-shadow .2s; }
a:hover { color: #c084fc; text-shadow: 0 0 12px rgba(168,85,247,.3); }
h1,h2,h3,h4,h5 { color: #e6edf3; font-weight: 700; letter-spacing: -.01em; }

/* ═══════════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0e17; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #a855f7, #7c3aed); border-radius: 4px; }

/* ═══════════════════════════════════════════════════════════════
   GLASS CARD
   ═══════════════════════════════════════════════════════════════ */
.glass {
  background: rgba(13,21,37,.65);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(168,85,247,.12);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color .3s, box-shadow .3s;
}
.glass:hover {
  border-color: rgba(168,85,247,.25);
  box-shadow: 0 0 30px rgba(168,85,247,.06);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION &amp; SECTION TITLES
   ═══════════════════════════════════════════════════════════════ */
.section { max-width: 1100px; margin: 0 auto; padding: 3.5rem 1.25rem; position: relative; z-index: 1; }
.section-tit {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid rgba(168,85,247,.25);
  position: relative;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.section-tit::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #a855f7;
  animation: lineGrow 1.5s ease-out forwards;
}
@keyframes lineGrow {
  0% { width: 0; }
  100% { width: 80px; }
}
.section-tit .tit-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(168,85,247,.12);
  display: flex; align-items: center; justify-content: center;
  color: #a855f7;
  font-size: 1rem;
  flex-shrink: 0;
}
.section-tag {
  font-family: 'Courier New', monospace;
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a855f7;
  margin-bottom: .5rem;
}
.section-desc { color: #8b949e; margin-bottom: 1.5rem; font-size: .95rem; }

/* ═══════════════════════════════════════════════════════════════
   HERO / HEADER
   ═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.hero-tag {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: .75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a855f7;
  border: 1px solid rgba(168,85,247,.3);
  padding: .3rem 1rem;
  border-radius: 20px;
  animation: tagPulse 3s ease-in-out infinite;
}
@keyframes tagPulse {
  0%,100% { box-shadow: 0 0 8px rgba(168,85,247,.2); }
  50% { box-shadow: 0 0 20px rgba(168,85,247,.4); }
}
.hero h1 {
  font-size: clamp(2rem,5vw,3.5rem);
  text-align: center;
  background: linear-gradient(135deg, #a855f7 0%, #7c3aed 50%, #c084fc 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s linear infinite;
}
@keyframes gradientShift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero-subtitle {
  font-family: 'Courier New', monospace;
  font-size: .95rem;
  color: #5a7a8a;
  text-align: center;
  max-width: 700px;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #a855f7;
  animation: typing 5s steps(70,end) infinite, blink .6s step-end infinite alternate;
}
@keyframes typing {
  0% { max-width: 0; }
  50% { max-width: 700px; }
  90% { max-width: 700px; }
  100% { max-width: 0; }
}
@keyframes blink { 50% { border-color: transparent; } }

/* ═══════════════════════════════════════════════════════════════
   GRID LINES (Hero background)
   ═══════════════════════════════════════════════════════════════ */
.grid-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: .06;
}
.grid-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,85,247,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ═══════════════════════════════════════════════════════════════
   BOTNET SIMULATION
   ═══════════════════════════════════════════════════════════════ */
.botnet-sim {
  position: relative;
  width: 100%;
  max-width: 880px;
  height: 500px;
  background: rgba(8,12,22,.85);
  border: 1px solid rgba(168,85,247,.15);
  border-radius: 16px;
  overflow: hidden;
}
.botnet-sim::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(168,85,247,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168,85,247,.02) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: 16px;
}

/* C2 Command Center */
.c2-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,.2), rgba(124,58,237,.05));
  border: 2px solid rgba(168,85,247,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  animation: c2Pulse 2s ease-in-out infinite;
}
.c2-center::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(168,85,247,.2);
  animation: c2RingRotate 8s linear infinite;
}
.c2-center::after {
  content: '';
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px dotted rgba(168,85,247,.1);
  animation: c2RingRotate 12s linear infinite reverse;
}
@keyframes c2Pulse {
  0%,100% { box-shadow: 0 0 20px rgba(168,85,247,.2), 0 0 40px rgba(168,85,247,.05); }
  50% { box-shadow: 0 0 30px rgba(168,85,247,.4), 0 0 60px rgba(168,85,247,.1); }
}
@keyframes c2RingRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.c2-icon {
  font-size: 1.6rem;
  color: #a855f7;
  animation: c2IconGlow 2s ease-in-out infinite;
}
@keyframes c2IconGlow {
  0%,100% { text-shadow: 0 0 8px rgba(168,85,247,.3); }
  50% { text-shadow: 0 0 20px rgba(168,85,247,.6); }
}
.c2-label {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Courier New', monospace;
  font-size: .55rem;
  color: #a855f7;
  white-space: nowrap;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Bot Nodes - infected devices scattered around C2 */
.bot-node {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(168,85,247,.08);
  border: 1px solid rgba(168,85,247,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  animation: botNodeAppear 1.5s ease-out forwards;
  opacity: 0;
}
.bot-node .bot-icon {
  font-size: .75rem;
  color: #a855f7;
}
.bot-node .bot-ip {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Courier New', monospace;
  font-size: .4rem;
  color: rgba(168,85,247,.5);
  white-space: nowrap;
}
/* Positions: 24 bot nodes in a circular scatter */
.bot-node:nth-child(1)  { top: 8%;  left: 5%;  animation-delay: 0.2s; }
.bot-node:nth-child(2)  { top: 5%;  left: 25%; animation-delay: 0.4s; }
.bot-node:nth-child(3)  { top: 3%;  left: 50%; animation-delay: 0.6s; }
.bot-node:nth-child(4)  { top: 5%;  left: 75%; animation-delay: 0.8s; }
.bot-node:nth-child(5)  { top: 8%;  left: 90%; animation-delay: 1.0s; }
.bot-node:nth-child(6)  { top: 25%; left: 2%;  animation-delay: 0.3s; }
.bot-node:nth-child(7)  { top: 22%; left: 18%; animation-delay: 0.5s; }
.bot-node:nth-child(8)  { top: 20%; left: 38%; animation-delay: 0.7s; }
.bot-node:nth-child(9)  { top: 22%; left: 62%; animation-delay: 0.9s; }
.bot-node:nth-child(10) { top: 25%; left: 80%; animation-delay: 1.1s; }
.bot-node:nth-child(11) { top: 20%; left: 95%; animation-delay: 1.3s; }
.bot-node:nth-child(12) { top: 40%; left: 4%;  animation-delay: 0.35s; }
.bot-node:nth-child(13) { top: 42%; left: 15%; animation-delay: 0.55s; }
.bot-node:nth-child(14) { top: 45%; left: 85%; animation-delay: 0.75s; }
.bot-node:nth-child(15) { top: 40%; left: 96%; animation-delay: 0.95s; }
.bot-node:nth-child(16) { top: 60%; left: 3%;  animation-delay: 0.4s; }
.bot-node:nth-child(17) { top: 62%; left: 15%; animation-delay: 0.6s; }
.bot-node:nth-child(18) { top: 58%; left: 85%; animation-delay: 0.8s; }
.bot-node:nth-child(19) { top: 60%; left: 96%; animation-delay: 1.0s; }
.bot-node:nth-child(20) { top: 78%; left: 5%;  animation-delay: 0.45s; }
.bot-node:nth-child(21) { top: 80%; left: 25%; animation-delay: 0.65s; }
.bot-node:nth-child(22) { top: 82%; left: 50%; animation-delay: 0.85s; }
.bot-node:nth-child(23) { top: 80%; left: 75%; animation-delay: 1.05s; }
.bot-node:nth-child(24) { top: 78%; left: 90%; animation-delay: 1.25s; }

@keyframes botNodeAppear {
  0% { opacity: 0; transform: scale(.3); }
  60% { opacity: 1; transform: scale(1.15); }
  100% { opacity: 1; transform: scale(1); }
}

/* Bot node infection animation - periodic red flash */
.bot-node::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,.3);
  animation: botInfect 4s ease-in-out infinite;
}
.bot-node:nth-child(odd)::after { animation-delay: 0s; }
.bot-node:nth-child(even)::after { animation-delay: 2s; }
@keyframes botInfect {
  0%,100% { border-color: rgba(168,85,247,.15); box-shadow: none; }
  50% { border-color: rgba(239,68,68,.5); box-shadow: 0 0 12px rgba(239,68,68,.2); }
}

/* Traffic Lines - flowing from C2 to bots and back */
.traffic-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,.2), transparent);
  transform-origin: left center;
  z-index: 3;
  animation: trafficPulse 3s ease-in-out infinite;
}
/* Horizontal traffic lines */
.traffic-line:nth-child(1)  { top: 50%; left: 16%; width: 28%; animation-delay: 0s; }
.traffic-line:nth-child(2)  { top: 50%; left: 56%; width: 28%; animation-delay: .5s; }
.traffic-line:nth-child(3)  { top: 20%; left: 20%; width: 25%; transform: rotate(-25deg); animation-delay: 1s; }
.traffic-line:nth-child(4)  { top: 70%; left: 20%; width: 25%; transform: rotate(25deg); animation-delay: 1.5s; }
.traffic-line:nth-child(5)  { top: 30%; left: 55%; width: 25%; transform: rotate(20deg); animation-delay: 2s; }
.traffic-line:nth-child(6)  { top: 65%; left: 55%; width: 25%; transform: rotate(-20deg); animation-delay: 2.5s; }
@keyframes trafficPulse {
  0%,100% { opacity: .15; }
  50% { opacity: .6; }
}

/* Traffic Packets - dots flowing along paths */
.packet {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 8px rgba(168,85,247,.6);
  z-index: 8;
  animation: packetFlow 2.5s linear infinite;
}
.packet:nth-child(1)  { animation-delay: 0s; }
.packet:nth-child(2)  { animation-delay: .3s; }
.packet:nth-child(3)  { animation-delay: .6s; }
.packet:nth-child(4)  { animation-delay: .9s; }
.packet:nth-child(5)  { animation-delay: 1.2s; }
.packet:nth-child(6)  { animation-delay: 1.5s; }
.packet:nth-child(7)  { animation-delay: 1.8s; }
.packet:nth-child(8)  { animation-delay: 2.1s; }
@keyframes packetFlow {
  0% { opacity: 0; transform: translate(0,0) scale(.5); }
  10% { opacity: 1; transform: scale(1); }
  90% { opacity: .8; }
  100% { opacity: 0; transform: translate(var(--px, 80px), var(--py, -60px)) scale(.3); }
}
/* Directional packets */
.packet:nth-child(1) { top: 48%; left: 30%; --px: -80px; --py: -40px; }
.packet:nth-child(2) { top: 52%; left: 70%; --px: 80px; --py: -40px; }
.packet:nth-child(3) { top: 35%; left: 35%; --px: -60px; --py: -30px; }
.packet:nth-child(4) { top: 65%; left: 65%; --px: 60px; --py: 30px; }
.packet:nth-child(5) { top: 30%; left: 60%; --px: 50px; --py: -20px; }
.packet:nth-child(6) { top: 70%; left: 40%; --px: -50px; --py: 20px; }
.packet:nth-child(7) { top: 20%; left: 25%; --px: -40px; --py: -25px; }
.packet:nth-child(8) { top: 80%; left: 75%; --px: 40px; --py: 25px; }

/* DDoS Attack visualization */
.ddos-target {
  position: absolute;
  top: 15%; right: 8%;
  width: 50px; height: 50px;
  border-radius: 8px;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  animation: ddosShake .3s ease-in-out infinite;
}
.ddos-target .ddos-icon { font-size: 1.2rem; color: #ef4444; }
.ddos-target .ddos-label {
  position: absolute;
  bottom: -16px;
  font-family: 'Courier New', monospace;
  font-size: .45rem;
  color: #ef4444;
  letter-spacing: 1px;
}
@keyframes ddosShake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

/* DDoS Attack streams */
.ddos-stream {
  position: absolute;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(239,68,68,.4), rgba(168,85,247,.3), transparent);
  z-index: 7;
  animation: ddosStreamFlow 1.5s linear infinite;
}
.ddos-stream:nth-child(1) { top: 32%; right: 18%; height: 60px; transform: rotate(-15deg); animation-delay: 0s; }
.ddos-stream:nth-child(2) { top: 30%; right: 20%; height: 70px; transform: rotate(-8deg); animation-delay: .3s; }
.ddos-stream:nth-child(3) { top: 35%; right: 16%; height: 55px; transform: rotate(-22deg); animation-delay: .6s; }
.ddos-stream:nth-child(4) { top: 28%; right: 22%; height: 65px; transform: rotate(-5deg); animation-delay: .9s; }
.ddos-stream:nth-child(5) { top: 33%; right: 14%; height: 50px; transform: rotate(-28deg); animation-delay: 1.2s; }
@keyframes ddosStreamFlow {
  0% { opacity: 0; }
  20% { opacity: .8; }
  80% { opacity: .6; }
  100% { opacity: 0; }
}

/* ORB Relay nodes */
.orb-node {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: rgba(168,85,247,.06);
  border: 1px solid rgba(168,85,247,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
  animation: orbPulse 3s ease-in-out infinite;
}
.orb-node .orb-icon { font-size: .65rem; color: #c084fc; }
.orb-node:nth-child(1) { top: 45%; left: 12%; animation-delay: 0s; }
.orb-node:nth-child(2) { top: 55%; left: 22%; animation-delay: 1s; }
.orb-node:nth-child(3) { top: 48%; left: 78%; animation-delay: 2s; }
.orb-node:nth-child(4) { top: 52%; left: 88%; animation-delay: .5s; }
@keyframes orbPulse {
  0%,100% { border-color: rgba(168,85,247,.15); box-shadow: 0 0 5px rgba(168,85,247,.05); }
  50% { border-color: rgba(168,85,247,.5); box-shadow: 0 0 15px rgba(168,85,247,.15); }
}

/* Scan lines */
.scan-h {
  position: absolute; left: 0; width: 100%; height: 2px; z-index: 2;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,.3), transparent);
  animation: scanH 5s ease-in-out infinite;
}
.scan-h:nth-child(1) { top: 25%; animation-delay: 0s; }
.scan-h:nth-child(2) { top: 55%; animation-delay: 1.7s; }
.scan-h:nth-child(3) { top: 80%; animation-delay: 3.3s; }
@keyframes scanH {
  0% { opacity: 0; transform: translateX(-40%); }
  20% { opacity: .5; }
  50% { opacity: .7; transform: translateX(40%); }
  80% { opacity: .5; }
  100% { opacity: 0; transform: translateX(140%); }
}

/* Status bar */
.status-bar {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  z-index: 2;
  position: relative;
}
.status-indicator {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Courier New', monospace;
  font-size: .68rem;
  color: #5a7a8a;
  padding: .3rem .7rem;
  border: 1px solid rgba(168,85,247,.1);
  border-radius: 6px;
  background: rgba(168,85,247,.02);
  animation: statusBorder 8s ease-in-out infinite;
}
.status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  animation: statusCycle 5s ease-in-out infinite;
}
.status-indicator:nth-child(1) .status-dot { background: #a855f7; box-shadow: 0 0 6px rgba(168,85,247,.5); animation-delay: 0s; }
.status-indicator:nth-child(2) .status-dot { background: #ef4444; box-shadow: 0 0 6px rgba(239,68,68,.5); animation-delay: 1s; }
.status-indicator:nth-child(3) .status-dot { background: #f59e0b; box-shadow: 0 0 6px rgba(245,158,11,.5); animation-delay: 2s; }
.status-indicator:nth-child(4) .status-dot { background: #10b981; box-shadow: 0 0 6px rgba(16,185,129,.5); animation-delay: 3s; }
@keyframes statusCycle {
  0%,40% { opacity: .3; transform: scale(.8); }
  10%,30% { opacity: 1; transform: scale(1.3); }
  100% { opacity: .3; transform: scale(.8); }
}
@keyframes statusBorder {
  0%,100% { border-color: rgba(168,85,247,.08); }
  50% { border-color: rgba(168,85,247,.2); }
}

/* ═══════════════════════════════════════════════════════════════
   FLOATING PARTICLES
   ═══════════════════════════════════════════════════════════════ */
.particles {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: floatUp linear infinite;
}
.particle:nth-child(1)  { left: 5%;  width: 2px; height: 2px; animation-duration: 12s; animation-delay: 0s;   background: rgba(168,85,247,.3); }
.particle:nth-child(2)  { left: 15%; width: 1px; height: 1px; animation-duration: 18s; animation-delay: 2s;   background: rgba(124,58,237,.2); }
.particle:nth-child(3)  { left: 25%; width: 3px; height: 3px; animation-duration: 14s; animation-delay: 4s;   background: rgba(168,85,247,.25); }
.particle:nth-child(4)  { left: 35%; width: 1px; height: 1px; animation-duration: 20s; animation-delay: 1s;   background: rgba(192,132,252,.3); }
.particle:nth-child(5)  { left: 45%; width: 2px; height: 2px; animation-duration: 16s; animation-delay: 3s;   background: rgba(168,85,247,.2); }
.particle:nth-child(6)  { left: 55%; width: 1px; height: 1px; animation-duration: 22s; animation-delay: 5s;   background: rgba(124,58,237,.25); }
.particle:nth-child(7)  { left: 65%; width: 2px; height: 2px; animation-duration: 13s; animation-delay: 2.5s; background: rgba(168,85,247,.35); }
.particle:nth-child(8)  { left: 75%; width: 1px; height: 1px; animation-duration: 17s; animation-delay: .5s;  background: rgba(192,132,252,.2); }
.particle:nth-child(9)  { left: 85%; width: 3px; height: 3px; animation-duration: 15s; animation-delay: 6s;   background: rgba(168,85,247,.2); }
.particle:nth-child(10) { left: 95%; width: 1px; height: 1px; animation-duration: 19s; animation-delay: 1.5s; background: rgba(124,58,237,.3); }
.particle:nth-child(11) { left: 10%; width: 2px; height: 2px; animation-duration: 21s; animation-delay: 7s;   background: rgba(168,85,247,.15); }
.particle:nth-child(12) { left: 50%; width: 1px; height: 1px; animation-duration: 16s; animation-delay: 8s;   background: rgba(192,132,252,.15); }
@keyframes floatUp {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) translateX(30px); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   STAT GRID
   ═══════════════════════════════════════════════════════════════ */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}
.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(168,85,247,.03);
  border: 1px solid rgba(168,85,247,.12);
  border-radius: 12px;
  transition: transform .3s, box-shadow .3s;
  animation: statFloat 4s ease-in-out infinite;
}
.stat-box:nth-child(2) { animation-delay: .5s; }
.stat-box:nth-child(3) { animation-delay: 1s; }
.stat-box:nth-child(4) { animation-delay: 1.5s; }
@keyframes statFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.stat-box:hover { box-shadow: 0 8px 30px rgba(168,85,247,.08); transform: translateY(-6px); }
.stat-number {
  font-family: 'Courier New', monospace;
  font-size: 2rem;
  color: #a855f7;
  text-shadow: 0 0 20px rgba(168,85,247,.3);
}
.stat-number.red { color: #ef4444; text-shadow: 0 0 20px rgba(239,68,68,.3); }
.stat-number.amber { color: #f59e0b; text-shadow: 0 0 20px rgba(245,158,11,.3); }
.stat-number.green { color: #10b981; text-shadow: 0 0 20px rgba(16,185,129,.3); }
.stat-label { font-size: .8rem; color: #5a7a8a; margin-top: .3rem; }

/* ═══════════════════════════════════════════════════════════════
   DEFINITION BOX
   ═══════════════════════════════════════════════════════════════ */
.def-box {
  background: linear-gradient(135deg, rgba(168,85,247,.05), rgba(124,58,237,.03));
  border-left: 4px solid #a855f7;
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
}
.def-box .def-label {
  font-family: 'Courier New', monospace;
  font-size: .75rem;
  color: #a855f7;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

/* ═══════════════════════════════════════════════════════════════
   ANALOGY BOX
   ═══════════════════════════════════════════════════════════════ */
.analogy-box {
  background: linear-gradient(135deg, rgba(16,185,129,.05), rgba(168,85,247,.03));
  border-left: 4px solid #10b981;
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
  margin: 1.5rem 0;
}
.analogy-box .def-label { color: #10b981; }

/* ═══════════════════════════════════════════════════════════════
   TERM GRID
   ═══════════════════════════════════════════════════════════════ */
.term-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}
@media (max-width: 700px) { .term-grid { grid-template-columns: 1fr; } }
.term-item {
  padding: 1rem;
  background: rgba(168,85,247,.03);
  border: 1px solid rgba(168,85,247,.08);
  border-radius: 10px;
  transition: border-color .3s;
}
.term-item:hover { border-color: rgba(168,85,247,.25); }
.term-name {
  font-family: 'Courier New', monospace;
  font-size: .85rem;
  color: #a855f7;
  margin-bottom: .3rem;
}
.term-def { font-size: .82rem; color: #6a8a9a; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════
   SCENARIO TIMELINE
   ═══════════════════════════════════════════════════════════════ */
.scenario-timeline { position: relative; padding-left: 2rem; }
.scenario-timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #a855f7, #7c3aed, rgba(124,58,237,.2));
}
.timeline-item { position: relative; margin-bottom: 2rem; padding-left: 1.5rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2rem; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #0a0e17;
  border: 2px solid #a855f7;
  box-shadow: 0 0 10px rgba(168,85,247,.3);
}
.timeline-item.bad::before { border-color: #ef4444; box-shadow: 0 0 10px rgba(239,68,68,.3); }
.timeline-item.good::before { border-color: #10b981; box-shadow: 0 0 10px rgba(16,185,129,.3); }
.timeline-item h4 { color: #a855f7; margin-bottom: .4rem; font-size: 1rem; }
.timeline-item.bad h4 { color: #ef4444; }
.timeline-item.good h4 { color: #10b981; }
.timeline-item p { font-size: .92rem; color: #8fa3b8; }

/* ═══════════════════════════════════════════════════════════════
   STEPS
   ═══════════════════════════════════════════════════════════════ */
.steps-grid { display: flex; flex-direction: column; gap: 1.2rem; }
.step-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: rgba(15,22,36,.5);
  border: 1px solid rgba(168,85,247,.08);
  border-radius: 10px;
  padding: 1.3rem 1.5rem;
  transition: all .3s;
}
.step-card:hover {
  border-color: rgba(168,85,247,.2);
  background: rgba(15,22,36,.7);
  transform: translateX(6px);
}
.step-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(168,85,247,.15), rgba(124,58,237,.1));
  border: 1px solid rgba(168,85,247,.3);
  border-radius: 10px;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  color: #a855f7;
}
.step-content h4 { color: #e8ecf1; margin-bottom: .4rem; font-size: 1rem; }
.step-content p { font-size: .88rem; color: #8fa3b8; margin-bottom: .4rem; }
.step-content ul { list-style: none; padding: 0; }
.step-content ul li {
  font-size: .84rem; color: #6a8a9a; padding: .2rem 0 .2rem 1.2rem; position: relative;
}
.step-content ul li::before { content: '\203A'; position: absolute; left: 0; color: #a855f7; font-weight: bold; }

/* Protection tags */
.protect-tag {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: .62rem;
  padding: .1rem .4rem;
  border-radius: 3px;
  margin-left: .3rem;
  vertical-align: middle;
}
.protect-tag.detect { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.3); color: #f59e0b; }
.protect-tag.prevent { background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.3); color: #10b981; }
.protect-tag.respond { background: rgba(168,85,247,.12); border: 1px solid rgba(168,85,247,.3); color: #a855f7; }

/* ═══════════════════════════════════════════════════════════════
   MISTAKES &amp; BEST PRACTICES
   ═══════════════════════════════════════════════════════════════ */
.mb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .mb-grid { grid-template-columns: 1fr; } }
.mb-card { padding: 1.5rem; }
.mb-card.mistake { border-left: 3px solid #ef4444; }
.mb-card.best { border-left: 3px solid #10b981; }
.mb-card h3 { font-size: 1rem; margin-bottom: 1rem; }
.mb-card.mistake h3 { color: #ef4444; }
.mb-card.best h3 { color: #10b981; }
.mb-card ul { list-style: none; padding: 0; }
.mb-card ul li {
  padding: .5rem 0 .5rem 1.5rem;
  font-size: .88rem;
  color: #8fa3b8;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.mb-card.mistake ul li::before { content: '\2715'; position: absolute; left: 0; color: #ef4444; font-weight: bold; }
.mb-card.best ul li::before { content: '\2713'; position: absolute; left: 0; color: #10b981; font-weight: bold; }

/* ═══════════════════════════════════════════════════════════════
   RED TEAM vs BLUE TEAM
   ═══════════════════════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { position: relative; overflow: hidden; }
.team-card .team-label {
  position: absolute; top: 1rem; right: 1rem;
  font-family: 'Courier New', monospace;
  font-size: .65rem; letter-spacing: 2px; text-transform: uppercase;
  padding: .2rem .6rem; border-radius: 4px;
}
.team-card.red .team-label { color: #ef4444; border: 1px solid rgba(239,68,68,.3); background: rgba(239,68,68,.08); }
.team-card.blue .team-label { color: #a855f7; border: 1px solid rgba(168,85,247,.3); background: rgba(168,85,247,.08); }
.team-card h3 { margin-top: .5rem; margin-bottom: .8rem; font-size: 1.1rem; }
.team-card.red h3 { color: #f87171; }
.team-card.blue h3 { color: #c084fc; }

/* ═══════════════════════════════════════════════════════════════
   HUNTER CARD
   ═══════════════════════════════════════════════════════════════ */
.hunter-card {
  background: linear-gradient(135deg, rgba(245,158,11,.05), rgba(168,85,247,.03));
  border: 1px solid rgba(245,158,11,.15);
  border-radius: 12px;
  padding: 2rem;
}
.hunter-card h3 { color: #f59e0b; margin-bottom: .8rem; }

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-box {
  display: inline-block;
  background: linear-gradient(135deg, rgba(168,85,247,.08), rgba(124,58,237,.05));
  border: 1px solid rgba(168,85,247,.2);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  max-width: 800px;
  width: 100%;
}
.subtech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.subtech-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1rem;
  background: rgba(168,85,247,.04);
  border: 1px solid rgba(168,85,247,.15);
  border-radius: 10px;
  font-family: 'Courier New', monospace;
  font-size: .78rem;
  color: #a855f7;
  transition: all .3s;
  text-decoration: none;
}
.subtech-link:hover {
  background: rgba(168,85,247,.1);
  border-color: rgba(168,85,247,.4);
  box-shadow: 0 0 20px rgba(168,85,247,.1);
  color: #c084fc;
  transform: translateY(-2px);
}
.subtech-link .st-num {
  font-size: .9rem; font-weight: bold;
  color: #7c3aed;
  min-width: 70px;
}
.subtech-link .st-name { color: #8fa3b8; }
.subtech-link:hover .st-name { color: #c9d1d9; }

/* ═══════════════════════════════════════════════════════════════
   REFERENCE LINKS
   ═══════════════════════════════════════════════════════════════ */
.ref-links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1rem;
}
.ref-links a {
  font-size: .72rem;
  padding: .25rem .6rem;
  border: 1px solid rgba(168,85,247,.12);
  border-radius: 4px;
  color: #5a8a9a;
  transition: all .3s;
}
.ref-links a:hover {
  border-color: rgba(168,85,247,.4);
  color: #a855f7;
}

/* ═══════════════════════════════════════════════════════════════
   TOOL TAG
   ═══════════════════════════════════════════════════════════════ */
.tool-tag {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: .72rem;
  padding: .15rem .5rem;
  background: rgba(168,85,247,.06);
  border: 1px solid rgba(168,85,247,.15);
  border-radius: 4px;
  color: #a855f7;
  margin: .15rem;
}

/* ═══════════════════════════════════════════════════════════════
   WARNING BOX
   ═══════════════════════════════════════════════════════════════ */
.warn-box {
  background: linear-gradient(135deg, rgba(239,68,68,.06), rgba(245,158,11,.03));
  border: 1px solid rgba(239,68,68,.15);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.warn-box h4 { color: #ef4444; margin-bottom: .5rem; font-size: .95rem; }

/* ═══════════════════════════════════════════════════════════════
   GLOW CARD
   ═══════════════════════════════════════════════════════════════ */
.glow-card {
  position: relative;
  background: rgba(10,14,23,.85);
  border-radius: 14px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.glow-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168,85,247,.3), transparent 40%, transparent 60%, rgba(124,58,237,.3));
  z-index: -1;
  animation: borderGlow 4s ease-in-out infinite alternate;
}
@keyframes borderGlow {
  0% { opacity: .4; }
  100% { opacity: 1; }
}
.glow-card::after {
  content: '';
  position: absolute; inset: 1px;
  background: rgba(10,14,23,.95);
  border-radius: 13px;
  z-index: -1;
}
.glow-card h3 { color: #a855f7; margin-bottom: .8rem; font-size: 1.15rem; }
.glow-card p { margin-bottom: .8rem; }

/* ═══════════════════════════════════════════════════════════════
   PULSE RINGS (for C2)
   ═══════════════════════════════════════════════════════════════ */
.pulse-ring {
  position: absolute;
  width: 100px; height: 100px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,.3);
  animation: pulseRing 3s ease-out infinite;
  z-index: 4;
  pointer-events: none;
}
.pulse-ring:nth-child(2) { animation-delay: 1s; }
.pulse-ring:nth-child(3) { animation-delay: 2s; }
@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(.8); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   INFECTED DEVICE COUNTER
   ═══════════════════════════════════════════════════════════════ */
.counter-bar {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: 'Courier New', monospace;
  font-size: .55rem;
  color: rgba(168,85,247,.6);
  z-index: 12;
}
.counter-bar .cnt {
  color: #a855f7;
  font-weight: bold;
  animation: counterBlink 2s ease-in-out infinite;
}
@keyframes counterBlink {
  0%,100% { opacity: 1; }
  50% { opacity: .5; }
}

/* ═══════════════════════════════════════════════════════════════
   HELPER CLASSES
   ═══════════════════════════════════════════════════════════════ */
.text-accent { color: #a855f7; }
.text-violet { color: #7c3aed; }
.text-green { color: #10b981; }
.text-red { color: #ef4444; }
.text-amber { color: #f59e0b; }
.text-muted { color: #5a7a8a; }
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════════════════
   ADDITIONAL @keyframes (to reach 20+)
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeSlideIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 10px rgba(168,85,247,.05); }
  50% { box-shadow: 0 0 25px rgba(168,85,247,.15); }
}
@keyframes borderRotate {
  0% { border-color: rgba(168,85,247,.2); }
  33% { border-color: rgba(192,132,252,.3); }
  66% { border-color: rgba(124,58,237,.2); }
  100% { border-color: rgba(168,85,247,.2); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes iconBounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes reticleSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes orbRelayPulse {
  0%,100% { opacity: .4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes floodAttack {
  0% { transform: translateX(0) scaleX(1); opacity: .3; }
  50% { transform: translateX(5px) scaleX(1.5); opacity: .8; }
  100% { transform: translateX(10px) scaleX(1); opacity: .3; }
}
@keyframes waveExpand {
  0% { transform: translate(-50%,-50%) scale(0); opacity: .8; }
  100% { transform: translate(-50%,-50%) scale(1); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 968px) {
  .botnet-sim { height: 400px; }
  .bot-node { width: 30px; height: 30px; }
  .bot-node .bot-icon { font-size: .6rem; }
}
@media (max-width: 768px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .term-grid { grid-template-columns: 1fr; }
  .subtech-grid { grid-template-columns: 1fr; }
  .glass, .glow-card { padding: 1.3rem; }
  .botnet-sim { height: 350px; }
  .c2-center { width: 60px; height: 60px; }
  .bot-node:nth-child(5),
  .bot-node:nth-child(11),
  .bot-node:nth-child(15),
  .bot-node:nth-child(19),
  .bot-node:nth-child(24) { display: none; }
  .ddos-target { top: 10%; right: 5%; }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .mb-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .botnet-sim { height: 300px; }
  .status-bar { gap: .5rem; }
  .status-indicator { font-size: .58rem; padding: .2rem .4rem; }
  .bot-node:nth-child(2),
  .bot-node:nth-child(4),
  .bot-node:nth-child(8),
  .bot-node:nth-child(9),
  .bot-node:nth-child(10),
  .bot-node:nth-child(14),
  .bot-node:nth-child(16),
  .bot-node:nth-child(18),
  .bot-node:nth-child(20),
  .bot-node:nth-child(21),
  .bot-node:nth-child(22),
  .bot-node:nth-child(23) { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}/* End custom CSS */