.elementor-15163 .elementor-element.elementor-element-0e3f869{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7ee8dd6 *//* ===== RESET &amp; BASE ===== */
html{scroll-behavior:smooth;font-size:16px}
body{
  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%);
  color:#c8d6e5;
  line-height:1.7;
  overflow-x:hidden;
}
a{color:#00f0ff;text-decoration:none;transition:color .3s,text-shadow .3s}
a:hover{color:#ec4899;text-shadow:0 0 8px rgba(236,72,153,.5)}
h1,h2,h3,h4{font-family:'Inter',sans-serif;color:#e8ecf1;font-weight:700;line-height:1.3}
code,.mono{font-family:'Share Tech Mono',monospace}
img{max-width:100%}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar{width:8px}
::-webkit-scrollbar-track{background:#0a0e17}
::-webkit-scrollbar-thumb{background:linear-gradient(180deg,#ec4899,#00f0ff);border-radius:4px}

/* ===== CONTAINER ===== */
.container{max-width:1100px;margin:0 auto;padding:0 1.5rem}

/* ===== HERO ===== */
.hero{
  position:relative;min-height:100vh;
  display:flex;align-items:center;justify-content:center;
  padding:6rem 1.5rem 3rem;overflow:hidden;
}

/* ===== GRID LINES ===== */
.grid-lines{
  position:absolute;inset:0;z-index:0;overflow:hidden;opacity:.08;
}
.grid-lines::before{
  content:'';position:absolute;
  top:0;left:0;right:0;bottom:0;
  background-image:
    linear-gradient(rgba(236,72,153,.3) 1px,transparent 1px),
    linear-gradient(90deg,rgba(236,72,153,.3) 1px,transparent 1px);
  background-size:60px 60px;
}

/* ===== SIMULATION WRAPPER ===== */
.sim-wrapper{
  position:relative;z-index:1;
  width:100%;max-width:960px;
  display:flex;flex-direction:column;align-items:center;gap:2rem;
}
.hero-title{text-align:center}
.hero-title .tag{
  display:inline-block;
  font-family:'Share Tech Mono',monospace;
  font-size:.75rem;letter-spacing:3px;text-transform:uppercase;
  color:#ec4899;
  border:1px solid rgba(236,72,153,.3);
  padding:.3rem 1rem;border-radius:20px;
  margin-bottom:1rem;
  animation:tagPulse 3s ease-in-out infinite;
}
@keyframes tagPulse{
  0%,100%{box-shadow:0 0 8px rgba(236,72,153,.2)}
  50%{box-shadow:0 0 20px rgba(236,72,153,.4)}
}
.hero-title h1{
  font-size:clamp(2rem,5vw,3.2rem);
  background:linear-gradient(135deg,#ec4899 0%,#00f0ff 50%,#ec4899 100%);
  background-size:200% auto;
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
  animation:gradShift 4s linear infinite;
  margin-bottom:.5rem;
}
@keyframes gradShift{
  0%{background-position:0% center}
  100%{background-position:200% center}
}
.hero-title .subtitle{
  font-family:'Share Tech Mono',monospace;
  font-size:.92rem;color:#5a7a8a;
  overflow:hidden;white-space:nowrap;
  max-width:700px;margin:0 auto;
  border-right:2px solid #ec4899;
  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}}

/* ===== ACCOUNT TAKEOVER SIMULATION ===== */
.takeover-sim{
  position:relative;
  width:100%;max-width:860px;
  height:520px;
  background:rgba(8,12,22,.85);
  border:1px solid rgba(236,72,153,.12);
  border-radius:16px;
  overflow:hidden;
}
.takeover-sim::before{
  content:'';position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(236,72,153,.03) 1px,transparent 1px),
    linear-gradient(90deg,rgba(236,72,153,.03) 1px,transparent 1px);
  background-size:40px 40px;
  border-radius:16px;
}

/* ===== VICTIM ACCOUNT CARD ===== */
.victim-card{
  position:absolute;
  top:50%;left:30%;
  transform:translate(-50%,-50%);
  width:180px;height:220px;
  background:linear-gradient(145deg,rgba(15,22,36,.95),rgba(20,28,45,.9));
  border:2px solid rgba(0,240,255,.3);
  border-radius:14px;
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;
  gap:8px;
  box-shadow:0 0 30px rgba(0,240,255,.1);
  animation:victimPulse 4s ease-in-out infinite;
  z-index:10;
}
@keyframes victimPulse{
  0%,30%{border-color:rgba(0,240,255,.3);box-shadow:0 0 30px rgba(0,240,255,.1)}
  50%,100%{border-color:rgba(236,72,153,.7);box-shadow:0 0 50px rgba(236,72,153,.2)}
}
.victim-avatar{
  width:56px;height:56px;
  border-radius:50%;
  background:linear-gradient(135deg,rgba(0,240,255,.3),rgba(236,72,153,.2));
  border:2px solid rgba(0,240,255,.5);
  display:flex;align-items:center;justify-content:center;
  font-size:1.8rem;
  animation:avatarGlow 2s ease-in-out infinite;
}
@keyframes avatarGlow{
  0%,100%{opacity:.7;filter:brightness(1)}
  50%{opacity:1;filter:brightness(1.3)}
}
.victim-name{
  font-family:'Share Tech Mono',monospace;
  font-size:.7rem;color:#00f0ff;
  letter-spacing:1px;
}
.victim-email{
  font-family:'Share Tech Mono',monospace;
  font-size:.52rem;color:#5a7a8a;
}
.victim-status{
  font-family:'Share Tech Mono',monospace;
  font-size:.48rem;color:#00f0ff;
  padding:2px 10px;
  border:1px solid rgba(0,240,255,.2);
  border-radius:10px;
  animation:statusCycle 4s ease-in-out infinite;
}
@keyframes statusCycle{
  0%,25%{color:#00f0ff;border-color:rgba(0,240,255,.3);content:"SECURE"}
  50%,75%{color:#ff4444;border-color:rgba(255,68,68,.5)}
  100%{color:#ec4899;border-color:rgba(236,72,153,.5)}
}

/* ===== ATTACKER ICON ===== */
.attacker-icon{
  position:absolute;
  top:50%;right:12%;
  transform:translateY(-50%);
  width:70px;height:70px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(236,72,153,.2),rgba(236,72,153,.05));
  border:2px solid rgba(236,72,153,.4);
  display:flex;align-items:center;justify-content:center;
  font-size:2rem;
  z-index:10;
  animation:attackerGlow 2.5s ease-in-out infinite;
}
@keyframes attackerGlow{
  0%,100%{box-shadow:0 0 20px rgba(236,72,153,.2);border-color:rgba(236,72,153,.4)}
  50%{box-shadow:0 0 40px rgba(236,72,153,.5);border-color:rgba(236,72,153,.8)}
}

/* ===== CREDENTIAL THEFT FLOW ===== */
.cred-flow{
  position:absolute;
  top:50%;left:46%;
  z-index:8;
  display:flex;flex-direction:column;gap:8px;
  align-items:center;
}
.cred-packet{
  width:24px;height:24px;
  border-radius:4px;
  display:flex;align-items:center;justify-content:center;
  font-family:'Share Tech Mono',monospace;
  font-size:.55rem;
  animation:credFly 3s ease-in-out infinite;
}
.cred-packet:nth-child(1){background:rgba(0,240,255,.15);border:1px solid rgba(0,240,255,.3);color:#00f0ff;animation-delay:0s}
.cred-packet:nth-child(2){background:rgba(0,240,255,.15);border:1px solid rgba(0,240,255,.3);color:#00f0ff;animation-delay:.6s}
.cred-packet:nth-child(3){background:rgba(236,72,153,.15);border:1px solid rgba(236,72,153,.3);color:#ec4899;animation-delay:1.2s}
@keyframes credFly{
  0%{opacity:0;transform:translateX(-40px)}
  20%{opacity:1;transform:translateX(0)}
  50%{opacity:1;transform:translateX(80px)}
  70%{opacity:.5;transform:translateX(140px)}
  100%{opacity:0;transform:translateX(200px)}
}

/* ===== ATTACK METHOD ICONS ===== */
.method-icon{
  position:absolute;
  width:48px;height:48px;
  border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;
  border:1px solid;
  z-index:8;
}
.method-icon.m-phish{
  top:30px;left:30px;
  background:rgba(255,68,68,.06);
  border-color:rgba(255,68,68,.25);
  animation:methodFloat1 4s ease-in-out infinite;
}
.method-icon.m-darkweb{
  top:30px;right:30px;
  background:rgba(168,85,247,.06);
  border-color:rgba(168,85,247,.25);
  animation:methodFloat2 4s ease-in-out infinite .5s;
}
.method-icon.m-brute{
  bottom:30px;left:30px;
  background:rgba(240,165,0,.06);
  border-color:rgba(240,165,0,.25);
  animation:methodFloat3 4s ease-in-out infinite 1s;
}
.method-icon.m-insider{
  bottom:30px;right:30px;
  background:rgba(236,72,153,.06);
  border-color:rgba(236,72,153,.25);
  animation:methodFloat4 4s ease-in-out infinite 1.5s;
}
@keyframes methodFloat1{
  0%,100%{transform:translateY(0);opacity:.6}
  50%{transform:translateY(-8px);opacity:1}
}
@keyframes methodFloat2{
  0%,100%{transform:translateY(0);opacity:.6}
  50%{transform:translateY(-8px);opacity:1}
}
@keyframes methodFloat3{
  0%,100%{transform:translateY(0);opacity:.6}
  50%{transform:translateY(-8px);opacity:1}
}
@keyframes methodFloat4{
  0%,100%{transform:translateY(0);opacity:.6}
  50%{transform:translateY(-8px);opacity:1}
}
.method-label{
  position:absolute;
  font-family:'Share Tech Mono',monospace;
  font-size:.4rem;
  color:#5a7a8a;
  letter-spacing:1px;
  white-space:nowrap;
}
.m-phish+.method-label,.m-darkweb+.method-label,.m-brute+.method-label,.m-insider+.method-label{
  top:52px;left:18px;
}

/* ===== LOGIN PANEL ===== */
.login-panel{
  position:absolute;
  top:20px;left:50%;
  transform:translateX(-50%);
  width:280px;
  background:rgba(8,12,22,.95);
  border:1px solid rgba(236,72,153,.2);
  border-radius:10px;
  padding:12px;
  z-index:12;
  font-family:'Share Tech Mono',monospace;
}
.login-panel .lp-title{
  font-size:.55rem;color:#ec4899;
  letter-spacing:2px;
  text-align:center;
  margin-bottom:8px;
  animation:lpFlash 2s ease-in-out infinite;
}
@keyframes lpFlash{
  0%,100%{opacity:.7}
  50%{opacity:1;text-shadow:0 0 8px rgba(236,72,153,.4)}
}
.lp-field{
  font-size:.45rem;color:#5a7a8a;
  margin-bottom:4px;
}
.lp-field span{color:#00f0ff}
.lp-row{
  display:flex;gap:4px;
  margin-bottom:4px;
}
.lp-dots{
  display:flex;gap:2px;
}
.lp-dot{
  width:6px;height:6px;
  border-radius:2px;
  background:rgba(236,72,153,.2);
  animation:dotReveal 4s ease-in-out infinite;
}
.lp-dot:nth-child(1){animation-delay:0s}
.lp-dot:nth-child(2){animation-delay:.15s}
.lp-dot:nth-child(3){animation-delay:.3s}
.lp-dot:nth-child(4){animation-delay:.45s}
.lp-dot:nth-child(5){animation-delay:.6s}
.lp-dot:nth-child(6){animation-delay:.75s}
.lp-dot:nth-child(7){animation-delay:.9s}
.lp-dot:nth-child(8){animation-delay:1.05s}
.lp-dot:nth-child(9){animation-delay:1.2s}
.lp-dot:nth-child(10){animation-delay:1.35s}
@keyframes dotReveal{
  0%,20%{background:rgba(236,72,153,.2)}
  40%,70%{background:rgba(236,72,153,.7)}
  90%,100%{background:rgba(236,72,153,.2)}
}
.lp-btn{
  width:100%;
  padding:4px;
  background:linear-gradient(135deg,rgba(236,72,153,.2),rgba(236,72,153,.05));
  border:1px solid rgba(236,72,153,.3);
  border-radius:4px;
  color:#ec4899;
  font-family:'Share Tech Mono',monospace;
  font-size:.48rem;
  text-align:center;
  letter-spacing:1px;
  animation:btnPulse 4s ease-in-out infinite 1.5s;
}
@keyframes btnPulse{
  0%,40%{opacity:.5}
  60%,80%{opacity:1;box-shadow:0 0 12px rgba(236,72,153,.3)}
  100%{opacity:.5}
}

/* ===== DATA EXFIL PANEL ===== */
.exfil-panel{
  position:absolute;
  bottom:20px;left:50%;
  transform:translateX(-50%);
  width:280px;
  background:rgba(8,12,22,.95);
  border:1px solid rgba(255,68,68,.2);
  border-radius:10px;
  padding:12px;
  z-index:12;
  font-family:'Share Tech Mono',monospace;
}
.exfil-panel .ep-title{
  font-size:.55rem;color:#ff4444;
  letter-spacing:2px;
  text-align:center;
  margin-bottom:8px;
  animation:epBlink 1s ease-in-out infinite;
}
@keyframes epBlink{
  0%,100%{opacity:.6}
  50%{opacity:1}
}
.ep-row{
  display:flex;justify-content:space-between;
  font-size:.42rem;
  padding:2px 0;
  border-bottom:1px solid rgba(255,255,255,.03);
}
.ep-key{color:#5a7a8a}
.ep-val{color:#ff4444;animation:epValFade 4s ease-in-out infinite}
.ep-row:nth-child(2) .ep-val{animation-delay:.3s}
.ep-row:nth-child(3) .ep-val{animation-delay:.6s}
.ep-row:nth-child(4) .ep-val{animation-delay:.9s}
.ep-row:nth-child(5) .ep-val{animation-delay:1.2s}
@keyframes epValFade{
  0%,20%{opacity:0}
  40%,80%{opacity:1}
  100%{opacity:0}
}

/* ===== SCAN LINE ===== */
.scan-line-h{
  position:absolute;
  top:0;left:0;right:0;
  height:2px;
  background:linear-gradient(90deg,transparent,rgba(236,72,153,.4),transparent);
  animation:scanH 5s linear infinite;
  z-index:15;
}
@keyframes scanH{
  0%{top:0}
  100%{top:100%}
}

/* ===== SECTION STYLES ===== */
.section{padding:5rem 0;position:relative;z-index:1}
.section-header{text-align:center;margin-bottom:3rem}
.section-header .section-tag{
  display:inline-block;
  font-family:'Share Tech Mono',monospace;
  font-size:.7rem;letter-spacing:2px;text-transform:uppercase;
  color:#ec4899;margin-bottom:.5rem;
}
.section-tit{
  font-size:clamp(1.5rem,3vw,2.2rem);
  background:linear-gradient(90deg,#e8ecf1,#ec4899);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
}
.section-header .divider{
  width:60px;height:3px;margin:1rem auto 0;
  background:linear-gradient(90deg,#ec4899,#00f0ff);border-radius:2px;
}

/* ===== GLASS CARD ===== */
.glass-card{
  background:rgba(15,22,36,.6);
  backdrop-filter:blur(10px);
  border:1px solid rgba(236,72,153,.1);
  border-radius:12px;
  padding:2rem;
  margin-bottom:1.5rem;
  transition:border-color .3s,box-shadow .3s;
}
.glass-card:hover{
  border-color:rgba(236,72,153,.25);
  box-shadow:0 0 30px rgba(236,72,153,.05);
}

/* ===== GLOW BORDER 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(236,72,153,.3),transparent 40%,transparent 60%,rgba(0,240,255,.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:#ec4899;margin-bottom:.8rem;font-size:1.15rem}
.glow-card p{margin-bottom:.8rem}

/* ===== STAT BOX ===== */
.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(236,72,153,.03);
  border:1px solid rgba(236,72,153,.12);
  border-radius:10px;
  transition:transform .3s,box-shadow .3s;
}
.stat-box:hover{transform:translateY(-4px);box-shadow:0 8px 30px rgba(236,72,153,.08)}
.stat-number{
  font-family:'Share Tech Mono',monospace;
  font-size:2rem;color:#ec4899;
  text-shadow:0 0 20px rgba(236,72,153,.3);
}
.stat-number.green{color:#00ff41;text-shadow:0 0 20px rgba(0,255,65,.3)}
.stat-number.red{color:#ff4444;text-shadow:0 0 20px rgba(255,68,68,.3)}
.stat-number.cyan{color:#00f0ff;text-shadow:0 0 20px rgba(0,240,255,.3)}
.stat-label{font-size:.78rem;color:#5a7a8a;margin-top:.3rem}

/* ===== DEFINITION BOX ===== */
.def-box{
  background:linear-gradient(135deg,rgba(236,72,153,.05),rgba(0,240,255,.03));
  border-left:4px solid #ec4899;
  padding:1.5rem 2rem;
  border-radius:0 10px 10px 0;
  margin:1.5rem 0;
}
.def-box .def-label{
  font-family:'Share Tech Mono',monospace;
  font-size:.75rem;color:#ec4899;
  letter-spacing:1px;text-transform:uppercase;
  margin-bottom:.5rem;
}
.def-box p{font-size:.95rem;line-height:1.8}

/* ===== ANALOGY BOX ===== */
.analogy-box{
  background:linear-gradient(135deg,rgba(0,240,255,.05),rgba(236,72,153,.03));
  border-left:4px solid #00f0ff;
  padding:1.5rem 2rem;
  border-radius:0 10px 10px 0;
  margin:1.5rem 0;
}
.analogy-box .def-label{color:#00f0ff}

/* ===== SCENARIO ===== */
.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,#ff4444,#ec4899,#00f0ff,rgba(0,240,255,.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 #ec4899;
  box-shadow:0 0 10px rgba(236,72,153,.3);
  animation:tlDot 3s ease-in-out infinite;
}
@keyframes tlDot{
  0%,100%{box-shadow:0 0 10px rgba(236,72,153,.3)}
  50%{box-shadow:0 0 20px rgba(236,72,153,.5)}
}
.timeline-item.bad::before{border-color:#ff4444;box-shadow:0 0 10px rgba(255,68,68,.3)}
.timeline-item.good::before{border-color:#00ff41;box-shadow:0 0 10px rgba(0,255,65,.3)}
.timeline-item h4{color:#ec4899;margin-bottom:.4rem;font-size:1rem}
.timeline-item.bad h4{color:#ff6666}
.timeline-item.good h4{color:#44ff88}
.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(236,72,153,.08);
  border-radius:10px;
  padding:1.3rem 1.5rem;
  transition:all .3s;
}
.step-card:hover{
  border-color:rgba(236,72,153,.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(236,72,153,.15),rgba(0,240,255,.1));
  border:1px solid rgba(236,72,153,.3);
  border-radius:10px;
  font-family:'Share Tech Mono',monospace;
  font-size:1.1rem;color:#ec4899;
}
.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:#ec4899;font-weight:bold;
}

/* ===== PROTECTION TAG ===== */
.prot-tag{
  display:inline-block;
  font-family:'Share Tech Mono',monospace;
  font-size:.65rem;
  padding:.1rem .4rem;
  border-radius:3px;
  margin-left:.3rem;
  font-weight:600;
  letter-spacing:.5px;
}
.prot-tag.prevent{background:rgba(0,255,65,.08);color:#00ff41;border:1px solid rgba(0,255,65,.2)}
.prot-tag.detect{background:rgba(0,240,255,.08);color:#00f0ff;border:1px solid rgba(0,240,255,.2)}
.prot-tag.respond{background:rgba(240,165,0,.08);color:#f0a500;border:1px solid rgba(240,165,0,.2)}

/* ===== MISTAKES &amp; BEST ===== */
.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 #ff4444}
.mb-card.best{border-left:3px solid #00ff41}
.mb-card h3{font-size:1rem;margin-bottom:1rem}
.mb-card.mistake h3{color:#ff6666}
.mb-card.best h3{color:#44ff88}
.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:#ff4444;font-weight:bold;font-size:.9rem}
.mb-card.best ul li::before{content:'\2713';position:absolute;left:0;color:#00ff41;font-weight:bold;font-size:.9rem}

/* ===== TEAM VIEWS ===== */
.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:'Share Tech Mono',monospace;
  font-size:.65rem;letter-spacing:2px;text-transform:uppercase;
  padding:.2rem .6rem;border-radius:4px;
}
.team-card.red .team-label{color:#ff4444;border:1px solid rgba(255,68,68,.3);background:rgba(255,68,68,.08)}
.team-card.blue .team-label{color:#00f0ff;border:1px solid rgba(0,240,255,.3);background:rgba(0,240,255,.08)}
.team-card h3{margin-top:.5rem;margin-bottom:.8rem;font-size:1.1rem}
.team-card.red h3{color:#ff8888}
.team-card.blue h3{color:#66ddff}

/* ===== HUNTER SECTION ===== */
.hunter-card{
  background:linear-gradient(135deg,rgba(236,72,153,.05),rgba(255,68,68,.03));
  border:1px solid rgba(236,72,153,.15);
  border-radius:12px;
  padding:2rem;
}
.hunter-card h3{color:#ec4899;margin-bottom:.8rem}

/* ===== CTA ===== */
.cta-section{
  text-align:center;
  padding:4rem 0;
}
.cta-box{
  display:inline-block;
  background:linear-gradient(135deg,rgba(236,72,153,.08),rgba(0,240,255,.05));
  border:1px solid rgba(236,72,153,.2);
  border-radius:16px;
  padding:3rem 2.5rem;
  max-width:700px;
}
.cta-box h2{margin-bottom:1rem;font-size:1.5rem}
.cta-box p{margin-bottom:1.5rem;color:#8fa3b8}

/* ===== SUB-TECHNIQUE LINKS ===== */
.subtech-links{
  display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;
  margin-top:2rem;
}
.subtech-link{
  display:inline-flex;align-items:center;gap:.4rem;
  padding:.5rem 1rem;
  background:rgba(236,72,153,.05);
  border:1px solid rgba(236,72,153,.2);
  border-radius:8px;
  font-family:'Share Tech Mono',monospace;
  font-size:.78rem;color:#ec4899;
  transition:all .3s;
}
.subtech-link:hover{
  background:rgba(236,72,153,.1);
  border-color:rgba(236,72,153,.5);
  box-shadow:0 0 20px rgba(236,72,153,.1);
  color:#f472b6;
}

/* ===== FLOATING PARTICLES ===== */
.particles{
  position:fixed;inset:0;z-index:0;pointer-events:none;overflow:hidden;
}
.particle{
  position:absolute;width:2px;height:2px;
  background:rgba(236,72,153,.4);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(236,72,153,.3)}
.particle:nth-child(2){left:15%;width:1px;height:1px;animation-duration:18s;animation-delay:2s;background:rgba(0,240,255,.2)}
.particle:nth-child(3){left:25%;width:3px;height:3px;animation-duration:14s;animation-delay:4s;background:rgba(236,72,153,.25)}
.particle:nth-child(4){left:35%;width:1px;height:1px;animation-duration:20s;animation-delay:1s;background:rgba(168,85,247,.3)}
.particle:nth-child(5){left:45%;width:2px;height:2px;animation-duration:16s;animation-delay:3s;background:rgba(236,72,153,.2)}
.particle:nth-child(6){left:55%;width:1px;height:1px;animation-duration:22s;animation-delay:5s;background:rgba(0,240,255,.25)}
.particle:nth-child(7){left:65%;width:2px;height:2px;animation-duration:13s;animation-delay:2.5s;background:rgba(236,72,153,.35)}
.particle:nth-child(8){left:75%;width:1px;height:1px;animation-duration:17s;animation-delay:.5s;background:rgba(168,85,247,.2)}
.particle:nth-child(9){left:85%;width:3px;height:3px;animation-duration:15s;animation-delay:6s;background:rgba(236,72,153,.2)}
.particle:nth-child(10){left:95%;width:1px;height:1px;animation-duration:19s;animation-delay:1.5s;background:rgba(0,240,255,.3)}
.particle:nth-child(11){left:10%;width:2px;height:2px;animation-duration:21s;animation-delay:7s;background:rgba(236,72,153,.15)}
.particle:nth-child(12){left:50%;width:1px;height:1px;animation-duration:16s;animation-delay:8s;background:rgba(168,85,247,.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}
}

/* ===== REFERENCE BADGE ===== */
.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(236,72,153,.12);
  border-radius:4px;
  color:#5a8a9a;
  transition:all .3s;
}
.ref-links a:hover{
  border-color:rgba(236,72,153,.4);
  color:#ec4899;
}

/* ===== DATA TABLE ===== */
.data-table{
  width:100%;border-collapse:collapse;margin:1rem 0;
  font-family:'Share Tech Mono',monospace;
  font-size:.8rem;
}
.data-table th{
  text-align:left;
  padding:.6rem .8rem;
  background:rgba(236,72,153,.08);
  border:1px solid rgba(236,72,153,.15);
  color:#ec4899;
  font-weight:500;
  letter-spacing:.5px;
  font-size:.7rem;
}
.data-table td{
  padding:.5rem .8rem;
  border:1px solid rgba(255,255,255,.05);
  color:#8fa3b8;
}
.data-table tr:nth-child(even){background:rgba(236,72,153,.02)}

/* ===== ACCENT LINE ===== */
.accent-line{
  width:100%;height:1px;margin:2rem 0;
  background:linear-gradient(90deg,transparent,rgba(236,72,153,.3),rgba(0,240,255,.3),transparent);
  animation:accentShimmer 3s ease-in-out infinite;
}
@keyframes accentShimmer{
  0%,100%{opacity:.3}
  50%{opacity:.8}
}

/* ===== PULSE RING ===== */
.pulse-ring{
  position:absolute;
  top:50%;left:30%;
  transform:translate(-50%,-50%);
  width:200px;height:200px;
  border:2px solid rgba(236,72,153,.15);
  border-radius:50%;
  animation:pulseRing 2.5s ease-out infinite;
  z-index:2;
}
.pulse-ring:nth-of-type(2){
  animation-delay:.8s;
  border-color:rgba(0,240,255,.1);
}
.pulse-ring:nth-of-type(3){
  animation-delay:1.6s;
  border-color:rgba(168,85,247,.08);
}
@keyframes pulseRing{
  0%{transform:translate(-50%,-50%) scale(.5);opacity:1}
  100%{transform:translate(-50%,-50%) scale(1.8);opacity:0}
}

/* ===== ATTACK FLOW LINE ===== */
.attack-flow-line{
  position:absolute;
  top:50%;left:40%;
  width:260px;height:2px;
  background:linear-gradient(90deg,rgba(0,240,255,.1),rgba(236,72,153,.5),rgba(255,68,68,.3));
  z-index:5;
  transform:translateY(-50%);
  animation:flowPulse 2s ease-in-out infinite;
}
@keyframes flowPulse{
  0%,100%{opacity:.3}
  50%{opacity:.8}
}

/* ===== FRAGMENT FLOAT ===== */
.frag-float{
  position:absolute;
  font-family:'Share Tech Mono',monospace;
  font-size:.42rem;
  color:rgba(236,72,153,.3);
  animation:fragFloat 8s linear infinite;
  pointer-events:none;
  z-index:1;
}
@keyframes fragFloat{
  0%{transform:translateY(0) translateX(0);opacity:0}
  10%{opacity:.4}
  90%{opacity:.4}
  100%{transform:translateY(-60px) translateX(20px);opacity:0}
}

/* ===== HELPER CLASSES ===== */
.text-cyan{color:#00f0ff}
.text-green{color:#00ff41}
.text-red{color:#ff4444}
.text-pink{color:#ec4899}
.text-muted{color:#5a7a8a}
.mt-1{margin-top:.5rem}
.mt-2{margin-top:1rem}
.mt-3{margin-top:1.5rem}
.mb-1{margin-bottom:.5rem}
.mb-2{margin-bottom:1rem}
.text-center{text-align:center}

/* ===== HUNTER QUERY ===== */
.query-grid{display:flex;flex-direction:column;gap:.8rem;margin-top:1rem}
.query-row{
  display:flex;gap:1rem;align-items:center;
  padding:.6rem .8rem;
  background:rgba(236,72,153,.03);
  border:1px solid rgba(236,72,153,.08);
  border-radius:6px;
  font-family:'Share Tech Mono',monospace;
  font-size:.78rem;
  transition:border-color .3s;
}
.query-row:hover{border-color:rgba(236,72,153,.25)}
.query-type{
  flex-shrink:0;
  padding:.15rem .5rem;
  border-radius:3px;
  font-size:.65rem;
  font-weight:600;
}
.query-type.high{background:rgba(255,68,68,.1);color:#ff4444;border:1px solid rgba(255,68,68,.2)}
.query-type.med{background:rgba(240,165,0,.1);color:#f0a500;border:1px solid rgba(240,165,0,.2)}
.query-type.low{background:rgba(0,255,65,.1);color:#00ff41;border:1px solid rgba(0,255,65,.2)}

/* ===== KEY TERM TABLE ===== */
.terms-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin:1.5rem 0}
@media(max-width:700px){.terms-grid{grid-template-columns:1fr}}
.term-card{
  padding:1.2rem;
  background:rgba(15,22,36,.5);
  border:1px solid rgba(236,72,153,.08);
  border-radius:10px;
  transition:border-color .3s;
}
.term-card:hover{border-color:rgba(236,72,153,.2)}
.term-card h4{color:#ec4899;font-size:.9rem;margin-bottom:.3rem}
.term-card .term-def{font-size:.82rem;color:#8fa3b8;margin-bottom:.5rem}
.term-card .term-analogy{font-size:.78rem;color:#5a7a8a;font-style:italic}

/* ===== SHIELD BREAK ===== */
.shield-icon{
  position:absolute;
  top:50%;left:30%;
  transform:translate(-50%,-50%);
  font-size:3rem;
  z-index:6;
  opacity:0;
  animation:shieldAppear 6s ease-in-out infinite;
}
@keyframes shieldAppear{
  0%,10%{opacity:0;transform:translate(-50%,-50%) scale(.5) rotate(0deg)}
  20%{opacity:.8;transform:translate(-50%,-50%) scale(1) rotate(0deg)}
  40%{opacity:.8;transform:translate(-50%,-50%) scale(1) rotate(10deg)}
  50%{opacity:0;transform:translate(-50%,-50%) scale(1.2) rotate(15deg)}
  100%{opacity:0}
}

/* ===== LOCK ANIMATION ===== */
.lock-anim{
  position:absolute;
  bottom:80px;left:30%;
  transform:translateX(-50%);
  z-index:11;
  font-size:1.8rem;
  animation:lockBreak 6s ease-in-out infinite;
}
@keyframes lockBreak{
  0%,15%{opacity:1;transform:translateX(-50%) scale(1)}
  25%{opacity:1;transform:translateX(-50%) scale(1.1) rotate(-5deg)}
  30%{opacity:0;transform:translateX(-50%) scale(.5) rotate(10deg)}
  100%{opacity:0}
}

/* ===== STATUS BAR ===== */
.status-bar{
  display:flex;gap:1.2rem;justify-content:center;flex-wrap:wrap;
  margin-top:1rem;z-index:2;position:relative;
}
.status-indicator{
  display:flex;align-items:center;gap:.5rem;
  font-family:'Share Tech Mono',monospace;font-size:.7rem;
  color:#5a7a8a;
  padding:.35rem .8rem;
  border:1px solid rgba(236,72,153,.1);
  border-radius:6px;
  background:rgba(236,72,153,.02);
}
.status-dot{
  width:8px;height:8px;border-radius:50%;
}
.status-indicator:nth-child(1) .status-dot{background:#ff4444;box-shadow:0 0 8px rgba(255,68,68,.5);animation:sDot 2s ease-in-out infinite}
.status-indicator:nth-child(2) .status-dot{background:#ec4899;box-shadow:0 0 8px rgba(236,72,153,.5);animation:sDot 2s ease-in-out infinite .7s}
.status-indicator:nth-child(3) .status-dot{background:#a855f7;box-shadow:0 0 8px rgba(168,85,247,.5);animation:sDot 2s ease-in-out infinite 1.4s}
.status-indicator:nth-child(4) .status-dot{background:#f0a500;box-shadow:0 0 8px rgba(240,165,0,.5);animation:sDot 2s ease-in-out infinite 2.1s}
.status-indicator:nth-child(5) .status-dot{background:#00f0ff;box-shadow:0 0 8px rgba(0,240,255,.5);animation:sDot 2s ease-in-out infinite 2.8s}
@keyframes sDot{
  0%,100%{opacity:.3;transform:scale(.8)}
  50%{opacity:1;transform:scale(1.3)}
}

/* ===== RADAR SWEEP ===== */
.radar-sweep{
  position:absolute;
  top:50%;left:30%;
  transform:translate(-50%,-50%);
  width:300px;height:300px;
  border-radius:50%;
  border:1px solid rgba(236,72,153,.06);
  z-index:3;
  overflow:hidden;
}
.radar-sweep::before{
  content:'';position:absolute;
  top:50%;left:50%;
  width:50%;height:2px;
  background:linear-gradient(90deg,rgba(236,72,153,.4),transparent);
  transform-origin:left center;
  animation:radarSpin 4s linear infinite;
}
@keyframes radarSpin{
  0%{transform:rotate(0deg)}
  100%{transform:rotate(360deg)}
}

/* ===== APT TAGS ===== */
.apt-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin:1rem 0}
.apt-tag{
  font-family:'Share Tech Mono',monospace;
  font-size:.7rem;
  padding:.2rem .6rem;
  border-radius:4px;
  border:1px solid rgba(236,72,153,.15);
  color:#ec4899;
  background:rgba(236,72,153,.04);
  transition:all .3s;
}
.apt-tag:hover{
  border-color:rgba(236,72,153,.4);
  background:rgba(236,72,153,.1);
  box-shadow:0 0 10px rgba(236,72,153,.1);
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .takeover-sim{height:440px}
  .login-panel,.exfil-panel{width:220px;padding:8px}
  .glass-card,.glow-card{padding:1.3rem}
  .stat-grid{grid-template-columns:1fr 1fr}
  .hero-title h1{font-size:1.8rem}
  .terms-grid{grid-template-columns:1fr}
  .method-icon{width:36px;height:36px;font-size:1rem}
  .victim-card{width:140px;height:180px}
  .attacker-icon{width:50px;height:50px;font-size:1.5rem}
}
@media(max-width:480px){
  .takeover-sim{height:380px}
  .stat-grid{grid-template-columns:1fr}
  .mb-grid{grid-template-columns:1fr}
  .team-grid{grid-template-columns:1fr}
}/* End custom CSS */