:root {
  --bg: #07090e;
  --panel: rgba(13, 17, 26, 0.82);
  --panel-border: rgba(71, 85, 105, 0.35);
  --cyan: #22d3ee;
  --cyan-glow: rgba(34, 211, 238, 0.25);
  --purple: #a855f7;
  --purple-glow: rgba(168, 85, 247, 0.25);
  --green: #34d399;
  --amber: #fbbf24;
  --rose: #f43f5e;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background Ambient Glows */
.bg-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.bg-glow-1 { top: -100px; left: -100px; background: var(--cyan); }
.bg-glow-2 { top: 200px; right: -150px; background: var(--purple); }

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 24px 20px;
  position: relative;
  z-index: 1;
}

/* Nav Bar */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  margin-bottom: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px var(--cyan-glow);
}
.brand-title { font-weight: 900; font-size: 14px; letter-spacing: 0.05em; display: block; }
.brand-sub { font-size: 11px; color: var(--text-muted); }

.nav-links { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.nav-link { position: relative; isolation: isolate; overflow: hidden; color: var(--text-muted); text-decoration: none; font-size: 12.5px; font-weight: 700; letter-spacing: .01em; padding: 8px 10px; border: 1px solid transparent; border-radius: 9px; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
.nav-link::after { content: ''; position: absolute; inset: 0 auto 0 -120%; width: 85%; z-index: -1; background: linear-gradient(105deg, transparent, rgba(34,211,238,.7), rgba(168,85,247,.72), transparent); transform: skewX(-18deg); transition: left .45s ease; opacity: .8; }
.nav-link:hover { color: #fff; border-color: rgba(34,211,238,.42); background: linear-gradient(135deg, rgba(8,145,178,.2), rgba(124,58,237,.22)); transform: translateY(-1px); box-shadow: 0 0 18px rgba(34,211,238,.16), inset 0 0 14px rgba(168,85,247,.08); }
.nav-link:hover::after { left: 130%; }

.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.badge-node { background: rgba(52, 211, 153, 0.15); color: var(--green); border: 1px solid rgba(52, 211, 153, 0.35); }

/* Network Status / Creator Broadcast Pill in Nav */
.network-status-pill,
.streamer-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #d8b4fe;
  text-decoration: none;
  transition: all 0.3s ease;
}
.network-status-pill.live,
.streamer-live-pill.live {
  background: rgba(244, 63, 94, 0.18);
  border-color: rgba(244, 63, 94, 0.6);
  color: #fecdd3;
  box-shadow: 0 0 20px rgba(244, 63, 94, 0.3);
}
.network-status-pill:hover,
.streamer-live-pill:hover {
  transform: translateY(-1px);
  filter: brightness(1.15);
}
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
}
.status-dot.live { background: var(--rose); box-shadow: 0 0 10px var(--rose); animation: pulse 1.5s infinite; }

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ------------------------------------------------------------------
   PLATFORM IDENTITY & ORIENTATION BANNER (Product vs Portal Clarity)
   ------------------------------------------------------------------ */
.platform-orientation-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.18) 0%, rgba(15, 23, 42, 0.88) 50%, rgba(34, 211, 238, 0.14) 100%);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-left: 3px solid var(--cyan);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.orientation-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  min-width: 0;
}

.orientation-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(34, 211, 238, 0.14);
  border: 1px solid rgba(34, 211, 238, 0.4);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.orientation-desc {
  font-size: 12.5px;
  color: #cbd5e1;
  line-height: 1.45;
}

.orientation-desc strong {
  color: #f8fafc;
}

.orientation-right {
  flex-shrink: 0;
}

.orientation-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.6), rgba(34, 211, 238, 0.4));
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.orientation-cta-btn:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.8), rgba(34, 211, 238, 0.6));
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.4);
}

@media (max-width: 860px) {
  .platform-orientation-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ------------------------------------------------------------------
   COMMUNITY SPOTLIGHT CAROUSEL (Horizontal Plane Rotator with Edge Fade)
   ------------------------------------------------------------------ */
.spotlight-carousel-section {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(7, 9, 14, 0.8) 100%);
  border: 1px solid rgba(124, 58, 237, 0.22);
  border-radius: 14px;
  padding: 10px 14px 8px 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.spotlight-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  padding: 0 4px;
  flex-wrap: wrap;
  gap: 8px;
}

.spotlight-carousel-title-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.14);
  border: 1px solid rgba(124, 58, 237, 0.35);
  padding: 3px 10px;
  border-radius: 999px;
}

.spotlight-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 8px #a855f7;
  animation: pulse 1.6s infinite;
}

.spotlight-title-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #c084fc;
  text-transform: uppercase;
}

.badge-carousel-live-count {
  font-size: 9.5px;
  font-weight: 800;
  color: #fecdd3;
  background: rgba(244, 63, 94, 0.2);
  border: 1px solid rgba(244, 63, 94, 0.45);
  padding: 1px 6px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 0 8px rgba(244, 63, 94, 0.3);
}

.spotlight-carousel-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: #94a3b8;
}

.spotlight-sub-icon {
  color: #f59e0b;
  font-size: 12px;
}

.btn-carousel-shuffle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.25), rgba(56, 189, 248, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #e2e8f0;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-carousel-shuffle:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(56, 189, 248, 0.35));
  border-color: #c084fc;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
}

/* Viewport with Perspective for Horizontal Plane */
.carousel-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 0;
  min-height: 120px;
}

/* Edge Fade Masks - Left and Right Gradual Fade Out */
.carousel-fade-left,
.carousel-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 15;
  pointer-events: none;
}

.carousel-fade-left {
  left: 0;
  background: linear-gradient(to right, #07090e 25%, rgba(7, 9, 14, 0.8) 65%, transparent 100%);
}

.carousel-fade-right {
  right: 0;
  background: linear-gradient(to left, #07090e 25%, rgba(7, 9, 14, 0.8) 65%, transparent 100%);
}

/* Navigation Arrow Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.88);
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.carousel-nav-btn:hover {
  background: rgba(124, 58, 237, 0.85);
  border-color: #c084fc;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.6);
}

.carousel-nav-btn.btn-prev {
  left: 8px;
}

.carousel-nav-btn.btn-next {
  right: 8px;
}

/* Horizontal Track (preserves 3D plane) */
.carousel-track {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  width: 100%;
  position: relative;
  min-height: 108px;
}

/* Individual Spotlight Streamer Card in Horizontal Plane */
.spotlight-card {
  position: absolute;
  width: 330px;
  max-width: 84%;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.88) 0%, rgba(15, 23, 42, 0.96) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 14px;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
              opacity 0.45s ease,
              box-shadow 0.45s ease,
              border-color 0.45s ease,
              filter 0.45s ease;
  user-select: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Center / Active Spotlight Card */
.spotlight-card.is-active {
  transform: translateX(0) translateZ(50px) scale(1.04);
  opacity: 1;
  z-index: 10;
  border-color: rgba(168, 85, 247, 0.65);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.35), 0 0 16px rgba(34, 211, 238, 0.2);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.96) 0%, rgba(15, 23, 42, 0.98) 100%);
  filter: brightness(1.05);
}

/* Left / Prev Card in Horizontal Plane */
.spotlight-card.is-prev {
  transform: translateX(-270px) translateZ(0) scale(0.88);
  opacity: 0.65;
  z-index: 5;
  pointer-events: auto;
  filter: brightness(0.8);
}

/* Right / Next Card in Horizontal Plane */
.spotlight-card.is-next {
  transform: translateX(270px) translateZ(0) scale(0.88);
  opacity: 0.65;
  z-index: 5;
  pointer-events: auto;
  filter: brightness(0.8);
}

/* Far Left Card (faded out further) */
.spotlight-card.is-far-left {
  transform: translateX(-480px) translateZ(-50px) scale(0.76);
  opacity: 0.18;
  z-index: 2;
  pointer-events: none;
  filter: brightness(0.5);
}

/* Far Right Card (faded out further) */
.spotlight-card.is-far-right {
  transform: translateX(480px) translateZ(-50px) scale(0.76);
  opacity: 0.18;
  z-index: 2;
  pointer-events: none;
  filter: brightness(0.5);
}

.spotlight-card.is-hidden {
  transform: translateX(0) translateZ(-140px) scale(0.6);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* Card Internal Layout */
.spotlight-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.spotlight-profile-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.spotlight-avatar-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.spotlight-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(168, 85, 247, 0.45);
}

.spotlight-avatar.live-avatar {
  border-color: #f43f5e;
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.6);
}

.spotlight-live-beacon {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #f43f5e;
  border: 2px solid #0f172a;
  box-shadow: 0 0 8px #f43f5e;
  animation: pulse 1.5s infinite;
}

.spotlight-creator-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.spotlight-name-row {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}

.spotlight-creator-name {
  font-weight: 700;
  font-size: 13.5px;
  color: #f8fafc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge-spotlight-scc {
  font-size: 9px;
  font-weight: 800;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 1px 4px;
  border-radius: 3px;
  white-space: nowrap;
}

.badge-spotlight-lang {
  font-size: 9px;
  font-weight: 800;
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.15);
  border: 1px solid rgba(167, 139, 250, 0.35);
  padding: 1px 5px;
  border-radius: 3px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  text-transform: uppercase;
}

.badge-spotlight-emerging {
  font-size: 9px;
  font-weight: 800;
  color: #34d399;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 1px 5px;
  border-radius: 3px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.spotlight-game-tag {
  font-size: 11px;
  color: #c084fc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

/* Card Status Badge */
.spotlight-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: #94a3b8;
}

.spotlight-status-pill.is-live {
  background: rgba(244, 63, 94, 0.16);
  border-color: rgba(244, 63, 94, 0.5);
  color: #fecdd3;
  box-shadow: 0 0 10px rgba(244, 63, 94, 0.3);
}

.spotlight-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spotlight-stream-title {
  font-size: 11.5px;
  line-height: 1.3;
  color: #cbd5e1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0;
  font-style: italic;
}

.spotlight-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 2px;
  padding-top: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.spotlight-archetype-pill {
  font-size: 10px;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 170px;
}

.spotlight-watch-action {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #38bdf8;
  white-space: nowrap;
  transition: transform 0.2s ease, color 0.2s ease;
}

.spotlight-card:hover .spotlight-watch-action {
  color: #a855f7;
  transform: translateX(2px);
}

/* Pagination & Live Counter Footer */
.carousel-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  padding: 0 4px;
  flex-wrap: wrap;
}

.carousel-counter-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.04em;
}

.counter-dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f43f5e;
  box-shadow: 0 0 6px #f43f5e;
  animation: pulse 1.5s infinite;
}

.carousel-dots-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.carousel-dot:hover {
  background: rgba(168, 85, 247, 0.7);
}

.carousel-dot.is-active {
  width: 22px;
  background: linear-gradient(90deg, #38bdf8, #a855f7);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

@media (max-width: 768px) {
  .spotlight-carousel-section {
    padding: 8px;
  }
  .spotlight-card {
    width: 275px;
  }
  .spotlight-card.is-prev {
    transform: translateX(-160px) translateZ(0) scale(0.85);
  }
  .spotlight-card.is-next {
    transform: translateX(160px) translateZ(0) scale(0.85);
  }
  .spotlight-card.is-far-left {
    transform: translateX(-280px) translateZ(-50px) scale(0.72);
  }
  .spotlight-card.is-far-right {
    transform: translateX(280px) translateZ(-50px) scale(0.72);
  }
  .carousel-fade-left,
  .carousel-fade-right {
    width: 60px;
  }
}

/* ------------------------------------------------------------------
   SPLIT COMMAND HERO DECK (Streamers, Peers, Slogan & CTA Above Fold)
   ------------------------------------------------------------------ */
.hero-deck {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}

@media (max-width: 960px) {
  .hero-deck {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-right-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Official Eyebrow Badge */
.hero-product-eyebrow,
.slogan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.15), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(34, 211, 238, 0.45);
  border-radius: 30px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  text-shadow: 0 0 10px var(--cyan-glow);
  box-shadow: 0 2px 14px rgba(34, 211, 238, 0.2);
  width: fit-content;
  animation: badge-glow-pulse 3s infinite alternate;
}

@keyframes badge-glow-pulse {
  0% { box-shadow: 0 2px 14px rgba(34, 211, 238, 0.2); border-color: rgba(34, 211, 238, 0.45); }
  100% { box-shadow: 0 4px 20px rgba(168, 85, 247, 0.35); border-color: rgba(168, 85, 247, 0.6); }
}

.eyebrow-text,
.slogan-text {
  font-weight: 900;
  background: linear-gradient(90deg, #ffffff, #a5f3fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-deck .hero-title {
  font-size: 32px;
  line-height: 1.18;
  font-weight: 900;
  text-align: left;
  margin-bottom: 0;
  background: linear-gradient(135deg, #ffffff 40%, #cbd5e1 75%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* High-Impact Benefit Subhead */
.hero-lead-sub {
  font-size: 14px;
  line-height: 1.55;
  color: #cbd5e1;
  margin: 0;
}

/* Elevated Download Hero Card */
.hero-download-elevated {
  border-color: rgba(124, 58, 237, 0.45) !important;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 24px rgba(124, 58, 237, 0.2) !important;
}

/* Risk-Reversal Trust Strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: #e2e8f0;
  background: rgba(30, 41, 59, 0.6);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-icon {
  font-size: 12px;
}

.p2p-session-safety {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(8, 145, 178, 0.12), rgba(124, 58, 237, 0.1)),
    rgba(2, 6, 23, 0.72);
  color: #bae6fd;
  font-size: 11px;
  line-height: 1.5;
}

.p2p-session-safety strong {
  color: #67e8f9;
}

.p2p-session-safety.is-interrupted {
  border-color: rgba(251, 191, 36, 0.45);
  color: #fde68a;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.08);
}

.p2p-session-safety.is-interrupted strong {
  color: #fbbf24;
}

.p2p-session-safety-icon {
  flex: 0 0 auto;
  font-size: 15px;
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.55));
}

/* Scannable Pain-to-Solution 2x2 Grid */
.pain-solution-section {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.88), rgba(13, 17, 26, 0.8));
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-left: 3px solid var(--cyan);
  border-radius: 14px;
  padding: 14px 16px;
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  margin-top: 2px;
}

.pain-solution-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 6px;
}

.ps-header-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-transform: uppercase;
}

.ps-header-sub {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 600;
}

.pain-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

@media (max-width: 600px) {
  .pain-solution-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.pain-solution-card {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(71, 85, 105, 0.28);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s ease;
}

.pain-solution-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(15, 23, 42, 0.85);
  transform: translateY(-1px);
}

.ps-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ps-icon {
  font-size: 16px;
  line-height: 1;
}

.ps-badge {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  letter-spacing: 0.04em;
}

.ps-title {
  font-size: 12.5px;
  font-weight: 800;
  color: #ffffff;
  margin: 2px 0 0 0;
}

.ps-desc {
  font-size: 11px;
  line-height: 1.45;
  color: #94a3b8;
  margin: 0;
}

/* Live Telemetry Signpost Header (Right Column) */
.telemetry-signpost-header {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.16) 0%, rgba(15, 23, 42, 0.75) 100%);
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-left: 3px solid #a855f7;
  border-radius: 12px;
  padding: 10px 14px;
  margin-bottom: 2px;
}

.telemetry-signpost-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.telemetry-title-text {
  font-size: 11.5px;
  font-weight: 900;
  color: #c084fc;
  letter-spacing: 0.06em;
}

.telemetry-signpost-sub {
  font-size: 11px;
  line-height: 1.45;
  color: #cbd5e1;
  margin: 4px 0 0 0;
}

.telemetry-signpost-sub strong {
  color: #f8fafc;
}

/* Action Card */
.hero-deck .action-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.45);
  backdrop-filter: blur(20px);
}

.hero-deck .download-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
  text-align: left;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: #fff;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
}
.btn-primary:hover { box-shadow: 0 12px 32px rgba(6, 182, 212, 0.5); }

.btn-download-hero {
  width: 100%;
  justify-content: center;
  padding: 16px 28px;
}

.btn-icon { font-size: 22px; }
.btn-text { display: flex; flex-direction: column; }
.btn-main { font-size: 15px; font-weight: 800; }
.btn-sub { font-size: 11px; opacity: 0.8; font-weight: 500; font-family: monospace; }

/* P2P Progress Bar */
.p2p-progress-container {
  margin-top: 20px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
}
.p2p-progress-header { display: flex; justify-content: space-between; font-size: 13px; font-weight: 700; margin-bottom: 8px; }

/* P2P Handshake Pipeline Stepper */
.p2p-handshake-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(71, 85, 105, 0.35);
  border-radius: 8px;
  padding: 6px 10px;
  margin-bottom: 10px;
  font-size: 11px;
}
.stepper-step {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-weight: 600;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.stepper-step.active {
  color: var(--cyan);
  font-weight: 800;
}
.stepper-step.done {
  color: var(--green);
  font-weight: 700;
}
.step-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(100, 116, 139, 0.5);
  transition: all 0.25s ease;
}
.stepper-step.active .step-dot {
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: dot-pulse 1s infinite alternate;
}
.stepper-step.done .step-dot {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.stepper-arrow {
  color: rgba(100, 116, 139, 0.4);
  font-size: 11px;
}
@keyframes dot-pulse {
  from { transform: scale(0.85); opacity: 0.7; }
  to { transform: scale(1.35); opacity: 1; }
}

/* Connecting Notice Banner */
.p2p-connecting-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--cyan);
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 6px;
  padding: 6px 10px;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: all 0.3s ease;
}
.pulse-radar-icon {
  display: inline-block;
  font-size: 13px;
  animation: radar-icon-pulse 1.4s infinite ease-in-out;
}
@keyframes radar-icon-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; filter: drop-shadow(0 0 8px var(--cyan)); }
}

/* Connecting Radar Shimmer Animation on Progress Bar Track */
.progress-bar-track {
  height: 10px;
  background: rgba(51, 65, 85, 0.5);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
  transition: all 0.3s ease;
}
.progress-bar-track.connecting-radar-active {
  background: rgba(30, 41, 59, 0.75);
  border: 1px solid rgba(34, 211, 238, 0.4);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.25);
}
.progress-bar-track.connecting-radar-active::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(34, 211, 238, 0.5) 45%, rgba(168, 85, 247, 0.7) 70%, transparent 100%);
  background-size: 200% 100%;
  animation: p2p-radar-sweep 1.5s infinite linear;
}
@keyframes p2p-radar-sweep {
  0% { background-position: -150% 0; }
  100% { background-position: 150% 0; }
}

.progress-bar-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--cyan), var(--purple)); transition: width 0.3s; position: relative; z-index: 2; }
.p2p-progress-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 11px; margin-top: 4px; }

.meta-stats-group { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.badge-peer {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: monospace;
  font-weight: 700;
  font-size: 11px;
  background: rgba(15, 23, 42, 0.7);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(71, 85, 105, 0.3);
}

.meta-action-group { display: flex; gap: 8px; align-items: center; }
.btn-micro {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(34, 211, 238, 0.4);
  color: var(--cyan);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-micro:hover {
  background: rgba(34, 211, 238, 0.3);
  color: #fff;
}

@media (max-width: 640px) {
  .p2p-handshake-stepper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .stepper-arrow {
    display: none;
  }
}

.p2p-explainer-details {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(71, 85, 105, 0.25);
}

.p2p-explainer-summary {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.p2p-explainer-summary::-webkit-details-marker { display: none; }
.p2p-explainer-summary:hover { color: var(--cyan); }

.explainer-toggle { font-size: 12px; transition: transform 0.2s; }
.p2p-explainer-details[open] .explainer-toggle { transform: rotate(180deg); }

.p2p-explainer-content {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 11px;
}

.explainer-item {
  line-height: 1.5;
  color: #cbd5e1;
}

.explainer-term {
  font-weight: 800;
  margin-right: 4px;
}

.explainer-def code {
  background: rgba(15, 23, 42, 0.7);
  padding: 1px 4px;
  border-radius: 3px;
  color: var(--cyan);
  font-size: 10px;
}

/* Post-Download Step-by-Step Guide */
.post-download-guide {
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(34, 211, 238, 0.5);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(34, 211, 238, 0.2);
  animation: fadeInDown 0.4s ease forwards;
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(71, 85, 105, 0.35);
  padding-bottom: 10px;
}

.guide-icon {
  font-size: 24px;
  line-height: 1;
}

.guide-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: 0.5px;
}

.guide-sub {
  font-size: 11px;
  color: var(--cyan);
  margin: 2px 0 0 0;
}

.guide-steps-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-step-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(30, 41, 59, 0.6);
  padding: 9px 12px;
  border-radius: 8px;
  border: 1px solid rgba(71, 85, 105, 0.3);
}

.guide-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  font-weight: 800;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 1px;
}

.guide-step-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 11px;
  line-height: 1.4;
  color: #cbd5e1;
}

.guide-step-body strong {
  color: #fff;
  font-size: 12px;
}

.guide-step-body code {
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.3);
}

.guide-tip-box {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(245, 158, 11, 0.12);
  border-left: 3px solid #f59e0b;
  border-radius: 6px;
  font-size: 11px;
  line-height: 1.4;
  color: #fde68a;
}

.guide-destination-callout {
  margin-top: 6px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 11px;
}
.guide-destination-callout strong {
  color: var(--cyan);
  display: block;
  margin-bottom: 4px;
}
.guide-destination-callout ul {
  margin: 0;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.guide-destination-callout li {
  color: #cbd5e1;
  line-height: 1.4;
}

/* Meta Row (Checksum & Links) */
.meta-row {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(71, 85, 105, 0.25);
  font-size: 12px;
}
.hash-box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: monospace;
  background: rgba(15, 23, 42, 0.7);
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid rgba(71, 85, 105, 0.3);
  cursor: pointer;
  transition: border-color 0.2s;
  max-width: 100%;
}
.hash-box:hover { border-color: var(--cyan); }
.hash-label { color: var(--cyan); font-weight: 700; }
.hash-val { color: #cbd5e1; max-width: 260px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.copy-btn { font-size: 12px; opacity: 0.7; }

.alt-links { display: flex; gap: 10px; }
.alt-btn {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: color 0.2s, border-color 0.2s;
}
.alt-btn:hover { color: #fff; border-color: var(--purple); }

/* ------------------------------------------------------------------
   HERO RIGHT COLUMN: FEATURED STREAMER & SWARM RADAR CARDS
   ------------------------------------------------------------------ */
.hero-streamer-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(26, 21, 35, 0.88));
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(251, 191, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.hero-streamer-card:hover {
  border-color: rgba(251, 191, 36, 0.6);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 28px rgba(251, 191, 36, 0.15);
}

.hero-streamer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-streamer-radar-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--cyan);
  letter-spacing: 0.06em;
}

.prestige-tag {
  color: #fbbf24;
}

.pedestal-trophy-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(217, 119, 6, 0.15));
  border: 1px solid rgba(251, 191, 36, 0.5);
  color: #fde68a;
  font-size: 10.5px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.pulse-beacon {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-view-all-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-view-all-link:hover {
  color: var(--cyan);
}

.hero-streamer-body {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-avatar-wrap {
  position: relative;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.hero-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(71, 85, 105, 0.5);
}

.avatar-live .hero-avatar {
  border-color: var(--rose);
  box-shadow: 0 0 12px rgba(244, 63, 94, 0.5);
}

.hero-live-beacon {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 11px;
  height: 11px;
  background: var(--rose);
  border: 2px solid #0f172a;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-streamer-meta {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-streamer-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.hero-streamer-name {
  font-size: 14.5px;
  font-weight: 800;
  color: #fff;
}

.hero-streamer-game {
  font-size: 11px;
  color: var(--cyan);
  font-weight: 600;
}

.hero-streamer-title {
  font-size: 10.5px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-style: italic;
}

.hero-streamer-ai {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-ai-archetype-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
}

.hero-streamer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

/* ------------------------------------------------------------------
   HERO PODIUM CONTENDER SLOTS (Rank #2 & Rank #3 Preview Boxes)
   ------------------------------------------------------------------ */
.hero-contenders-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media (max-width: 600px) {
  .hero-contenders-row {
    grid-template-columns: 1fr;
  }
}

.hero-contender-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(26, 32, 44, 0.8));
  border: 1px solid rgba(71, 85, 105, 0.35);
  border-radius: 14px;
  padding: 12px 14px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.hero-contender-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.contender-silver {
  border-color: rgba(148, 163, 184, 0.35);
}
.contender-silver:hover {
  border-color: rgba(226, 232, 240, 0.65);
  box-shadow: 0 8px 24px rgba(148, 163, 184, 0.18);
}

.contender-bronze {
  border-color: rgba(217, 119, 6, 0.35);
}
.contender-bronze:hover {
  border-color: rgba(245, 158, 11, 0.65);
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.18);
}

.badge-silver {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.25), rgba(100, 116, 139, 0.2));
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: #f1f5f9;
}

.badge-bronze {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.25), rgba(180, 83, 9, 0.2));
  border: 1px solid rgba(217, 119, 6, 0.55);
  color: #fde68a;
}

.hero-contender-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.contender-rank-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.contender-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #cbd5e1;
}

.contender-status-pill {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #94a3b8;
  white-space: nowrap;
}

.hero-contender-body {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contender-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(30, 41, 59, 0.85);
  border: 1.5px dashed rgba(148, 163, 184, 0.45);
  flex-shrink: 0;
}

.silver-gradient {
  background: linear-gradient(135deg, rgba(148, 163, 184, 0.25), rgba(71, 85, 105, 0.25));
  border-color: rgba(226, 232, 240, 0.55);
}

.bronze-gradient {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.25), rgba(180, 83, 9, 0.25));
  border-color: rgba(245, 158, 11, 0.55);
}

.contender-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contender-name {
  font-size: 12.5px;
  font-weight: 800;
  color: #f1f5f9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contender-subtitle {
  font-size: 10px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contender-dual-factors {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(71, 85, 105, 0.25);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 9.5px;
}

.contender-factor {
  color: #94a3b8;
  font-size: 9px;
  font-weight: 600;
}

.contender-factor b {
  color: #cbd5e1;
}

.contender-factor-divider {
  color: rgba(148, 163, 184, 0.35);
  margin: 0 2px;
}

.contender-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 2px;
}

.contender-note {
  font-size: 9.5px;
  color: var(--text-muted);
}

.contender-claim-link {
  font-size: 10px;
  font-weight: 700;
  color: var(--cyan);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  transition: color 0.15s, transform 0.15s;
}

.contender-claim-link:hover {
  color: #a5f3fc;
  transform: translateX(2px);
}

/* Hero Decentralized Swarm Radar Card */
.hero-swarm-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 14px 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-swarm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.swarm-header-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--cyan);
}

.swarm-health-badge {
  font-size: 10px;
  font-weight: 800;
  color: var(--green);
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.35);
  padding: 2px 7px;
  border-radius: 10px;
}

.hero-swarm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 10px;
  padding: 8px 6px;
}

.hero-swarm-metric {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

.hero-swarm-metric:not(:last-child) {
  border-right: 1px solid rgba(71, 85, 105, 0.25);
}

.metric-val {
  font-size: 15px;
  font-weight: 900;
  font-family: monospace;
  line-height: 1.2;
}

.metric-label {
  font-size: 9.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
  white-space: nowrap;
}

.hero-swarm-sub {
  font-size: 10px;
  color: var(--text-muted);
  text-align: center;
}

/* Wide Horizontal Swarm Strip Banner */
.swarm-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 14px 20px;
  margin: 16px 0 28px;
  flex-wrap: wrap;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.swarm-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.swarm-val {
  display: block;
  font-size: 16px;
  font-weight: 900;
  font-family: monospace;
  line-height: 1.2;
}

.swarm-lbl {
  font-size: 10.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.swarm-divider {
  width: 1px;
  height: 26px;
  background: rgba(71, 85, 105, 0.35);
}

@media (max-width: 768px) {
  .swarm-divider { display: none; }
  .swarm-strip { gap: 12px; }
}

/* Features Grid (Condensed Spacing) */
.features-section { padding: 26px 0 16px; }
.section-title { font-size: 24px; font-weight: 900; text-align: center; margin-bottom: 4px; }
.section-sub { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 22px; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 24px;
  transition: transform 0.2s, border-color 0.2s;
}
.card:hover { transform: translateY(-3px); border-color: rgba(34, 211, 238, 0.4); }
.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.icon-cyan { background: rgba(34, 211, 238, 0.15); border: 1px solid rgba(34, 211, 238, 0.3); }
.icon-purple { background: rgba(168, 85, 247, 0.15); border: 1px solid rgba(168, 85, 247, 0.3); }
.icon-green { background: rgba(52, 211, 153, 0.15); border: 1px solid rgba(52, 211, 153, 0.3); }
.icon-amber { background: rgba(251, 191, 36, 0.15); border: 1px solid rgba(251, 191, 36, 0.3); }
.icon-rose { background: rgba(244, 63, 94, 0.15); border: 1px solid rgba(244, 63, 94, 0.3); }
.icon-indigo { background: rgba(99, 102, 241, 0.15); border: 1px solid rgba(99, 102, 241, 0.3); }

.card h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* Colors */
.text-green { color: var(--green); }
.text-cyan { color: var(--cyan); }
.text-purple { color: var(--purple); }
.text-amber { color: var(--amber); }

/* ------------------------------------------------------------------
   TRUST & ZERO-TRUST SECURITY ARCHITECTURE STYLES
   ------------------------------------------------------------------ */
.security-section {
  padding: 24px 0 16px;
  border-top: 1px solid rgba(71, 85, 105, 0.25);
}

.security-badges-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px auto 20px;
}

.sec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(71, 85, 105, 0.35);
  padding: 5px 12px;
  border-radius: 9999px;
  color: #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sec-badge-icon {
  font-size: 13px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 22px;
}

.security-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
}

.security-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.4);
}

.sec-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.sec-tag {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(15, 23, 42, 0.6);
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid rgba(71, 85, 105, 0.3);
}

.security-card h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 10px;
}

.security-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}

.security-card code {
  background: rgba(15, 23, 42, 0.7);
  color: var(--cyan);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 11px;
  font-family: monospace;
}

.sec-pill {
  font-size: 11px;
  font-weight: 800;
  font-family: monospace;
  padding: 4px 10px;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 8px;
  border: 1px solid rgba(71, 85, 105, 0.3);
  display: inline-block;
  width: fit-content;
}

/* Comparison Table */
.comparison-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 36px;
}

.comparison-title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}

.comparison-sub {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}

.comparison-table-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}

.comparison-table th {
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.6);
  border-bottom: 2px solid rgba(71, 85, 105, 0.3);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cyan);
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(71, 85, 105, 0.2);
  line-height: 1.5;
}

.comparison-table tr:hover td {
  background: rgba(30, 41, 59, 0.3);
}

/* Deep SEO Overview Box */
.seo-overview-card {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.7) 100%);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.seo-overview-title {
  font-size: 20px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  background: linear-gradient(90deg, #fff, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seo-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

@media (min-width: 900px) {
  .security-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .seo-pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 600px) and (max-width: 899px) {
  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .seo-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 599px) {
  .security-grid {
    grid-template-columns: 1fr;
  }
  .seo-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.seo-pillar h4 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.seo-pillar p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Footer */
.footer {
  margin-top: 60px;
  padding: 24px 0;
  border-top: 1px solid rgba(71, 85, 105, 0.25);
  font-size: 12px;
  color: var(--text-muted);
}
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-right code { background: rgba(15, 23, 42, 0.7); padding: 3px 6px; border-radius: 4px; color: var(--cyan); }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #10b981;
  color: #06281e;
  font-size: 12px;
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 999;
  transition: opacity 0.3s;
}
.hidden { display: none !important; }

/* ------------------------------------------------------------------
   AI STREAMER DISCOVERY, LEADERBOARD & VOD EXPLORER STYLES
   ------------------------------------------------------------------ */
.leaderboard-section {
  padding: 24px 0 18px;
  border-top: 1px solid rgba(71, 85, 105, 0.25);
  margin-top: 10px;
}

.leaderboard-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.section-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.text-left { text-align: left !important; }

.badge-count {
  background: rgba(34, 211, 238, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(34, 211, 238, 0.35);
  padding: 5px 12px;
  font-size: 12px;
  font-family: monospace;
}

/* Controls: Search, Sort & Vibe Filters */
.discovery-controls {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 14px 16px;
  margin-bottom: 18px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.search-sort-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.search-input-wrap {
  position: relative;
  flex: 1;
  min-width: 280px;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  opacity: 0.6;
  pointer-events: none;
}

.search-input {
  width: 100%;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 12px;
  padding: 12px 14px 12px 40px;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 16px var(--cyan-glow);
}

.search-input::placeholder {
  color: rgba(148, 163, 184, 0.65);
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sort-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.sort-select {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(71, 85, 105, 0.4);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.sort-select:focus {
  border-color: var(--cyan);
}

.sort-select option {
  background: #0f172a;
  color: #fff;
}

/* AI Vibe Filter Pills */
.filter-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.filter-pill {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(71, 85, 105, 0.35);
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-pill:hover {
  background: rgba(30, 41, 59, 0.8);
  color: #fff;
  border-color: rgba(168, 85, 247, 0.4);
}

.filter-pill.active {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(168, 85, 247, 0.25));
  border-color: var(--cyan);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 2px 12px var(--cyan-glow);
}

/* Leaderboard Grid */
.leaderboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 22px;
}

/* Streamer Card */
.streamer-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.streamer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.streamer-card.card-live {
  border-color: rgba(244, 63, 94, 0.4);
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.15);
}

.streamer-card.card-contender {
  border-style: dashed;
  opacity: 0.92;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.75), rgba(30, 41, 59, 0.65));
}

.streamer-card.card-contender:hover {
  opacity: 1;
}

.streamer-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(30, 41, 59, 0.85);
  border: 2px dashed rgba(148, 163, 184, 0.45);
}

.badge-podium-open {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 10px;
  background: rgba(148, 163, 184, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: #cbd5e1;
}

.tier-contender {
  background: rgba(30, 41, 59, 0.6) !important;
  border-color: rgba(100, 116, 139, 0.4) !important;
}

.tier-contender .grade-letter {
  color: #94a3b8 !important;
}

.tier-contender .grade-sub {
  color: #64748b !important;
}

.card-main-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.streamer-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.avatar-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.streamer-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(71, 85, 105, 0.4);
}

.avatar-live .streamer-avatar {
  border-color: var(--rose);
  box-shadow: 0 0 14px rgba(244, 63, 94, 0.5);
}

.live-dot-beacon {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 13px;
  height: 13px;
  background: var(--rose);
  border: 2px solid #0f172a;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-avatar-wrap {
  position: relative;
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #1e1b4b;
  border: 2px solid rgba(139, 92, 246, 0.4);
}

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

.hero-avatar-wrap.avatar-live {
  border-color: var(--rose);
  box-shadow: 0 0 16px rgba(244, 63, 94, 0.5);
}

.hero-broadcast-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

.hero-broadcast-badge.badge-offline {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.14);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.hero-broadcast-badge.badge-live {
  color: #fb7185;
  background: rgba(244, 63, 94, 0.15);
  border: 1px solid rgba(244, 63, 94, 0.4);
  animation: pulse 2s infinite;
}

.streamer-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.streamer-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.streamer-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.badge-scc-verified {
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 12px;
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(34, 211, 238, 0.4);
  color: var(--cyan);
}

.streamer-game {
  font-size: 12px;
  color: var(--cyan);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Grade Tier Badge */
.grade-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: transform 0.2s ease;
}

.grade-badge:hover {
  transform: scale(1.08);
}

.grade-letter {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.grade-sub {
  font-size: 9px;
  font-weight: 800;
  font-family: monospace;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* Tier Themes */
.tier-s {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.6);
  color: var(--amber);
  box-shadow: 0 0 16px rgba(251, 191, 36, 0.25);
}

.tier-a {
  background: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 0.6);
  color: var(--green);
  box-shadow: 0 0 16px rgba(52, 211, 153, 0.25);
}

.tier-b {
  background: rgba(34, 211, 238, 0.15);
  border-color: rgba(34, 211, 238, 0.6);
  color: var(--cyan);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.25);
}

.tier-c {
  background: rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.6);
  color: var(--purple);
  box-shadow: 0 0 16px rgba(168, 85, 247, 0.25);
}

.tier-d, .tier-f {
  background: rgba(148, 163, 184, 0.15);
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text-muted);
}

/* Dual-Factor Streamer Grading Breakdown */
.streamer-dual-factors {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  padding: 5px 8px;
  margin-top: 2px;
}

.hero-streamer-dual-factors {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 6px 0;
  padding: 6px 10px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.factor-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 2px 7px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.factor-momentum {
  border-color: rgba(192, 132, 252, 0.35);
}
.factor-momentum:hover {
  background: rgba(192, 132, 252, 0.12);
}

.factor-relevancy {
  border-color: rgba(34, 211, 238, 0.35);
}
.factor-relevancy:hover {
  background: rgba(34, 211, 238, 0.12);
}

.factor-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-momentum {
  background: #c084fc;
  box-shadow: 0 0 6px rgba(192, 132, 252, 0.9);
}
.dot-relevancy {
  background: #22d3ee;
  box-shadow: 0 0 6px rgba(34, 211, 238, 0.9);
}

.factor-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.factor-grade {
  font-size: 12px;
  font-weight: 900;
  font-family: monospace;
}
.factor-grade.grade-s { color: #fbbf24; }
.factor-grade.grade-a { color: #34d399; }
.factor-grade.grade-b { color: #22d3ee; }
.factor-grade.grade-c { color: #a78bfa; }
.factor-grade.grade-d, .factor-grade.grade-f { color: #fb7185; }

.factor-score {
  font-size: 10px;
  color: #cbd5e1;
  font-family: monospace;
}

.dual-factors-formula-tag {
  font-size: 8.5px;
  font-weight: 800;
  color: #c084fc;
  background: rgba(192, 132, 252, 0.12);
  border: 1px solid rgba(192, 132, 252, 0.25);
  padding: 2px 6px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  margin-left: auto;
}

/* Streamer Title / Bio */
.streamer-status-title {
  font-size: 13px;
  line-height: 1.5;
  color: #cbd5e1;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 38px;
}

/* AI Archetype Box */
.ai-archetype-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-archetype-label {
  font-size: 10px;
  font-weight: 800;
  color: #c084fc;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.ai-archetype-val {
  font-size: 12px;
  font-weight: 700;
  color: #f8fafc;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Vibe Tags */
.vibe-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.vibe-tag {
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(71, 85, 105, 0.35);
  color: #94a3b8;
  padding: 3px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.vibe-tag:hover {
  background: rgba(34, 211, 238, 0.15);
  color: var(--cyan);
  border-color: rgba(34, 211, 238, 0.4);
}

/* Footer Actions */
.card-footer-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(71, 85, 105, 0.25);
  gap: 8px;
  flex-wrap: wrap;
}

.live-status-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
}

.pill-live { color: var(--rose); }
.pill-offline { color: var(--text-muted); }

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.pill-live .pulse-dot {
  animation: pulse 1.5s infinite;
}

.footer-btn-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.btn-toggle-vods {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(71, 85, 105, 0.4);
  color: #cbd5e1;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-toggle-vods:hover, .btn-toggle-vods.active {
  background: rgba(34, 211, 238, 0.15);
  color: var(--cyan);
  border-color: var(--cyan);
}

.btn-watch-live {
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: #fff;
  padding: 6px 14px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-watch-live:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.btn-watch-pulsing {
  background: linear-gradient(135deg, #e11d48, #f43f5e);
  box-shadow: 0 0 16px rgba(244, 63, 94, 0.4);
}

/* VOD Drawer */
.vod-drawer {
  background: rgba(10, 15, 26, 0.95);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 14px;
  padding: 14px;
  margin-top: 8px;
  animation: fadeIn 0.25s ease-out;
}

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

.vod-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(71, 85, 105, 0.25);
}

.vod-drawer-title {
  font-size: 12px;
  font-weight: 800;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-close-drawer {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 4px;
}

.btn-close-drawer:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.vod-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.vod-card-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s;
}

.vod-card-item:hover {
  transform: translateY(-2px);
}

.vod-thumb-box {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(71, 85, 105, 0.3);
}

.vod-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vod-duration-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  font-family: monospace;
}

.vod-ago-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(0, 0, 0, 0.75);
  color: #cbd5e1;
  font-size: 9px;
  font-weight: 600;
  padding: 1px 4px;
  border-radius: 3px;
}

.vod-item-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vod-item-title {
  font-size: 11px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vod-item-meta {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
}

.vod-watch-link {
  color: var(--cyan);
  font-weight: 700;
}

.vod-drawer-empty {
  padding: 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

/* Empty State */
.leaderboard-empty {
  grid-column: 1 / -1;
  padding: 40px 20px;
  text-align: center;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
}

.empty-icon { font-size: 36px; margin-bottom: 12px; }
.leaderboard-empty h3 { font-size: 18px; margin-bottom: 6px; }
.leaderboard-empty p { color: var(--text-muted); font-size: 13px; margin-bottom: 18px; }

.btn-clear-filters {
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(34, 211, 238, 0.4);
  color: var(--cyan);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-clear-filters:hover {
  background: rgba(34, 211, 238, 0.3);
}

.leaderboard-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 40px 0;
  color: var(--text-muted);
  font-size: 14px;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(34, 211, 238, 0.2);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ------------------------------------------------------------------
   QUICK START GUIDE STYLES
   ------------------------------------------------------------------ */
.quickstart-section {
  padding: 24px 0 20px;
  border-top: 1px solid rgba(71, 85, 105, 0.25);
  margin-top: 16px;
}

.text-center { text-align: center !important; }

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

.step-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.45);
}

.step-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px var(--cyan-glow);
}

.step-content h3 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.step-content p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.step-content code {
  background: rgba(15, 23, 42, 0.7);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--cyan);
  font-size: 11px;
}

/* Setup FAQ Card */
.setup-faq-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  padding: 24px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-card-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(71, 85, 105, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  transition: border-color 0.2s, background-color 0.2s;
}

.faq-item[open] {
  border-color: rgba(34, 211, 238, 0.4);
  background: rgba(15, 23, 42, 0.9);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: #f1f5f9;
  cursor: pointer;
  list-style: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-size: 18px;
  font-weight: 800;
  color: var(--cyan);
  transition: transform 0.2s;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(71, 85, 105, 0.25);
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-muted);
}



/* Post-Download Step-by-Step Guide */
.post-download-guide {
  background: rgba(6, 78, 59, 0.22);
  border: 1px solid rgba(52, 211, 153, 0.45);
  border-radius: 14px;
  padding: 16px 18px;
  margin-top: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  animation: fadeIn 0.35s ease-out;
}

.guide-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.guide-icon {
  font-size: 26px;
  flex-shrink: 0;
}

.guide-title {
  font-size: 14.5px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 2px;
  letter-spacing: 0.02em;
}

.guide-sub {
  font-size: 12px;
  color: #6ee7b7;
  margin: 0;
}

.guide-steps-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-step-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.guide-step-num {
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--cyan);
  color: #0f172a;
  font-weight: 900;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.5);
}

.guide-step-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #e2e8f0;
  line-height: 1.5;
  flex: 1;
}

.guide-step-body strong {
  color: #fff;
  font-size: 12.5px;
}

.guide-step-body code {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(71, 85, 105, 0.4);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: monospace;
  color: var(--cyan);
  font-size: 11px;
}

.guide-destination-callout {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 6px 0 2px;
  font-size: 12px;
  color: #cbd5e1;
}

.guide-destination-callout strong {
  color: var(--cyan) !important;
  display: block;
  margin-bottom: 6px;
  font-size: 12px !important;
}

.guide-destination-callout ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.guide-tip-box {
  background: rgba(30, 41, 59, 0.7);
  border-left: 3px solid #38bdf8;
  border-radius: 6px;
  padding: 8px 12px;
  margin-top: 12px;
  font-size: 11.5px;
  color: #94a3b8;
  line-height: 1.45;
}

/* ETA Badge & Progress Right Metrics */
.p2p-header-metrics {
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-eta {
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  color: #c084fc;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.4);
  padding: 2px 7px;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

.badge-peer.text-purple {
  color: #c084fc;
  border-color: rgba(168, 85, 247, 0.35);
  background: rgba(168, 85, 247, 0.12);
}

/* Gamer Brief / 255-Char Pitch Card */
.gamer-pitch-card {
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(168, 85, 247, 0.45);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 12px 0 16px;
  box-shadow: 0 4px 18px rgba(168, 85, 247, 0.15);
  position: relative;
  overflow: hidden;
}

.gamer-pitch-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}

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

.gamer-pitch-badge {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #d8b4fe;
  background: rgba(168, 85, 247, 0.2);
  border: 1px solid rgba(168, 85, 247, 0.4);
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
}

.gamer-pitch-tag {
  font-size: 10px;
  font-family: monospace;
  font-weight: 700;
  color: var(--cyan);
}

.gamer-pitch-text {
  font-size: 12.5px;
  color: #f1f5f9;
  line-height: 1.55;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ==================================================================
   NAVBAR ACCOUNT BUTTON & ROLE PILLS
   ================================================================== */
.nav-account-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.35);
  color: #e2e8f0;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.nav-account-btn:hover {
  background: rgba(147, 51, 234, 0.3);
  border-color: rgba(192, 132, 252, 0.6);
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.3);
  transform: translateY(-1px);
}
.nav-account-btn.is-admin {
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.2), rgba(147, 51, 234, 0.25));
  border-color: rgba(245, 158, 11, 0.6);
  color: #fef3c7;
  box-shadow: 0 0 14px rgba(245, 158, 11, 0.25);
}
.nav-account-avatar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border: 1px solid rgba(34,211,238,.55);
  background: linear-gradient(135deg, rgba(34,211,238,.25), rgba(124,58,237,.28));
  box-shadow: 0 0 12px rgba(34,211,238,.2);
  border-radius: 50%;
  overflow: hidden;
}
.nav-account-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.account-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a855f7;
  box-shadow: 0 0 8px #a855f7;
}
.nav-account-btn.is-admin .account-dot {
  background: #f59e0b;
  box-shadow: 0 0 8px #f59e0b;
}
.role-pill-admin {
  font-size: 9px;
  font-weight: 900;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.role-pill-creator {
  font-size: 9px;
  font-weight: 900;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.2);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 1px 5px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* Carousel Subheader Admin Button */
.btn-carousel-admin {
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.45);
  color: #fca5a5;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-left: 6px;
}
.btn-carousel-admin:hover {
  background: rgba(239, 68, 68, 0.35);
  border-color: rgba(248, 113, 113, 0.8);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
  color: #fff;
}

/* On-Card Admin Curation Cluster & Buttons */
.badge-spotlight-fav {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.55);
  color: #fbbf24;
  font-size: 9.5px;
  font-weight: 900;
  padding: 1px 6px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.25);
}

.spotlight-card-admin-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
}

.spotlight-btn-tier,
.spotlight-card-ban-btn {
  font-size: 10px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.spotlight-btn-like {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.4);
  color: #fbbf24;
}
.spotlight-btn-like:hover {
  background: rgba(245, 158, 11, 0.35);
  color: #fff;
  border-color: #fbbf24;
  box-shadow: 0 0 8px rgba(245, 158, 11, 0.5);
}
.spotlight-btn-like.is-active {
  background: #f59e0b;
  border-color: #fbbf24;
  color: #0f172a;
  font-weight: 900;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.7);
}

.spotlight-btn-dislike {
  background: rgba(148, 163, 184, 0.15);
  border-color: rgba(148, 163, 184, 0.35);
  color: #cbd5e1;
}
.spotlight-btn-dislike:hover {
  background: rgba(148, 163, 184, 0.3);
  color: #fff;
  border-color: #cbd5e1;
}
.spotlight-btn-dislike.is-active {
  background: #64748b;
  border-color: #94a3b8;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 10px rgba(100, 116, 139, 0.6);
}

.spotlight-btn-ban,
.spotlight-card-ban-btn {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  color: #f87171;
}
.spotlight-btn-ban:hover,
.spotlight-card-ban-btn:hover {
  background: #ef4444;
  color: #fff;
  border-color: #f87171;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
  transform: scale(1.05);
}
.spotlight-btn-ban.is-active {
  background: #ef4444;
  border-color: #f87171;
  color: #fff;
}

/* ==================================================================
   PORTAL MODAL SYSTEM (DARK CYBERPUNK GLASS)
   ================================================================== */
.portal-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.portal-modal-backdrop.hidden {
  display: none !important;
}
.portal-modal-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 27, 75, 0.94));
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-radius: 18px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 25px rgba(168, 85, 247, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.modal-card-wide {
  max-width: 780px;
}
.modal-card-wide .portal-modal-body {
  overflow-x: hidden;
}
.portal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(71, 85, 105, 0.3);
}
.modal-title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-icon {
  font-size: 24px;
}
.modal-title {
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: #f8fafc;
  letter-spacing: 0.02em;
}
.modal-desc {
  margin: 2px 0 0;
  font-size: 11.5px;
  color: #94a3b8;
}
.modal-close-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 26px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.15s;
}
.modal-close-btn:hover {
  color: #fff;
}
.portal-modal-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 80vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.3) transparent;
}
.portal-modal-body::-webkit-scrollbar {
  width: 6px;
}
.portal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.3);
  border-radius: 9999px;
}

/* Forms in Modal */
.account-connect-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-label {
  font-size: 12px;
  font-weight: 700;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.security-tag {
  font-size: 10px;
  font-family: monospace;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 1px 6px;
  border-radius: 4px;
}
.input-with-prefix {
  display: flex;
  align-items: center;
  background: rgba(2, 6, 23, 0.75);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.input-with-prefix:focus-within {
  border-color: #a855f7;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}
.input-prefix {
  padding: 10px 0 10px 14px;
  font-size: 13px;
  color: #64748b;
  font-family: monospace;
  font-weight: 700;
}
.form-input {
  width: 100%;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: #f8fafc;
  font-size: 13px;
  outline: none;
}
.form-group > .form-input {
  background: rgba(2, 6, 23, 0.75);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 10px;
}
.form-group > .form-input:focus {
  border-color: #a855f7;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}
.form-hint {
  font-size: 11px;
  color: #64748b;
  line-height: 1.4;
}
.admin-pin-hint {
  color: #f59e0b;
}
.form-actions {
  margin-top: 6px;
}
.btn-modal-primary {
  width: 100%;
  background: linear-gradient(135deg, #9333ea, #6366f1);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
}
.btn-modal-primary:hover {
  background: linear-gradient(135deg, #a855f7, #4f46e5);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.6);
  transform: translateY(-1px);
}

/* Account Profile Preview (Connected) */
.account-profile-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.account-preview-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 16px;
  border-radius: 12px;
}
.preview-avatar-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.preview-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #a855f7;
}
.preview-role-badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8.5px;
  font-weight: 900;
  color: #fef3c7;
  background: #d97706;
  border: 1px solid #f59e0b;
  padding: 1px 6px;
  border-radius: 9999px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.preview-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.preview-name {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
  color: #f8fafc;
}
.preview-channel {
  font-size: 12px;
  font-family: monospace;
  color: #a855f7;
}
.preview-bio {
  margin: 4px 0 0;
  font-size: 11.5px;
  color: #94a3b8;
  line-height: 1.35;
}
.btn-modal-disconnect {
  width: 100%;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-modal-disconnect:hover {
  background: rgba(239, 68, 68, 0.3);
  color: #fff;
  border-color: #ef4444;
}

/* Carousel Moderation Modal */
.admin-quick-ban-row {
  display: flex;
  gap: 10px;
}
.admin-quick-ban-row .form-input {
  background: rgba(2, 6, 23, 0.75);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 10px;
  flex: 1;
}
.btn-modal-danger {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  border: none;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.btn-modal-danger:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
}
.admin-blacklist-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(2, 6, 23, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(71, 85, 105, 0.25);
}
.blacklist-stat-pill {
  font-size: 11px;
  font-weight: 900;
  color: #f87171;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 2px 8px;
  border-radius: 9999px;
  white-space: nowrap;
}
.blacklist-note {
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.3;
}
.admin-blacklist-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}
.blacklist-empty-state {
  text-align: center;
  padding: 28px 16px;
  color: #94a3b8;
}
.blacklist-empty-icon {
  font-size: 32px;
  display: block;
  margin-bottom: 8px;
}
.blacklist-empty-sub {
  font-size: 11px;
  color: #64748b;
}
.blacklist-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 10px;
  transition: border-color 0.2s;
}
.blacklist-item-row:hover {
  border-color: rgba(239, 68, 68, 0.6);
}
.blacklist-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blacklist-badge-icon {
  font-size: 16px;
}
.blacklist-channel-meta {
  display: flex;
  flex-direction: column;
}
.blacklist-channel-name {
  font-size: 13px;
  font-weight: 900;
  color: #f8fafc;
  font-family: monospace;
}
.blacklist-channel-status {
  font-size: 10.5px;
  color: #94a3b8;
}
.btn-unban-channel {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #6ee7b7;
  font-size: 11px;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-unban-channel:hover {
  background: #10b981;
  color: #fff;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* ==================================================================
   RADAR CURATION & AFFINITY DESK (ADMIN)
   ================================================================== */
/* Radar Search & Curation Box */
.admin-search-curation-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.admin-search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 12px;
  padding: 4px 6px 4px 14px;
  transition: all 0.2s;
}
.admin-search-input-wrap:focus-within {
  border-color: #22d3ee;
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.25);
}
.search-input-icon {
  font-size: 16px;
  opacity: 0.7;
}
.admin-search-input {
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  color: #fff;
  font-size: 13px;
  flex: 1;
  padding: 8px 4px;
}

/* Channel Search Result / Preview Card */
.curation-search-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9));
  border: 1px solid rgba(34, 211, 238, 0.4);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  animation: fadeInDown 0.2s ease;
}
.curation-card-top-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (min-width: 768px) {
  .curation-card-top-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.curation-preview-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.curation-preview-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(34, 211, 238, 0.5);
}
.curation-preview-avatar.live-avatar {
  border-color: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}
.curation-preview-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.curation-preview-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.curation-preview-name {
  font-size: 14px;
  font-weight: 900;
  color: #f8fafc;
}
.curation-preview-handle {
  font-size: 12px;
  font-weight: 800;
  color: #94a3b8;
  font-family: monospace;
}
.curation-current-tier-pill {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 900;
  padding: 2px 7px;
  border-radius: 9999px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.tier-pill-more {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #fbbf24;
}
.tier-pill-less {
  background: rgba(100, 116, 139, 0.25);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #cbd5e1;
}
.tier-pill-banned {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #f87171;
}
.tier-pill-neutral {
  background: rgba(71, 85, 105, 0.2);
  border: 1px solid rgba(71, 85, 105, 0.4);
  color: #94a3b8;
}
.curation-preview-stream {
  font-size: 11px;
  color: #cbd5e1;
}

.curation-preview-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.btn-tier-action.is-active {
  filter: brightness(1.2);
  outline: 2px solid #fff;
}
.btn-tier-neutral {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #94a3b8;
}
.btn-tier-neutral:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.admin-quick-curation-btns {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.btn-tier-action {
  font-size: 11.5px;
  font-weight: 800;
  padding: 9px 13px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  border: 1px solid transparent;
}
.btn-tier-like {
  background: rgba(245, 158, 11, 0.2);
  border-color: rgba(245, 158, 11, 0.5);
  color: #fbbf24;
}
.btn-tier-like:hover {
  background: #f59e0b;
  color: #0f172a;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.5);
}
.btn-tier-dislike {
  background: rgba(100, 116, 139, 0.25);
  border-color: rgba(148, 163, 184, 0.4);
  color: #cbd5e1;
}
.btn-tier-dislike:hover {
  background: #64748b;
  color: #fff;
  box-shadow: 0 0 12px rgba(100, 116, 139, 0.5);
}
.btn-tier-ban {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  color: #f87171;
}
.btn-tier-ban:hover {
  background: #ef4444;
  color: #fff;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.5);
}

.admin-curation-tabs {
  display: flex;
  gap: 8px;
  margin: 12px 0;
  border-bottom: 1px solid rgba(71, 85, 105, 0.3);
  padding-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.admin-curation-tabs::-webkit-scrollbar {
  display: none;
}
.admin-tab-btn {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(71, 85, 105, 0.3);
  color: #94a3b8;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.admin-tab-btn:hover {
  color: #f8fafc;
  border-color: rgba(148, 163, 184, 0.5);
}
.admin-tab-btn.tab-like.is-active {
  background: rgba(245, 158, 11, 0.2);
  border-color: #f59e0b;
  color: #fbbf24;
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.35);
}
.admin-tab-btn.tab-dislike.is-active {
  background: rgba(100, 116, 139, 0.25);
  border-color: #94a3b8;
  color: #f1f5f9;
  box-shadow: 0 0 12px rgba(148, 163, 184, 0.35);
}
.admin-tab-btn.tab-ban.is-active {
  background: rgba(239, 68, 68, 0.2);
  border-color: #ef4444;
  color: #f87171;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.35);
}

.admin-curation-info-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 11.5px;
  line-height: 1.4;
}
.admin-curation-info-banner strong {
  display: block;
  font-size: 12px;
  margin-bottom: 2px;
}
.admin-curation-info-banner p {
  margin: 0;
  color: #cbd5e1;
}
.banner-like {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}
.banner-dislike {
  background: rgba(100, 116, 139, 0.15);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #cbd5e1;
}
.banner-ban {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}
.curation-info-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.admin-curation-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}
.curation-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 10px;
  border: 1px solid rgba(71, 85, 105, 0.3);
  transition: all 0.2s;
}
.curation-item-like {
  border-color: rgba(245, 158, 11, 0.35);
}
.curation-item-like:hover {
  border-color: rgba(245, 158, 11, 0.7);
}
.curation-item-dislike {
  border-color: rgba(100, 116, 139, 0.4);
}
.curation-item-dislike:hover {
  border-color: rgba(148, 163, 184, 0.7);
}
.curation-item-ban {
  border-color: rgba(239, 68, 68, 0.35);
}
.curation-item-ban:hover {
  border-color: rgba(239, 68, 68, 0.7);
}

.curation-item-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.curation-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(71, 85, 105, 0.5);
}
.curation-channel-meta {
  display: flex;
  flex-direction: column;
}
.curation-channel-name {
  font-size: 13px;
  font-weight: 900;
  color: #f8fafc;
  font-family: monospace;
}
.curation-channel-desc {
  font-size: 10.5px;
  color: #94a3b8;
}
.curation-actions-cell {
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-curation-remove {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #cbd5e1;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-curation-remove:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.5);
  color: #f87171;
}

.btn-tier-action.btn-compact,
.btn-curation-remove.btn-compact,
.btn-unban-channel.btn-compact {
  padding: 4px 8px;
  font-size: 11px;
}

/* ==================================================================
   OUTREACH & CREATOR CONTACTS (ADMIN ROLODEX)
   ================================================================== */
.admin-tab-btn.tab-contacts.is-active {
  background: rgba(6, 182, 212, 0.2);
  border-color: #06b6d4;
  color: #22d3ee;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.35);
}

.banner-contacts {
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: #67e8f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.banner-text-grow {
  flex: 1;
  min-width: 240px;
}
.banner-actions-cluster {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-outreach-action {
  font-size: 11px;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.btn-outreach-export {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #6ee7b7;
}
.btn-outreach-export:hover {
  background: #10b981;
  color: #fff;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}
.btn-outreach-copy {
  background: rgba(34, 211, 238, 0.2);
  border: 1px solid rgba(34, 211, 238, 0.5);
  color: #67e8f9;
}
.btn-outreach-copy:hover {
  background: #06b6d4;
  color: #fff;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

/* Contact Editor inside Search Preview Card */
.curation-contact-section {
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(51, 65, 85, 0.6);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.curation-contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.curation-contact-title {
  font-size: 11px;
  font-weight: 800;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.curation-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .curation-contact-grid {
    grid-template-columns: 1.2fr 1fr 1fr auto;
    align-items: flex-end;
  }
}
.curation-contact-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.curation-contact-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #cbd5e1;
}
.curation-contact-input {
  background: rgba(15, 23, 42, 0.8) !important;
  border: 1px solid rgba(71, 85, 105, 0.5) !important;
  border-radius: 6px !important;
  color: #f8fafc !important;
  font-size: 11.5px !important;
  padding: 6px 10px !important;
  outline: none !important;
  transition: all 0.2s;
  min-width: 0;
  box-sizing: border-box;
  width: 100%;
}
.curation-contact-input:focus {
  border-color: #22d3ee !important;
  box-shadow: 0 0 8px rgba(34, 211, 238, 0.3) !important;
}
.btn-save-contact {
  background: #0284c7;
  border: 1px solid #38bdf8;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  height: 31px;
}
.btn-save-contact:hover {
  background: #0369a1;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

/* Contact Badges & List Styles */
.contact-item-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 10px;
  border: 1px solid rgba(6, 182, 212, 0.25);
  transition: all 0.2s;
}
@media (min-width: 640px) {
  .contact-item-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.contact-item-main {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.contact-badges-group {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.contact-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.contact-pill-email {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #93c5fd;
}
.contact-pill-email:hover {
  background: rgba(59, 130, 246, 0.3);
  color: #dbeafe;
}
.contact-pill-discord {
  background: rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.4);
  color: #a5b4fc;
}
.contact-pill-phone {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #86efac;
}
.badge-has-contact {
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 4px;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: #67e8f9;
  cursor: pointer;
}

/* ==========================================================================
   DECENTRALIZED SOLANA ECONOMY & SWARM TELEMETRY SECTION
   ========================================================================== */
.economy-section {
  max-width: 1320px;
  margin: 28px auto 40px;
  padding: 0 20px;
}

.economy-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.economy-header-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-solana-network {
  background: rgba(153, 69, 255, 0.15);
  border: 1px solid rgba(153, 69, 255, 0.4);
  color: #c084fc;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 9999px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-token-mint {
  background: rgba(20, 241, 149, 0.12);
  border: 1px solid rgba(20, 241, 149, 0.35);
  color: #14f195;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 9999px;
  text-decoration: none;
  font-family: monospace;
  transition: all 0.2s;
}

.badge-token-mint:hover {
  background: rgba(20, 241, 149, 0.25);
  border-color: #14f195;
  color: #fff;
  transform: translateY(-1px);
}

.badge-tokenomics {
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: #22d3ee;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.badge-tokenomics:hover {
  background: rgba(34, 211, 238, 0.25);
  border-color: #22d3ee;
  color: #fff;
  transform: translateY(-1px);
}

/* 4 Primary Metric Cards Grid */
.economy-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

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

@media (max-width: 500px) {
  .economy-stats-grid {
    grid-template-columns: 1fr;
  }
}

.economy-stat-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.5));
  border: 1px solid rgba(51, 65, 85, 0.6);
  border-radius: 14px;
  padding: 18px 20px;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.economy-stat-card:hover {
  border-color: rgba(6, 182, 212, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
}

.stat-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.stat-card-icon {
  font-size: 16px;
}

.stat-card-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #94a3b8;
}

.stat-card-value {
  font-size: 26px;
  font-weight: 900;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  color: #f8fafc;
  line-height: 1.1;
  margin-bottom: 6px;
}

.text-gradient-cyan {
  background: linear-gradient(90deg, #06b6d4, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-amber {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card-sub {
  font-size: 11px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-beacon {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 1.5s infinite;
}

/* Two-Column Core Grid */
.economy-core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 860px) {
  .economy-core-grid {
    grid-template-columns: 1fr;
  }
}

.economy-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.7));
  border: 1px solid rgba(51, 65, 85, 0.7);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}

.card-rewards-potential {
  border-left: 4px solid #06b6d4;
}

.card-clmm-pool {
  border-left: 4px solid #8b5cf6;
}

.economy-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.head-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-head-icon {
  font-size: 24px;
}

.card-head-title {
  font-size: 18px;
  font-weight: 800;
  color: #f8fafc;
  margin: 0 0 2px;
}

.card-head-subtitle {
  font-size: 12px;
  color: #94a3b8;
}

.badge-pill {
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pill-active {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.pill-clmm {
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.4);
  color: #c084fc;
}

/* Rewards Tiers List */
.rewards-tiers-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.reward-tier-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.4);
  border-radius: 10px;
  padding: 12px 14px;
}

.tier-icon-wrap {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.tier-info {
  flex: 1;
}

.tier-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2px;
}

.tier-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #f1f5f9;
}

.tier-rate {
  font-size: 12px;
  font-weight: 800;
  color: #38bdf8;
  font-family: monospace;
}

.tier-desc {
  font-size: 11.5px;
  color: #94a3b8;
  margin: 0;
  line-height: 1.4;
}

/* Distribution Sources Box */
.sources-comparison-box {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 10px;
  padding: 14px;
  margin-top: auto;
}

.sources-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 8px;
}

.sources-ratio {
  font-size: 11px;
  color: #94a3b8;
}

.sources-progress-track {
  height: 8px;
  border-radius: 9999px;
  background: #1e293b;
  overflow: hidden;
  display: flex;
  margin-bottom: 10px;
}

.sources-progress-fill {
  height: 100%;
  transition: width 0.3s ease;
}

.p2p-fill {
  background: linear-gradient(90deg, #06b6d4, #38bdf8);
}

.stream-fill {
  background: linear-gradient(90deg, #8b5cf6, #a855f7);
}

.sources-legend-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 10.5px;
  color: #94a3b8;
  flex-wrap: wrap;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-cyan { background: #06b6d4; }
.dot-purple { background: #8b5cf6; }

/* Raydium CLMM Table */
.clmm-meta-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.clmm-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(51, 65, 85, 0.4);
  border-radius: 8px;
  font-size: 12.5px;
}

.clmm-lbl {
  color: #94a3b8;
  font-weight: 600;
}

.clmm-val {
  color: #f1f5f9;
}

.clmm-val-copy {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-micro-copy {
  background: rgba(51, 65, 85, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.4);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-micro-copy:hover {
  background: rgba(6, 182, 212, 0.2);
  border-color: #06b6d4;
}

.text-gradient {
  background: linear-gradient(90deg, #38bdf8, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CLMM Action Buttons */
.clmm-actions-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

@media (max-width: 500px) {
  .clmm-actions-group {
    grid-template-columns: 1fr;
  }
}

.btn-clmm {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-solscan {
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(71, 85, 105, 0.5);
  color: #e2e8f0;
}

.btn-solscan:hover {
  background: rgba(51, 65, 85, 0.9);
  color: #fff;
}

.btn-raydium {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(99, 102, 241, 0.25));
  border: 1px solid rgba(139, 92, 246, 0.5);
  color: #c084fc;
}

.btn-raydium:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.4), rgba(99, 102, 241, 0.4));
  color: #fff;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
}

.btn-dexscreener {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
}

.btn-dexscreener:hover {
  background: rgba(16, 185, 129, 0.3);
  color: #fff;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.3);
}

.clmm-security-callout {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(51, 65, 85, 0.4);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 11px;
  color: #94a3b8;
  margin-top: auto;
}

.sec-icon {
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.sec-text {
  margin: 0;
  line-height: 1.45;
}

/* ==========================================================================
   MULTI-PAGE MARKETING FUNNEL STYLES & VISUAL CUES
   ========================================================================== */

.nav-link.active,
.nav-link.is-active {
  color: var(--cyan, #22d3ee) !important;
  background: rgba(34, 211, 238, 0.12);
  padding: 5px 12px;
  border-radius: 8px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  font-weight: 700;
  box-shadow: 0 0 10px rgba(34, 211, 238, 0.15);
}

.funnel-breadcrumb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(51, 65, 85, 0.5);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(12px);
  gap: 12px;
  flex-wrap: wrap;
}

.funnel-steps-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.funnel-step-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--text-muted, #94a3b8);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.funnel-step-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.funnel-step-item.current {
  color: var(--cyan, #22d3ee);
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.3);
  font-weight: 700;
}

.funnel-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  background: rgba(148, 163, 184, 0.2);
  color: inherit;
}

.funnel-step-item.current .funnel-step-num {
  background: var(--cyan, #22d3ee);
  color: #0f172a;
}

.funnel-step-divider {
  color: rgba(148, 163, 184, 0.3);
  font-size: 10px;
}

.funnel-stage-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #c084fc;
}

.funnel-transition-card {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.85), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 16px;
  padding: 24px 28px;
  margin: 36px 0 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 20px rgba(34, 211, 238, 0.1);
  position: relative;
  overflow: hidden;
}

.funnel-transition-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan, #22d3ee), var(--purple, #a855f7), transparent);
}

.funnel-transition-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.funnel-transition-content p {
  font-size: 13px;
  color: var(--text-muted, #94a3b8);
  margin: 0;
  max-width: 650px;
  line-height: 1.5;
}

.btn-funnel-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #06b6d4, #3b82f6);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.35);
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-funnel-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(6, 182, 212, 0.5);
  color: #fff;
}

.funnel-page-hero {
  padding: 30px 0 20px 0;
  text-align: center;
}

.funnel-page-hero h1 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}

.funnel-page-hero p.subtitle {
  font-size: 15px;
  color: var(--text-muted, #94a3b8);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr; }
  .funnel-transition-card { flex-direction: column; align-items: flex-start; }
  .btn-funnel-next { width: 100%; justify-content: center; }
}

.compare-card {
  background: var(--panel, rgba(30, 41, 59, 0.6));
  border: 1px solid var(--panel-border, rgba(51, 65, 85, 0.5));
  border-radius: 14px;
  padding: 20px;
}

.compare-card.bad {
  border-color: rgba(239, 68, 68, 0.3);
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.05) 0%, rgba(30, 41, 59, 0.6) 100%);
}

.compare-card.good {
  border-color: rgba(34, 211, 238, 0.35);
  background: linear-gradient(180deg, rgba(34, 211, 238, 0.06) 0%, rgba(30, 41, 59, 0.6) 100%);
}

.compare-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.compare-title {
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: #cbd5e1;
}

.compare-bullet {
  font-size: 15px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}







/* -------------------------------------------------------------
   3-PILLAR FEATURE SHOWCASE: WHAT IT IS • WHAT IT'S FOR • HOW TO USE IT
   ------------------------------------------------------------- */
.feature-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 24px 0 32px 0;
}

.feature-pillar-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.9));
  border-radius: 16px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-pillar-card:hover {
  transform: translateY(-2px);
}

.feature-pillar-card .pillar-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-pillar-card .pillar-title {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px 0;
}

.feature-pillar-card .pillar-desc {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0;
}

.feature-pillar-card .pillar-desc code {
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 6px;
  border-radius: 4px;
  color: #38bdf8;
  font-family: monospace;
  font-size: 12px;
}

/* Page Themes */
/* 1. Creator / Content Creation: Cyan & Electric Violet */
.pillar-theme-creator .feature-pillar-card {
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.08);
}
.pillar-theme-creator .pillar-tag {
  color: #38bdf8;
}

/* 2. P2P Mesh Network: Emerald & Mint Green */
.pillar-theme-p2p .feature-pillar-card {
  border: 1px solid rgba(16, 185, 129, 0.35);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.08);
}
.pillar-theme-p2p .pillar-tag {
  color: #34d399;
}

/* 3. AI Wholesale: Neon Magenta & Royal Purple */
.pillar-theme-ai .feature-pillar-card {
  border: 1px solid rgba(192, 132, 252, 0.35);
  box-shadow: 0 8px 24px rgba(192, 132, 252, 0.08);
}
.pillar-theme-ai .pillar-tag {
  color: #c084fc;
}

/* 4. Crypto & Staking: Solana Gold / Amber & Solana Gradient */
.pillar-theme-crypto .feature-pillar-card {
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.1);
}
.pillar-theme-crypto .pillar-tag {
  color: #fbbf24;
}

/* 5. Streamer Application: Vibrant Purple & Electric Blue */
.pillar-theme-apply .feature-pillar-card {
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
}
.pillar-theme-apply .pillar-tag {
  color: #a855f7;
}

/* 6. Dashboard & Telemetry: Deep Indigo & Steel Slate */
.pillar-theme-dashboard .feature-pillar-card {
  border: 1px solid rgba(79, 70, 229, 0.35);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.1);
}
.pillar-theme-dashboard .pillar-tag {
  color: #818cf8;
}

/* =============================================================
   Admin-Only Homepage Carousel Outreach Controls
   ============================================================= */
.carousel-admin-notify-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(52, 211, 153, 0.5);
  border-radius: 999px;
  padding: 3px 12px;
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.25);
  z-index: 10;
}

.carousel-admin-notify-control .admin-crown-icon {
  font-size: 10px;
  font-weight: 900;
  color: #34d399;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.carousel-admin-notify-control .admin-main-feature-label {
  font-size: 11px;
  color: #cbd5e1;
}

.btn-carousel-admin-notify,
.btn-spotlight-notify-feature {
  background: linear-gradient(135deg, #10b981, #059669);
  border: 1px solid #34d399;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-spotlight-notify-feature {
  border-radius: 6px;
  padding: 6px 12px;
}

.btn-carousel-admin-notify:hover,
.btn-spotlight-notify-feature:hover {
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 4px 14px rgba(52, 211, 153, 0.5);
  transform: translateY(-1px);
}

.btn-carousel-admin-notify:active,
.btn-spotlight-notify-feature:active {
  transform: translateY(0);
}

.spotlight-admin-outreach-strip {
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(52, 211, 153, 0.45);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.spotlight-admin-outreach-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
}

.spotlight-admin-outreach-badge {
  font-size: 10px;
  font-weight: 900;
  color: #34d399;
  letter-spacing: 0.04em;
  background: rgba(52, 211, 153, 0.15);
  padding: 2px 6px;
  border-radius: 4px;
}

.spotlight-admin-outreach-streamer {
  color: #cbd5e1;
  font-weight: 700;
  font-size: 11px;
}
