:root {
  --black: #000000;
  --rich: #050507;
  --red: #FF0033;
  --red-2: #E10600;
  --crimson: #8B0000;
  --white: #FFFFFF;
  --slate: #A1A1AA;
  --slate-2: #71717A;
  --glass: rgba(8,8,10,0.6);
  --border: rgba(255,255,255,0.08);
  --ease: cubic-bezier(0.2,0.8,0.2,1);
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', 'SF Pro Display', 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

/* ===== BACKGROUND SYSTEM ===== */
.bg-system { position: fixed; inset:0; z-index:-1; overflow:hidden; background: var(--rich); }
.mesh { position:absolute; inset:-20%; filter: blur(60px); opacity:0.7; }
.blob {
  position:absolute; width:55vmax; height:55vmax; border-radius:50%;
  mix-blend-mode: screen; will-change: transform;
  animation: drift 40s var(--ease) infinite alternate;
}
.b1 { background: radial-gradient(circle at 30% 30%, #FF0033, transparent 60%); top:-10%; left:-15%; animation-duration:38s; }
.b2 { background: radial-gradient(circle at 70% 40%, #8B0000, transparent 60%); top:20%; right:-20%; animation-duration:45s; animation-delay:-5s; }
.b3 { background: radial-gradient(circle at 50% 50%, #E10600, transparent 55%); bottom:-15%; left:10%; animation-duration:52s; }
.b4 { background: radial-gradient(circle at 30% 70%, #FF0033, transparent 60%); bottom:-20%; right:5%; width:45vmax; height:45vmax; animation-duration:40s; animation-delay:-10s; }
@keyframes drift {
  0% { transform: translate3d(-5%,0,0) scale(1) rotate(0deg); }
  50% { transform: translate3d(5%,-8%,0) scale(1.1) rotate(20deg); }
  100% { transform: translate3d(10%,5%,0) scale(0.95) rotate(-15deg); }
}
#particles { position:absolute; inset:0; width:100%; height:100%; opacity:0.5; }
.grid-overlay {
  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: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}
.noise {
  position:absolute; inset:0; opacity:0.035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.vignette { position:absolute; inset:0; background: radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.85) 100%); pointer-events:none; }

/* ===== NAVBAR ===== */
.nav-wrap { position: fixed; top:20px; left:0; right:0; z-index:100; display:flex; justify-content:center; padding:0 16px; pointer-events:none; }
.nav {
  pointer-events:auto; width:100%; max-width:1380px; height:64px;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:0 12px 0 16px;
  background: rgba(8,8,10,0.6);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border:1px solid var(--border); border-radius:16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  transform: translateY(-20px); opacity:0; animation: navIn 0.8s var(--ease) 0.1s forwards;
}
@keyframes navIn { to { transform: translateY(0); opacity:1; } }
.nav-left { display:flex; align-items:center; gap:12px; min-width:0; }
.logo-circle { width:40px; height:40px; border-radius:50%; background:#000; padding:4px; border:1px solid rgba(255,255,255,0.1); box-shadow: 0 0 20px rgba(255,0,51,0.25); object-fit: contain; }
.brand {
  font-family: 'Impact', 'Arial Black', 'Helvetica Neue Condensed Black', sans-serif;
  font-weight:900; letter-spacing:0.5px; font-size:18px; white-space:nowrap;
  background: linear-gradient(180deg, #fff, #c7c7cc); -webkit-background-clip:text; background-clip:text; color:transparent;
}
.nav-center { display:flex; align-items:center; gap:4px; list-style:none; }
.nav-center a {
  display:inline-flex; align-items:center; gap:8px; padding:8px 12px; border-radius:10px; color:var(--slate);
  text-decoration:none; font-size:14px; font-weight:500; letter-spacing:0.2px; white-space:nowrap;
  transition: all 0.3s var(--ease);
}
.nav-center a svg {
  width: 14px; height: 14px;
  color: currentColor;
  transition: transform 0.3s var(--ease);
}
.nav-center a:hover svg { transform: translateY(-1px); }
.nav-center a:hover { color:white; background: rgba(255,0,51,0.12); box-shadow: inset 0 0 0 1px rgba(255,0,51,0.2); }
.nav-center a.active { color:white; background: rgba(255,255,255,0.06); }
.nav-right { display:flex; align-items:center; gap:12px; }
.launch-wrap { position:relative; padding:1.5px; border-radius:14px; overflow:hidden; isolation:isolate; }
.launch-wrap::before {
  content:''; position:absolute; inset:-50%; background: conic-gradient(from 0deg, transparent 0deg, var(--red) 60deg, var(--crimson) 120deg, transparent 180deg, transparent 360deg);
  animation: spin 3.5s linear infinite; z-index:0;
}
.launch-wrap::after {
  content:''; position:absolute; inset:1.5px; background:#000; border-radius:12px; z-index:1;
}
.btn-launch {
  position:relative; z-index:2; background: #0A0A0C; color:white; border:none; padding:10px 18px;
  border-radius:11px; font-weight:600; font-size:14px; cursor:pointer; display:flex; align-items:center; gap:8px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 10px rgba(255,0,51,0.15);
}
.btn-launch:hover { transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 30px rgba(255,0,51,0.25); }
@keyframes spin { to { transform: rotate(360deg); } }
.hamburger { display:none; width:40px; height:40px; border-radius:10px; border:1px solid var(--border); background:rgba(255,255,255,0.03); align-items:center; justify-content:center; cursor:pointer; }
.hamburger span { width:18px; height:2px; background:white; position:relative; display:block; transition:0.3s var(--ease); }
.hamburger span::before, .hamburger span::after { content:''; position:absolute; left:0; width:100%; height:2px; background:white; transition:0.3s var(--ease); }
.hamburger span::before { top:-6px; } .hamburger span::after { top:6px; }
.hamburger.open span { background: transparent !important; }
.hamburger.open span::before { transform: rotate(45deg); top: 0; }
.hamburger.open span::after { transform: rotate(-45deg); top: 0; }

/* Mobile Menu */
.mobile-menu {
  position:fixed; inset:0; z-index:90; background: rgba(0,0,0,0.9); backdrop-filter: blur(20px);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:32px;
  opacity:0; pointer-events:none; transition:0.4s var(--ease);
}
.mobile-menu.open { opacity:1; pointer-events:auto; }
.mobile-menu a {
  display:inline-flex; align-items:center; gap:12px;
  color:white; text-decoration:none; font-size:24px; font-weight:700; letter-spacing:-0.5px; opacity:0; transform:translateY(20px); transition:0.4s var(--ease);
}
.mobile-menu a svg {
  width: 24px; height: 24px;
  color: var(--red);
  opacity: 0.85;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.mobile-menu a:hover svg { transform: scale(1.1); opacity: 1; }
.mobile-menu.open a { opacity:1; transform:translateY(0); }
.mobile-menu a:nth-child(1){transition-delay:0.05s} .mobile-menu a:nth-child(2){transition-delay:0.1s} .mobile-menu a:nth-child(3){transition-delay:0.15s} .mobile-menu a:nth-child(4){transition-delay:0.2s} .mobile-menu a:nth-child(5){transition-delay:0.25s} .mobile-menu a:nth-child(6){transition-delay:0.3s}

/* ===== HERO ===== */
main { padding-top:140px; }
.hero {
  max-width:1400px; margin:0 auto; padding:0 24px 80px;
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap:80px; align-items:center;
}
.eyebrow {
  display:inline-flex; align-items:center; gap:8px; padding:6px 12px 6px 8px;
  background: rgba(255,255,255,0.04); border:1px solid var(--border); border-radius:999px;
  font-size:12px; letter-spacing:0.8px; text-transform:uppercase; color:var(--slate); font-weight:600;
  margin-bottom:28px; backdrop-filter: blur(10px);
  opacity:0; animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.dot { width:8px; height:8px; border-radius:50%; background:var(--red); box-shadow:0 0 0 0 rgba(255,0,51,0.7); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow:0 0 0 0 rgba(255,0,51,0.7);} 70% { box-shadow:0 0 0 8px rgba(255,0,51,0);} 100% { box-shadow:0 0 0 0 rgba(255,0,51,0);} }

.title-scam {
  font-family: 'Impact', 'Arial Black', sans-serif; font-weight:900; font-size:120px; line-height:0.8;
  letter-spacing:-3px; color:white; position:relative; display:flex; align-items:center;
  text-shadow: 0 2px 0 #000, 0 0 40px rgba(255,0,51,0.15);
  opacity:0; animation: fadeUp 0.8s var(--ease) 0.3s forwards;
}
.title-scam::after {
  content:''; position:absolute; inset:0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='t'%3E%3CfeTurbulence baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23t)' opacity='0.03'/%3E%3C/svg%3E");
  mix-blend-mode: overlay; pointer-events:none;
}
.a-wrap { position:relative; display:inline-block; margin:0 8px 0 12px; }
.a-target { position:absolute; left:50%; top:50%; transform:translate(-50%, -50%); width:84px; height:94px; pointer-events:none; z-index:2; margin-top:4px; }
.a-target svg { width:100%; height:100%; filter: drop-shadow(0 0 15px rgba(255,0,51,0.6)); }

.title-hunters {
  font-family: 'Impact', 'Arial Black', sans-serif; font-weight:900; font-size:110px; line-height:0.85;
  letter-spacing:-2px; transform: skewX(-8deg); margin-left:4px; margin-top:12px; position:relative; display:inline-block;
  background: linear-gradient(180deg, #FF0033 0%, #E10600 25%, #8B0000 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  filter: drop-shadow(0 10px 30px rgba(139,0,0,0.4));
  opacity:0; animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}
.brush-underline { position:absolute; left:-10px; right:-20px; bottom:-18px; height:22px; width:calc(100% + 30px); opacity:0.9; }

.subtitle {
  margin-top:40px; font-size:18px; color:#B4B4B8; max-width:520px; font-weight:400; letter-spacing:0.2px;
  opacity:0; animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  max-width: 600px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  transition: all 0.3s var(--ease);
}
.tag:hover {
  background: rgba(255, 0, 51, 0.08);
  border-color: rgba(255, 0, 51, 0.3);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 0, 51, 0.15);
}
.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px rgba(255, 0, 51, 0.8);
}

.btn-row { display:flex; gap:14px; margin-top:36px; flex-wrap:wrap; opacity:0; animation: fadeUp 0.8s var(--ease) 0.6s forwards; }
.btn-primary, .btn-secondary {
  position:relative; padding:16px 24px; border-radius:16px; font-weight:650; font-size:15px; cursor:pointer;
  display:inline-flex; align-items:center; gap:10px; border:none; transition: all 0.3s var(--ease);
  overflow:hidden; isolation:isolate; transform: translateZ(0);
}
.btn-primary {
  background: radial-gradient(120% 120% at 50% -20%, #ff2a55 0%, var(--red) 40%, var(--crimson) 100%);
  color:white; box-shadow: 0 0 40px rgba(255,0,51,0.35), inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 8px rgba(0,0,0,0.4);
}
.btn-primary::before {
  content:''; position:absolute; top:0; left:-100%; width:50%; height:100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease);
}
.btn-primary:hover::before { left:150%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(255,0,51,0.5), inset 0 1px 0 rgba(255,255,255,0.25); }
.btn-primary .arrow { transition: transform 0.3s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(3px); }

.btn-secondary {
  background: rgba(255,255,255,0.04); color:white; border:1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn-secondary .mag { animation: magPulse 2.5s infinite; }
@keyframes magPulse { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(1.1); opacity:0.8; } }

.trust-row { display:flex; align-items:center; gap:16px; margin-top:32px; opacity:0; animation: fadeUp 0.8s var(--ease) 0.7s forwards; }
.avatars { display:flex; }
.avatar { width:32px; height:32px; border-radius:50%; border:2px solid #000; margin-left:-8px; background: linear-gradient(180deg, #222, #111); display:grid; place-items:center; font-size:11px; font-weight:700; color:#888; }
.avatar:first-child { margin-left:0; }
.trust-text { font-size:13px; color:var(--slate); }
.trust-text strong { color:white; font-weight:600; }

/* Hero Right */
.hero-right { position:relative; display:grid; place-items:center; min-height:560px; opacity:0; animation: fadeIn 1s var(--ease) 0.4s forwards; }
.showcase { position:relative; width:380px; height:380px; display:grid; place-items:center; transform-style:preserve-3d; perspective:1000px; }
.orb { position:absolute; width:320px; height:320px; border-radius:50%; background: radial-gradient(circle, rgba(255,0,51,0.4) 0%, rgba(139,0,0,0.2) 40%, transparent 70%); filter: blur(40px); animation: orbPulse 4s ease-in-out infinite; }
@keyframes orbPulse { 0%,100% { transform: scale(1); opacity:0.8; } 50% { transform: scale(1.1); opacity:1; } }
.ring { position:absolute; border-radius:50%; border:1px solid; }
.r1 { width:420px; height:420px; border-color: rgba(255,0,51,0.15); animation: ringRotate 20s linear infinite; }
.r2 { width:500px; height:500px; border-color: rgba(255,0,51,0.1); animation: ringRotate 30s linear infinite reverse; box-shadow: 0 0 80px rgba(255,0,51,0.05) inset; }
.r3 { width:580px; height:580px; border-color: rgba(255,0,51,0.06); animation: ringRotate 45s linear infinite; }
@keyframes ringRotate { to { transform: rotate(360deg); } }
.hero-logo { width:340px; height:340px; object-fit:contain; filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8)) drop-shadow(0 0 40px rgba(255,0,51,0.3)); transform: translateZ(40px); transition: transform 0.2s ease-out; will-change: transform; }

.orbit { position:absolute; inset:0; animation: orbitSpin 30s linear infinite; }
.showcase:hover .orbit { animation-play-state: paused; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.orbit-icon {
  position:absolute; left:50%; top:50%; width:56px; height:56px; border-radius:16px; display:grid; place-items:center;
  background: rgba(8,8,10,0.7); backdrop-filter: blur(16px); border:1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  transform: var(--tx) scale(1);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); cursor:pointer;
}
.orbit-icon:hover { transform: var(--tx) scale(1.1); border-color: rgba(255,0,51,0.5); box-shadow: 0 0 30px rgba(255,0,51,0.3); }
.orbit-icon svg { width:24px; height:24px; color:#e4e4e7; transition: color 0.3s var(--ease); }
.orbit-icon:hover svg { color:white; }
.orbit-icon::after { content: attr(data-tip); position:absolute; bottom:calc(100% + 8px); left:50%; transform:translateX(-50%) translateY(4px); background:#0a0a0c; color:white; font-size:11px; padding:6px 8px; border-radius:8px; border:1px solid var(--border); white-space:nowrap; opacity:0; pointer-events:none; transition:0.2s var(--ease); }
.orbit-icon:hover::after { opacity:1; transform:translateX(-50%) translateY(0); }
.o1 { --tx: translate(-50%, -50%) translateY(-246px); }
.o2 { --tx: translate(-50%, -50%) translateX(246px); }
.o3 { --tx: translate(-50%, -50%) translateY(246px); }
.o4 { --tx: translate(-50%, -50%) translateX(-246px); }

@keyframes fadeUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ===== HEADER DIVIDER ===== */
.header-divider {
  position: relative;
  max-width: 1200px;
  margin: 20px auto 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 51, 0.1) 20%, rgba(255, 0, 51, 0.6) 50%, rgba(255, 0, 51, 0.1) 80%, transparent);
  opacity: 0;
  transform: scaleX(0.3);
  animation: drawLine 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
  z-index: 10;
}

@keyframes drawLine {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.header-divider::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, transparent 35%, var(--red) 50%, transparent 65%, transparent);
  filter: blur(2px);
  animation: glowScan 6s linear infinite;
  background-size: 200% 100%;
}

@keyframes glowScan {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.divider-node {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #050507;
  border: 1px solid rgba(255, 0, 51, 0.4);
  display: grid;
  place-items: center;
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
  animation: popNode 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards;
  z-index: 12;
}

@keyframes popNode {
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

.divider-node svg {
  width: 16px;
  height: 16px;
  color: var(--red);
  animation: pulseGlow 2s infinite alternate;
}

@keyframes pulseGlow {
  0% { filter: drop-shadow(0 0 2px rgba(255, 0, 51, 0.5)); }
  100% { filter: drop-shadow(0 0 8px rgba(255, 0, 51, 0.9)); }
}

/* ===== FEATURES ===== */
.section { max-width:1200px; margin:0 auto; padding:120px 24px; }
.section-head { text-align:center; margin-bottom:60px; display:flex; flex-direction:column; align-items:center; }
.section-eyebrow {
  font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--red); font-weight:800; margin-bottom:16px;
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 20px;
  background: rgba(255, 0, 51, 0.06); border: 1px solid rgba(255, 0, 51, 0.2);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.1);
}
.section-title {
  font-family:'Plus Jakarta Sans',sans-serif; font-weight:800; font-size:48px; letter-spacing:-1.5px; line-height:1.1;
  background: linear-gradient(180deg, #ffffff 30%, #a3a3a8 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; color:transparent;
}
.section-subtitle { max-width:550px; font-size:16px; color:var(--slate); margin-top:12px; }

.bento { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; }
.card {
  position:relative; padding:32px; border-radius:24px; overflow:hidden;
  background: rgba(255,255,255,0.03); border:1px solid var(--border);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s var(--ease); isolation:isolate;
}
.card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent); opacity:0.5;
}
.card::after {
  content:''; position:absolute; top:-100%; left:-50%; width:200%; height:300%; background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.08) 50%, transparent 60%);
  transform: rotate(25deg); transition: top 0.8s var(--ease); pointer-events:none;
}
.card:hover { transform: translateY(-8px); border-color: rgba(255,0,51,0.4); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,0,51,0.2) inset, 0 0 40px rgba(255,0,51,0.1); background: rgba(255,255,255,0.05); }
.card:hover::after { top:100%; }
.card.large { grid-column: span 2; }
.card-icon {
  width:56px; height:56px; border-radius:16px; display:grid; place-items:center; margin-bottom:20px;
  background: radial-gradient(100% 100% at 50% 0%, rgba(255,0,51,0.3), rgba(139,0,0,0.15));
  border:1px solid rgba(255,0,51,0.3); box-shadow: 0 0 30px rgba(255,0,51,0.2) inset, 0 8px 20px rgba(0,0,0,0.4);
}
.card-icon svg { width:28px; height:28px; color:white; }
.card h3 { font-size:22px; font-weight:700; letter-spacing:-0.3px; margin-bottom:10px; }
.card p { color: var(--slate); font-size:15px; line-height:1.6; }

/* ===== LIVE FEED ===== */
.feed-wrap { max-width:1100px; margin:0 auto; }
.browser {
  border-radius:24px; overflow:hidden; background: rgba(5,5,7,0.7); border:1px solid var(--border);
  backdrop-filter: blur(20px); box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.browser-head { height:44px; display:flex; align-items:center; gap:8px; padding:0 16px; background: rgba(255,255,255,0.03); border-bottom:1px solid var(--border); }
.browser-dot { width:12px; height:12px; border-radius:50%; background:#222; border:1px solid #333; }
.browser-dot:nth-child(1){ background:#ff5f57; border-color:#e0443e; } .browser-dot:nth-child(2){ background:#febc2e; border-color:#d4a024; } .browser-dot:nth-child(3){ background:#28c840; border-color:#20a035; }
.browser-title { margin-left:auto; margin-right:auto; font-size:12px; color:var(--slate-2); font-weight:600; letter-spacing:0.5px; }
.feed-list { height:380px; overflow:hidden; position:relative; padding:16px; }
.feed-scroll { display:flex; flex-direction:column; gap:12px; animation: scrollFeed 30s linear infinite; }
.browser:hover .feed-scroll { animation-play-state: paused; }
@keyframes scrollFeed { 0% { transform: translateY(0); } 100% { transform: translateY(-50%); } }
.scammer-card {
  display:flex; align-items:center; gap:16px; padding:14px 16px; border-radius:14px;
  background: rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.06);
  transition: all 0.3s var(--ease); position:relative; overflow:hidden;
}
.scammer-card:hover { background: rgba(255,0,51,0.06); border-color: rgba(255,0,51,0.3); transform: translateX(4px); }
.scammer-avatar-img { width:40px; height:40px; border-radius:10px; background:#111; border:1px solid #222; flex-shrink:0; object-fit: cover; }
.scammer-info { flex:1; min-width:0; }
.scammer-name-wrap { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.scammer-username { font-weight:600; font-size:14px; color:#fff; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.scammer-badge-confirmed { font-size:9px; font-weight:800; color:#10b981; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); padding:2px 6px; border-radius:6px; letter-spacing:0.5px; }
.scammer-badge-review { font-size:9px; font-weight:800; color:#f59e0b; background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); padding:2px 6px; border-radius:6px; letter-spacing:0.5px; }
.scammer-badge-pending { font-size:9px; font-weight:800; color:#3b82f6; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.3); padding:2px 6px; border-radius:6px; letter-spacing:0.5px; }
.scammer-platform-label { font-size:12px; color:var(--slate-2); }
.scammer-details { font-size:13px; color:var(--slate); margin-top:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }

.scammer-right-action { display:flex; flex-direction:column; align-items:flex-end; gap:4px; flex-shrink:0; }
.scammer-red-badge {
  font-size:10px; font-weight:700; color:#ff3355; letter-spacing:0.5px;
  background: rgba(255,0,51,0.12); border:1px solid rgba(255,0,51,0.35);
  padding:4px 10px; border-radius:8px;
  box-shadow: 0 0 10px rgba(255,0,51,0.15);
}
.scammer-time-sub { font-size:11px; color:var(--slate-2); font-weight:500; }

/* ===== STATS ===== */
.stats { display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; max-width:1000px; margin:80px auto 0; }
.stat { text-align:center; padding:32px 20px; border-radius:20px; background: rgba(255,255,255,0.02); border:1px solid var(--border); }
.stat-num { font-family:'Impact','Arial Black',sans-serif; font-size:56px; line-height:1; color:white; letter-spacing:-1px; }
.stat-label { margin-top:8px; color:var(--slate); font-size:14px; text-transform:uppercase; letter-spacing:1px; font-weight:600; }

/* ===== PODIUM SECTION (TOP 3) ===== */
.podium {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 0.95fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 80px;
}
.podium-card {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  backdrop-filter: blur(16px);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.podium-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent); opacity:0.6;
}
.podium-card:hover {
  transform: translateY(-8px);
  border-color: var(--hover-glow);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px var(--box-glow);
}

/* Podium Ranks Specifics */
.podium-card.rank-1 {
  z-index: 5;
  padding: 48px 32px;
  background: radial-gradient(120% 120% at 50% 0%, rgba(255,0,51,0.06) 0%, rgba(0,0,0,0.65) 100%);
  --border-glow: #ffd700;
  --hover-glow: rgba(255, 215, 0, 0.4);
  --box-glow: rgba(255, 215, 0, 0.1);
}
.podium-card.rank-2 {
  --border-glow: #c0c0c0;
  --hover-glow: rgba(192, 192, 192, 0.4);
  --box-glow: rgba(192, 192, 192, 0.08);
}
.podium-card.rank-3 {
  --border-glow: #cd7f32;
  --hover-glow: rgba(205, 127, 50, 0.4);
  --box-glow: rgba(205, 127, 50, 0.08);
}

.rank-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 99px;
}
.rank-1 .rank-badge { background: rgba(255, 215, 0, 0.1); border: 1px solid #ffd700; color: #ffd700; }
.rank-2 .rank-badge { background: rgba(192, 192, 192, 0.1); border: 1px solid #c0c0c0; color: #c0c0c0; }
.rank-3 .rank-badge { background: rgba(205, 127, 50, 0.1); border: 1px solid #cd7f32; color: #cd7f32; }

.podium-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 12px auto 20px;
  display: block;
  background: #111;
  border: 3px solid var(--border-glow);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.rank-1 .podium-avatar { width: 110px; height: 110px; }

.podium-name { font-weight: 800; font-size: 20px; color: #fff; margin-bottom: 6px; letter-spacing: -0.5px; }
.rank-1 .podium-name { font-size: 24px; }

.podium-damage {
  font-weight: 800; font-size: 15px; color: var(--red);
  text-shadow: 0 0 10px rgba(255,0,51,0.25);
  background: rgba(255,0,51,0.06); border: 1px dashed rgba(255,0,51,0.3);
  padding: 4px 12px; border-radius: 10px; display: inline-block; margin-bottom: 16px;
}

.podium-details { font-size: 13px; color: var(--slate); margin-bottom: 24px; line-height: 1.6; }

.btn-dossier {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 12px;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-dossier:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 20px rgba(255,0,51,0.3);
}

/* ===== LEADERBOARD LIST SECTION (RANKS 4-10) ===== */
.list-head h3 {
  font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 24px; letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 10px;
}
.list-head h3 svg { width: 20px; height: 20px; color: var(--red); }

.lead-list {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px;
  backdrop-filter: blur(16px);
}

.scam-row {
  display: grid;
  grid-template-columns: 80px 60px 1.5fr 2fr 1.2fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-radius: 16px;
  transition: all 0.2s var(--ease);
}
.scam-row:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.03); }
.scam-row:hover { background: rgba(255,255,255,0.02); }

.row-rank { font-weight: 800; font-size: 15px; color: var(--slate-2); }
.row-avatar { width: 36px; height: 36px; border-radius: 8px; background: #111; border: 1px solid #222; }
.row-username { font-weight: 700; font-size: 14px; color: #fff; }
.row-details { font-size: 13px; color: var(--slate); }

.row-risk { display: inline-flex; }
.risk-badge {
  font-size: 9px; font-weight: 800; letter-spacing: 0.5px;
  padding: 2px 8px; border-radius: 6px;
}
.risk-badge.critical { background: rgba(255,0,51,0.1); border: 1px solid rgba(255,0,51,0.3); color: #ff3355; }
.risk-badge.high { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.3); color: #f59e0b; }

.row-damage { font-weight: 800; font-size: 14px; color: #fff; text-align: right; }

/* ===== INFINITE RADAR TICKER RAIL ===== */
.ticker-section { margin-top: 40px; margin-bottom: 40px; }
.ticker-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: transparent;
  border-top: 1px dashed rgba(255, 0, 51, 0.2);
  border-bottom: 1px dashed rgba(255, 0, 51, 0.2);
  padding: 20px 0;
}

.ticker-title {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.ticker {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollTicker 12s linear infinite;
}
.ticker:hover { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 8px 20px;
  border-radius: 12px;
}
.ticker-item img {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #000;
  border: 1px solid var(--red);
}
.ticker-item span.username { font-weight: 700; font-size: 14px; color: #fff; }
.ticker-item span.status {
  font-size: 8px; font-weight: 800;
  background: rgba(255,0,51,0.15); color: #ff3355;
  padding: 2px 6px; border-radius: 4px; letter-spacing: 0.5px;
}

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

/* ===== DIVIDERS ===== */
.footer-divider {
  position: relative;
  width: 100%;
  margin: 80px 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 51, 0.1) 20%, rgba(255, 0, 51, 0.6) 50%, rgba(255, 0, 51, 0.1) 80%, transparent);
  opacity: 0;
  transform: scaleX(0.3);
  animation: drawLine 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
  z-index: 10;
}
@keyframes drawLine { to { transform: scaleX(1); opacity: 1; } }
.footer-divider::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, transparent 35%, var(--red) 50%, transparent 65%, transparent);
  filter: blur(2px); animation: glowScan 6s linear infinite reverse; background-size: 200% 100%;
}
@keyframes glowScan { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
.footer-divider .divider-node {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%) scale(0);
  width: 36px; height: 36px; border-radius: 50%; background: #050507; border: 1px solid rgba(255, 0, 51, 0.4);
  display: grid; place-items: center; box-shadow: 0 0 20px rgba(255, 0, 51, 0.3);
  animation: popNode 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards; z-index: 12;
}
@keyframes popNode { to { transform: translate(-50%, -50%) scale(1); } }
.footer-divider .divider-node svg { width: 16px; height: 16px; color: var(--red); animation: pulseGlow 2s infinite alternate; }
@keyframes pulseGlow { 0% { filter: drop-shadow(0 0 2px rgba(255, 0, 51, 0.5)); } 100% { filter: drop-shadow(0 0 8px rgba(255, 0, 51, 0.9)); } }

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  margin-top: 0;
  background: #07070a;
  box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.6);
}
.footer-inner { max-width:1200px; margin:0 auto; padding:60px 24px 40px; display:grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap:30px; }
.footer-brand { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-logo { width:36px; height:36px; border-radius:50%; object-fit:contain; background:#000; padding:3px; border:1px solid var(--border); }
.footer-desc { color: var(--slate); font-size:14px; max-width:300px; margin-bottom:20px; }
.newsletter { display:flex; gap:8px; margin-top:12px; }
.newsletter input {
  flex:1; background: rgba(255,255,255,0.04); border:1px solid var(--border); color:white;
  padding:12px 14px; border-radius:12px; outline:none; font-size:14px; transition:0.3s var(--ease);
}
.newsletter input:focus { border-color: rgba(255,0,51,0.5); box-shadow: 0 0 0 3px rgba(255,0,51,0.15); }
.newsletter button { padding:12px 16px; border-radius:12px; border:none; background:white; color:black; font-weight:600; cursor:pointer; transition:0.3s var(--ease); }
.newsletter button:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,255,255,0.15); }
.footer-col h4 { font-size:13px; text-transform:uppercase; letter-spacing:1px; color:#fff; margin-bottom:16px; font-weight:700; }
.footer-col a {
  display: flex; align-items: center; gap: 8px;
  color:var(--slate); text-decoration:none; font-size:14px; margin-bottom:10px;
  transition: all 0.2s var(--ease);
}
.footer-col a svg {
  width: 12px; height: 12px;
  color: var(--red);
  opacity: 0.7;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.footer-col a:hover svg { transform: translateX(2px); opacity: 1; color: white; }
.footer-col a:hover { color:white; }
.footer-bottom { max-width:1200px; margin:0 auto; padding:24px; border-top:1px solid var(--border); display:flex; justify-content:space-between; align-items:center; color:var(--slate-2); font-size:13px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns:1fr; gap:60px; padding-bottom:40px; }
  .hero-right { min-height:460px; order:-1; }
  .showcase { width:320px; height:320px; }
  .hero-logo { width:280px; height:280px; }
  .r1 { width:360px; height:360px; } .r2 { width:430px; height:430px; } .r3 { width:500px; height:500px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .card.large { grid-column: span 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 992px) {
  .podium { grid-template-columns: 1fr; gap:40px; }
  .podium-card.rank-1 { order: -1; transform:none !important; }
  .podium-card { transform:none !important; }
  .scam-row { grid-template-columns: 50px 50px 1.2fr 1.5fr 1fr; }
  .scam-row .row-damage { text-align: left; }
}
@media (max-width: 768px) {
  .nav-center, .nav-right { display:none; }
  .hamburger { display:flex; }
  .nav { height:60px; }
  
  /* Hero Section Centering & Typography scaling */
  .hero { text-align: center; }
  .eyebrow { justify-content: center; }
  .title-scam { font-size:68px; justify-content: center; flex-wrap: nowrap; margin-bottom: 0px; }
  .a-target { width:46px; height:54px; top:50%; margin-top: 2px; }
  .title-hunters { font-size:58px; display: block; margin-left: 0; margin-top: 4px; }
  .subtitle { font-size:16px; margin-left: auto; margin-right: auto; text-align: center; }
  .hero-tags { justify-content: center; margin-left: auto; margin-right: auto; }
  .btn-row { flex-direction:column; align-items:stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .trust-row { justify-content: center; }

  /* Showcase & Orbiting Rings Scaling for Mobile to prevent navbar & horizontal overflow */
  .hero-right { min-height: 380px; overflow: hidden; width: 100%; }
  .showcase { width: 250px; height: 250px; }
  .hero-logo { width: 190px; height: 190px; }
  .orb { width: 200px; height: 200px; }
  .r1 { width: 280px; height: 280px; }
  .r2 { width: 330px; height: 330px; }
  .r3 { width: 380px; height: 380px; }
  .orbit-icon { width: 44px; height: 44px; border-radius: 12px; }
  .orbit-icon svg { width: 20px; height: 20px; }
  .o1 { --tx: translate(-50%, -50%) translateY(-160px); }
  .o2 { --tx: translate(-50%, -50%) translateX(160px); }
  .o3 { --tx: translate(-50%, -50%) translateY(160px); }
  .o4 { --tx: translate(-50%, -50%) translateX(-160px); }

  .section-title { font-size:32px; }
  .bento { grid-template-columns: 1fr; }
  .stats { grid-template-columns:1fr; }
  .scam-row { grid-template-columns: 40px 1fr 1fr; gap:12px; }
  .scam-row .row-avatar, .scam-row .row-risk { display:none; }
  
  /* Footer Mobile */
  .footer-inner { grid-template-columns:1fr; gap:24px; text-align: center; padding: 40px 20px 20px; }
  .footer-col { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 24px;
  }
  .footer-col:last-child { border-bottom: none; padding-bottom: 0; }
  .footer-desc { margin-left: auto; margin-right: auto; }
  .newsletter { flex-direction: column; width: 100%; max-width: 320px; margin-left: auto; margin-right: auto; }
  .newsletter input { width: 100%; text-align: center; padding: 14px; }
  .newsletter button { width: 100%; padding: 14px; }
  .footer-bottom { flex-direction:column; gap:12px; text-align:center; padding-top: 20px; }
}

/* ===== PARTNERS LOGO RAIL ===== */
.partners-section {
  margin-top: 60px;
  text-align: center;
  width: 100%;
}
.partners-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--slate-2);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}
.partners-title::before, .partners-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: rgba(255, 0, 51, 0.3);
}
.partners-title::before {
  right: calc(100% + 15px);
}
.partners-title::after {
  left: calc(100% + 15px);
}

.partners-rail-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px 0;
  backdrop-filter: blur(12px);
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.partners-rail {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: scrollPartners 20s linear infinite;
}
.partners-rail-wrap:hover .partners-rail {
  animation-play-state: paused;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8px 18px;
  border-radius: 99px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.partner-item:hover {
  background: rgba(255, 0, 51, 0.06);
  border-color: rgba(255, 0, 51, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 0, 51, 0.1);
}

.partner-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255, 0, 51, 0.4);
  background: #000;
  display: grid;
  place-items: center;
  transition: border-color 0.3s var(--ease);
}
.partner-item:hover .partner-circle {
  border-color: var(--red);
  box-shadow: 0 0 8px rgba(255, 0, 51, 0.5);
}
.partner-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.2px;
  transition: color 0.3s var(--ease);
}
.partner-item:hover .partner-name {
  color: white;
}

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

/* ===== ANONYMOUS UPLOAD REPORTING SYSTEM ===== */
.upload-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 16px;
}

.upload-card {
  position: relative;
  background: rgba(8, 8, 10, 0.5);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.upload-card:hover {
  border-color: rgba(255,0,51,0.25);
  box-shadow: 0 30px 90px rgba(0,0,0,0.7), 0 0 40px rgba(255,0,51,0.04);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.form-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.upload-card input[type="text"],
.upload-card input[type="url"],
.upload-card textarea {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  color: white;
  padding: 16px 20px;
  border-radius: 14px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.3);
}

.upload-card input[type="text"]:focus,
.upload-card input[type="url"]:focus,
.upload-card textarea:focus {
  border-color: var(--red);
  background: rgba(255, 0, 51, 0.02);
  box-shadow: 0 0 0 4px rgba(255, 0, 51, 0.15), inset 0 2px 4px rgba(0,0,0,0.3);
}

/* Platform selector grid buttons */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.plat-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--slate);
  padding: 14px 10px;
  border-radius: 12px;
  font-size: 13.5px;
  font-weight: 650;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.plat-btn svg {
  opacity: 0.75;
  transition: transform 0.3s var(--ease);
}
.plat-btn:hover {
  color: white;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
}
.plat-btn:hover svg {
  transform: scale(1.1);
}

.plat-btn.active {
  color: white;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 20px rgba(83, 252, 24, 0.1); /* fallback default */
}

/* Apply specific colors dynamically if platform active styles match variables */
.plat-btn.active[data-platform="Kick"] { border-color: #53fc18; box-shadow: 0 0 15px rgba(83, 252, 24, 0.15); }
.plat-btn.active[data-platform="Twitch"] { border-color: #9146FF; box-shadow: 0 0 15px rgba(145, 70, 255, 0.15); }
.plat-btn.active[data-platform="YouTube"] { border-color: #FF0000; box-shadow: 0 0 15px rgba(255, 0, 0, 0.15); }
.plat-btn.active[data-platform="Twitter/X"] { border-color: #ffffff; box-shadow: 0 0 15px rgba(255, 255, 255, 0.15); }
.plat-btn.active[data-platform="Telegram"] { border-color: #0088cc; box-shadow: 0 0 15px rgba(0, 136, 204, 0.15); }
.plat-btn.active[data-platform="Discord"] { border-color: #5865F2; box-shadow: 0 0 15px rgba(88, 101, 242, 0.15); }

/* Dropzone Upload */
.upload-dropzone {
  border: 2px dashed rgba(255, 0, 51, 0.25);
  background: rgba(255, 255, 255, 0.01);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.upload-dropzone:hover {
  border-color: var(--red);
  background: rgba(255, 0, 51, 0.03);
  box-shadow: 0 0 20px rgba(255, 0, 51, 0.05);
}
.upload-dropzone.dragover {
  border-color: #53fc18;
  background: rgba(83, 252, 24, 0.05);
  box-shadow: inset 0 0 20px rgba(83, 252, 24, 0.1);
}

.upload-cloud-icon {
  width: 48px;
  height: 48px;
  color: var(--slate-2);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.upload-dropzone:hover .upload-cloud-icon {
  color: var(--red);
  transform: translateY(-2px);
}
.upload-dropzone.dragover .upload-cloud-icon {
  color: #53fc18;
}

.drop-text {
  font-size: 15px;
  font-weight: 600;
  color: white;
}
.drop-text .browse-link {
  color: var(--red);
  text-decoration: underline;
}
.drop-sub {
  font-size: 12px;
  color: var(--slate-2);
}

/* File Previews */
.preview-wrap {
  margin-top: 20px;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
}
.preview-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--slate-2);
  margin-bottom: 12px;
}
.preview-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.preview-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 10px;
}
.doc-icon {
  width: 20px;
  height: 20px;
  color: var(--red);
}
.file-name {
  font-size: 13.5px;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.file-size {
  font-size: 11px;
  color: var(--slate-2);
}
.btn-remove-file {
  background: transparent;
  border: none;
  color: var(--slate-2);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  transition: color 0.2s var(--ease);
}
.btn-remove-file:hover {
  color: var(--red);
}

/* Checkbox */
.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom-checkmark {
  position: relative;
  top: 3px;
  width: 20px;
  height: 20px;
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  border-radius: 6px;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.checkbox-container:hover input ~ .custom-checkmark {
  border-color: rgba(255,255,255,0.3);
}
.checkbox-container input:checked ~ .custom-checkmark {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}
.custom-checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid #10b981;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-container input:checked ~ .custom-checkmark::after {
  display: block;
}
.checkbox-label {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.5;
}

/* Integrity Alert panel */
.alert-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 0, 51, 0.05);
  border: 1px solid rgba(255, 0, 51, 0.2);
  border-radius: 16px;
  padding: 16px 20px;
  font-size: 13px;
  line-height: 1.6;
  color: #ff4a68;
  margin-top: 10px;
  margin-bottom: 24px;
}
.alert-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 2px;
}

/* Submission Trigger Button */
.btn-submit {
  position: relative;
  width: 100%;
  padding: 18px 24px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  color: white;
  background: radial-gradient(120% 120% at 50% -20%, #ff2a55 0%, var(--red) 40%, var(--crimson) 100%);
  box-shadow: 0 0 40px rgba(255,0,51,0.25), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s var(--ease);
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(255,0,51,0.45), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-submit:active {
  transform: translateY(0);
}
.btn-submit .arrow {
  transition: transform 0.3s var(--ease);
}
.btn-submit:hover .arrow {
  transform: translateX(3px);
}

/* Secure transit loading modal popup */
.portal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
  padding: 24px;
}
.portal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.portal-modal {
  position: relative;
  background: #050507;
  border: 1px solid rgba(255, 0, 51, 0.3);
  border-radius: 28px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 50px rgba(255,0,51,0.15), inset 0 1px 0 rgba(255,255,255,0.03);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.portal-overlay.active .portal-modal {
  transform: scale(1);
}

.cyber-scanline {
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 0, 51, 0.8);
  filter: blur(2px);
  animation: cyberScan 3s linear infinite;
  pointer-events: none;
}
@keyframes cyberScan {
  0% { top: -10%; }
  100% { top: 110%; }
}

.portal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-bottom: 16px;
  margin-bottom: 24px;
}
.portal-logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
  animation: pulse 1s infinite alternate;
}
.portal-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  color: white;
}

.portal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.transit-anim {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.04);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}
.transit-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red) 0%, #ff2a55 100%);
  box-shadow: 0 0 10px rgba(255,0,51,0.5);
  border-radius: 99px;
  transition: width 0.2s ease-out;
}

.portal-status {
  font-size: 13px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.portal-details-card {
  width: 100%;
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 28px;
  text-align: left;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.detail-row:not(:last-child) {
  margin-bottom: 12px;
}
.detail-row span {
  color: var(--slate-2);
  font-weight: 500;
}
.detail-row strong {
  font-weight: 700;
  color: white;
}
.detail-row strong.glow-green {
  color: #10b981;
  text-shadow: 0 0 8px rgba(16,185,129,0.3);
}

.btn-portal-close {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  border: none;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-portal-close:hover {
  background: #10b981;
  color: black;
  box-shadow: 0 0 20px rgba(16,185,129,0.35);
}

/* Responsive adjustment for platform buttons and rows */
@media (max-width: 768px) {
  .upload-card {
    padding: 28px 20px;
  }
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

select option {
  background: #111;
  color: #fff;
}
