/* =========================================================
   KIRA BOT - COMPONENT STYLES
   ========================================================= */

/* ---------------------------------------------------------
   1. NAVBAR (iOS Dynamic Glass Pill Capsule)
   --------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
  padding: 0 16px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-container {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max-width), 100%);
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(13, 16, 33, 0.72);
  backdrop-filter: blur(28px) saturate(190%);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.55),
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 0 25px rgba(157, 78, 221, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled .nav-container {
  background: rgba(10, 12, 26, 0.92);
  border-color: rgba(157, 78, 221, 0.35);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.75),
    inset 0 1px 1px rgba(255, 255, 255, 0.25),
    0 0 35px rgba(58, 134, 255, 0.25);
  transform: translateY(-2px);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(157, 78, 221, 0.6);
  box-shadow: 0 0 14px rgba(157, 78, 221, 0.5);
  transition: var(--trans-smooth);
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 0 22px rgba(58, 134, 255, 0.8);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.15rem;
}

.nav-brand-badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #9d4edd 0%, #3a86ff 100%);
  color: #fff;
  letter-spacing: 0.5px;
  -webkit-text-fill-color: #fff;
}

/* ---------------------------------------------------------
   iOS Dynamic Glass Pill Navigation Track
   --------------------------------------------------------- */
.nav-pill-track {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 580px;
  overflow: hidden;
  border-radius: 9999px;
  padding: 2px;
}

/* Edge fade gradients for scrollable indication */
.nav-scroll-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22px;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-scroll-fade.left {
  left: 0;
  background: linear-gradient(90deg, rgba(13, 16, 33, 0.95), transparent);
}

.nav-scroll-fade.right {
  right: 0;
  background: linear-gradient(270deg, rgba(13, 16, 33, 0.95), transparent);
}

.nav-pill-track.can-scroll-left .nav-scroll-fade.left {
  opacity: 1;
}

.nav-pill-track.can-scroll-right .nav-scroll-fade.right {
  opacity: 1;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 4px 6px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.3);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  white-space: nowrap;
}

.nav-menu::-webkit-scrollbar {
  display: none;
}

.nav-menu.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 9999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(241, 245, 249, 0.72);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: 
    color 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.08);
}

/* iOS Glowing Active Pill Indicator */
.nav-link.active {
  color: #ffffff;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.95) 0%, rgba(58, 134, 255, 0.95) 100%);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 
    0 4px 18px rgba(157, 78, 221, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

/* Spring scale tactile click/touch response */
.nav-link:active {
  transform: scale(0.92);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-actions .btn-sm {
  padding: 8px 16px;
  font-size: 0.86rem;
  border-radius: 9999px;
}

/* ---------------------------------------------------------
   2. HERO SECTION
   --------------------------------------------------------- */
.hero-section.hero-prism-stage {
  position: relative;
  padding-top: calc(var(--nav-height) + 20px);
  padding-bottom: 75px;
  overflow: hidden;
  perspective: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------------------------------------------------------
   Floating Giant 3D Crystal Prisms in Stage Space
   --------------------------------------------------------- */
.stage-prisms-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.stage-prism-gem {
  position: absolute;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.38) 0%, rgba(0, 240, 255, 0.2) 35%, rgba(157, 78, 221, 0.28) 70%, rgba(255, 0, 128, 0.22) 100%);
  backdrop-filter: blur(16px) saturate(220%);
  -webkit-backdrop-filter: blur(16px) saturate(220%);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(0, 240, 255, 0.35),
    inset 0 1px 3px rgba(255, 255, 255, 0.7);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.prism-inner-facet {
  position: absolute;
  inset: 4px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(215deg, rgba(255, 255, 255, 0.4) 0%, transparent 65%);
}

.gem-tl {
  width: 92px;
  height: 112px;
  top: 6%;
  left: 2%;
  animation: gemTumble1 11s ease-in-out infinite;
}

.gem-bl {
  width: 110px;
  height: 130px;
  bottom: 8%;
  left: 1.5%;
  animation: gemTumble2 14s ease-in-out infinite;
}

.gem-tr {
  width: 96px;
  height: 116px;
  top: 5%;
  right: 2%;
  animation: gemTumble3 12s ease-in-out infinite;
}

.gem-br {
  width: 118px;
  height: 140px;
  bottom: 7%;
  right: 1.5%;
  animation: gemTumble4 13.5s ease-in-out infinite;
}

.gem-mid-left {
  width: 58px;
  height: 70px;
  top: 52%;
  left: 20%;
  animation: gemTumble3 9s ease-in-out infinite;
  opacity: 0.85;
}

.gem-mid-right {
  width: 64px;
  height: 76px;
  top: 48%;
  right: 20%;
  animation: gemTumble1 10s ease-in-out infinite;
  opacity: 0.85;
}

@keyframes gemTumble1 {
  0%, 100% { transform: translateY(0px) rotate3d(1, 1, 0, 15deg) scale(1); }
  50% { transform: translateY(-22px) rotate3d(1, 1, 1, 40deg) scale(1.08); }
}

@keyframes gemTumble2 {
  0%, 100% { transform: translateY(0px) rotate3d(0.5, 1, 0, -20deg) scale(1); }
  50% { transform: translateY(24px) rotate3d(1, 0.5, 1, -45deg) scale(1.06); }
}

@keyframes gemTumble3 {
  0%, 100% { transform: translateY(0px) rotate3d(1, 0, 1, 20deg) scale(1); }
  50% { transform: translateY(-18px) rotate3d(0.5, 1, 0, -30deg) scale(1.08); }
}

@keyframes gemTumble4 {
  0%, 100% { transform: translateY(0px) rotate3d(0, 1, 1, -15deg) scale(1); }
  50% { transform: translateY(20px) rotate3d(1, 1, 0, 35deg) scale(1.07); }
}

/* ---------------------------------------------------------
   Main Stage 3-Column Layout
   --------------------------------------------------------- */
.prism-stage-layout {
  display: grid;
  grid-template-columns: 320px 1fr 320px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: 100%;
  max-width: 1420px;
  position: relative;
  z-index: 2;
}

.prism-stage-flank {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ---------------------------------------------------------
   3D Obsidian Glass Cards
   --------------------------------------------------------- */
.glass-portal-card {
  background: rgba(12, 16, 36, 0.82);
  border: 1.5px solid rgba(157, 78, 221, 0.5);
  border-radius: 20px;
  padding: 20px 22px;
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.8),
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    0 0 25px rgba(121, 40, 202, 0.2);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glass-portal-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(0, 240, 255, 0.7);
  box-shadow: 
    0 25px 65px rgba(0, 0, 0, 0.9),
    0 0 40px rgba(0, 240, 255, 0.4),
    inset 0 1px 3px rgba(255, 255, 255, 0.35);
}

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

.card-title-text {
  font-size: 0.82rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: #cbd5e1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.status-pill-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
}

.status-pill-green .pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: radarPing 1.8s infinite;
}

.music-icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.35);
  color: #38bdf8;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-mono);
}

.shield-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 9999px;
  background: rgba(157, 78, 221, 0.15);
  border: 1px solid rgba(157, 78, 221, 0.4);
  color: #d8b4fe;
  font-size: 0.72rem;
  font-weight: 700;
}

/* Lavalink Cluster Specs Grid */
.cluster-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 6px;
}

.cluster-spec-badge {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all 0.25s ease;
}

.cluster-spec-badge:hover {
  background: rgba(0, 240, 255, 0.08);
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-2px);
}

.cluster-spec-badge .spec-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.cluster-spec-badge .spec-val {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Avatar Grid Showcase */
.avatar-grid-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 9px;
  margin-top: 6px;
}

.avatar-item {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.2s ease;
  cursor: pointer;
}

.avatar-item:hover {
  transform: scale(1.22);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 14px var(--neon-cyan);
  z-index: 3;
}

.avatar-item.avatar-more {
  background: rgba(0, 240, 255, 0.18);
  color: #00f0ff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  border-color: rgba(0, 240, 255, 0.55);
}

/* Rainbow Audio Waveform Spectrum */
.rainbow-waveform-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.5px;
  height: 56px;
  padding: 8px 4px;
}

.rainbow-waveform-container .wave-bar {
  flex: 1;
  height: var(--h, 60%);
  background: var(--c, #00f0ff);
  border-radius: 4px;
  box-shadow: 0 0 10px var(--c, #00f0ff);
  animation: waveBounce 1.2s ease-in-out infinite alternate;
}

@keyframes waveBounce {
  0% { transform: scaleY(0.25); }
  100% { transform: scaleY(1); }
}

/* Discord Member Counter */
.counter-huge {
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #ffffff 0%, #38bdf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin: 6px 0;
}

.counter-sub-caption {
  font-size: 0.74rem;
  color: var(--text-dim);
  font-weight: 600;
}

/* Mini Music Player Deck */
.player-content-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.player-vinyl-box {
  position: relative;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.player-vinyl-disc {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, #2d3748 18%, #111827 50%, #030712 100%);
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: spin-slow 5s linear infinite;
  box-shadow: 0 0 18px rgba(157, 78, 221, 0.6);
}

.player-vinyl-gem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8rem;
  filter: drop-shadow(0 0 6px #00f0ff);
}

.player-track-info {
  flex: 1;
  overflow: hidden;
}

.player-track-info .track-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-track-info .track-artist {
  font-size: 0.7rem;
  color: #38bdf8;
  font-family: var(--font-mono);
  margin-top: 2px;
}

.track-scrubber {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  margin-top: 6px;
  overflow: hidden;
}

.scrubber-fill {
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, #00f0ff, #9d4edd);
  box-shadow: 0 0 8px #00f0ff;
}

.player-controls-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.player-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
}

.player-btn:hover {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--neon-cyan);
  transform: scale(1.1);
}

.player-volume-badge {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  color: #a855f7;
  font-weight: 700;
  background: rgba(157, 78, 221, 0.12);
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(157, 78, 221, 0.3);
}

/* ---------------------------------------------------------
   CENTER STAGE: 3D PORTAL CORE & KIRA MASCOT
   --------------------------------------------------------- */
.prism-stage-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  text-align: center;
}

.apex-portal-rings {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 480px;
  pointer-events: none;
  z-index: 0;
}

.ring-pulse-halo {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.32) 0%, rgba(157, 78, 221, 0.28) 40%, transparent 70%);
  filter: blur(45px);
  animation: portalPulse 4s ease-in-out infinite alternate;
}

.ring-laser.ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(0, 240, 255, 0.65);
  box-shadow: 0 0 35px rgba(0, 240, 255, 0.6), inset 0 0 25px rgba(0, 240, 255, 0.35);
  animation: portalSpin 24s linear infinite;
}

.ring-laser.ring-mid {
  position: absolute;
  inset: 38px;
  border-radius: 50%;
  border: 2px dashed rgba(157, 78, 221, 0.75);
  box-shadow: 0 0 25px rgba(157, 78, 221, 0.5);
  animation: portalCounterSpin 16s linear infinite;
}

.ring-laser.ring-inner {
  position: absolute;
  inset: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #00f0ff;
  border-bottom-color: #ff007a;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
  animation: portalSpin 10s linear infinite;
}

.portal-mascot-frame {
  position: relative;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  overflow: hidden;
  border: 3.5px solid #00f0ff;
  box-shadow: 
    0 0 50px rgba(0, 240, 255, 0.75),
    0 0 95px rgba(157, 78, 221, 0.55),
    inset 0 0 30px rgba(0, 240, 255, 0.3);
  z-index: 1;
  animation: float-slow 6s ease-in-out infinite;
  background: #060814;
}

.portal-mascot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portal-mascot-frame:hover .portal-mascot-img {
  transform: scale(1.08);
}

.portal-glass-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  pointer-events: none;
}

.portal-text-overlay {
  position: relative;
  z-index: 3;
  margin-top: -32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.portal-title-apex {
  font-size: 3.5rem;
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #ffffff 0%, #38bdf8 45%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 35px rgba(0, 240, 255, 0.6));
  line-height: 1;
  margin-bottom: 6px;
}

.portal-subtitle-apex {
  font-size: 0.92rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
  text-shadow: 0 0 16px rgba(0, 240, 255, 0.8);
}

.portal-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-portal {
  padding: 12px 28px;
  font-size: 0.96rem;
  border-radius: 9999px;
  box-shadow: 0 8px 25px rgba(121, 40, 202, 0.4);
}

/* ---------------------------------------------------------
   Lower Bento Stats Bar
   --------------------------------------------------------- */
.stage-bento-stats {
  margin-top: 48px;
  width: 100%;
  max-width: 1100px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 16px;
  background: rgba(11, 14, 28, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 
    0 20px 45px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 30px rgba(121, 40, 202, 0.15);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(157, 78, 221, 0.3);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 1.5rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.74rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ---------------------------------------------------------
   3. FREE PREMIUM NOTICE BANNER
   --------------------------------------------------------- */
/* ---------------------------------------------------------
   3. FREE PREMIUM NOTICE BANNER (Obsidian VIP Card)
   --------------------------------------------------------- */
.free-premium-banner {
  margin: 36px 0 75px 0;
  position: relative;
}

.premium-banner-card {
  padding: 36px 46px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(26, 18, 56, 0.92) 0%, rgba(12, 15, 36, 0.96) 50%, rgba(15, 28, 52, 0.92) 100%);
  border: 1.5px solid rgba(168, 85, 247, 0.6);
  box-shadow: 
    0 25px 65px rgba(0, 0, 0, 0.8),
    0 0 55px rgba(121, 40, 202, 0.4),
    0 0 25px rgba(0, 240, 255, 0.2),
    inset 0 1px 2px rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
}

.premium-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), rgba(0, 240, 255, 0.25), transparent);
  animation: shineSweep 5s infinite;
  pointer-events: none;
}

.premium-banner-left {
  display: flex;
  align-items: center;
  gap: 26px;
}

.premium-crown-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f59e0b 0%, #d946ef 50%, #00f0ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.3rem;
  color: #fff;
  box-shadow: 
    0 0 35px rgba(245, 158, 11, 0.6),
    0 0 25px rgba(0, 240, 255, 0.45);
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.4);
  animation: float-gentle 4s ease-in-out infinite;
}

.premium-banner-text h3 {
  font-size: 1.65rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  letter-spacing: -0.3px;
  color: #fff;
}

.free-pill {
  font-size: 0.74rem;
  padding: 5px 14px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  border-radius: 99px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-banner-text p {
  color: #cbd5e1;
  font-size: 0.98rem;
  max-width: 680px;
  line-height: 1.65;
}

/* ---------------------------------------------------------
   3D Floating Crystal Prism System (Across All Sections)
   --------------------------------------------------------- */
.section-prisms-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gem-feat-l {
  width: 96px;
  height: 118px;
  top: 12%;
  left: 2%;
  animation: gemTumble1 13s ease-in-out infinite;
  opacity: 0.8;
}

.gem-feat-r {
  width: 112px;
  height: 132px;
  top: 45%;
  right: 2%;
  animation: gemTumble2 15s ease-in-out infinite;
  opacity: 0.8;
}

.gem-invite-l {
  width: 104px;
  height: 124px;
  top: 25%;
  left: 1.5%;
  animation: gemTumble3 14s ease-in-out infinite;
  opacity: 0.8;
}

.gem-invite-r {
  width: 90px;
  height: 110px;
  bottom: 12%;
  right: 2%;
  animation: gemTumble4 12.5s ease-in-out infinite;
  opacity: 0.8;
}

.gem-partner-l {
  width: 95px;
  height: 115px;
  top: 20%;
  left: 2%;
  animation: gemTumble2 13s ease-in-out infinite;
  opacity: 0.8;
}

.gem-partner-r {
  width: 92px;
  height: 112px;
  bottom: 25%;
  right: 2%;
  animation: gemTumble1 16s ease-in-out infinite;
  opacity: 0.8;
}

.gem-support-l {
  width: 98px;
  height: 118px;
  top: 28%;
  left: 2%;
  animation: gemTumble4 14s ease-in-out infinite;
  opacity: 0.8;
}

.gem-support-r {
  width: 102px;
  height: 122px;
  top: 15%;
  right: 2%;
  animation: gemTumble3 15s ease-in-out infinite;
  opacity: 0.8;
}

/* ---------------------------------------------------------
   4. FEATURES SECTION (3D Prismatic Bento Grid 2.0)
   --------------------------------------------------------- */
.features-section {
  padding: 100px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: linear-gradient(145deg, rgba(16, 21, 52, 0.85) 0%, rgba(8, 10, 26, 0.96) 100%);
  border: 1.5px solid rgba(157, 78, 221, 0.4);
  border-radius: 24px;
  padding: 30px 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(28px) saturate(210%);
  -webkit-backdrop-filter: blur(28px) saturate(210%);
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.75),
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    0 0 25px rgba(121, 40, 202, 0.15);
}

/* Cyber Corner Accents */
.cyber-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  transition: border-color 0.3s ease, transform 0.3s ease;
  z-index: 2;
}

.cyber-corner-tl {
  top: 10px;
  left: 10px;
  border-top: 2px solid rgba(0, 240, 255, 0.5);
  border-left: 2px solid rgba(0, 240, 255, 0.5);
}

.cyber-corner-br {
  bottom: 10px;
  right: 10px;
  border-bottom: 2px solid rgba(157, 78, 221, 0.5);
  border-right: 2px solid rgba(157, 78, 221, 0.5);
}

.feature-card:hover .cyber-corner-tl {
  border-color: #00f0ff;
  transform: translate(-2px, -2px);
  filter: drop-shadow(0 0 8px #00f0ff);
}

.feature-card:hover .cyber-corner-br {
  border-color: #d946ef;
  transform: translate(2px, 2px);
  filter: drop-shadow(0 0 8px #d946ef);
}

/* Dynamic Top Laser Beam with Multi-tone Themes */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--laser-color, #00f0ff), transparent);
  box-shadow: 0 0 15px var(--laser-color, #00f0ff);
  opacity: 0.8;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.card-mod-1 { --laser-color: #c084fc; border-color: rgba(192, 132, 252, 0.4); }
.card-mod-2 { --laser-color: #00f0ff; border-color: rgba(0, 240, 255, 0.4); }
.card-mod-3 { --laser-color: #38bdf8; border-color: rgba(56, 189, 248, 0.4); }
.card-mod-4 { --laser-color: #fbbf24; border-color: rgba(251, 191, 36, 0.4); }
.card-mod-5 { --laser-color: #f43f5e; border-color: rgba(244, 63, 94, 0.4); }
.card-mod-6 { --laser-color: #a855f7; border-color: rgba(168, 85, 247, 0.4); }
.card-mod-7 { --laser-color: #06b6d4; border-color: rgba(6, 182, 212, 0.4); }
.card-mod-8 { --laser-color: #9d4edd; border-color: rgba(157, 78, 221, 0.4); }

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(0, 240, 255, 0.75);
  box-shadow: 
    0 30px 75px rgba(0, 0, 0, 0.9),
    0 0 45px rgba(0, 240, 255, 0.4),
    inset 0 1px 3px rgba(255, 255, 255, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
  height: 4px;
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.feature-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.feature-icon-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), transparent);
  border-radius: 18px 18px 0 0;
  pointer-events: none;
}

.icon-purple {
  background: linear-gradient(135deg, rgba(157, 78, 221, 0.4) 0%, rgba(121, 40, 202, 0.7) 100%);
  color: #c084fc;
  box-shadow: 0 0 25px rgba(157, 78, 221, 0.5);
}

.icon-blue {
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.4) 0%, rgba(37, 99, 235, 0.7) 100%);
  color: #60a5fa;
  box-shadow: 0 0 25px rgba(58, 134, 255, 0.5);
}

.icon-cyan {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.35) 0%, rgba(14, 165, 233, 0.65) 100%);
  color: #38bdf8;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

.icon-gold {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.4) 0%, rgba(217, 119, 6, 0.7) 100%);
  color: #fbbf24;
  box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

.icon-rose {
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.4) 0%, rgba(225, 29, 72, 0.7) 100%);
  color: #fb7185;
  box-shadow: 0 0 25px rgba(244, 63, 94, 0.5);
}

.feature-card:hover .feature-icon-box {
  transform: scale(1.15) rotate(6deg);
  box-shadow: 0 0 35px var(--neon-cyan);
  border-color: #00f0ff;
}

.feature-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-mono);
}

.feature-tag.free {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.45);
  box-shadow: 0 0 14px rgba(16, 185, 129, 0.3);
}

.feature-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--text-white);
  letter-spacing: -0.3px;
  font-weight: 800;
}

.feature-desc {
  font-size: 0.94rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Card Interactive Micro-Widgets (Live Command / Status Simulation) */
.card-micro-widget {
  background: rgba(8, 10, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px 12px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.widget-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.widget-dot.green {
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  animation: radarPing 2s infinite;
}

.widget-dot.cyan {
  background: #00f0ff;
  box-shadow: 0 0 8px #00f0ff;
  animation: radarPing 2s infinite;
}

.widget-cmd {
  color: #38bdf8;
  font-weight: 700;
}

.widget-preview {
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mini-eq-bars {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 16px;
}

.mini-eq-bars span {
  width: 3px;
  height: var(--h, 60%);
  background: #00f0ff;
  border-radius: 2px;
  box-shadow: 0 0 6px #00f0ff;
  animation: waveBounce 1s ease-in-out infinite alternate;
}

.mini-eq-bars span:nth-child(2) { animation-delay: 0.15s; background: #38bdf8; }
.mini-eq-bars span:nth-child(3) { animation-delay: 0.3s; background: #818cf8; }
.mini-eq-bars span:nth-child(4) { animation-delay: 0.1s; background: #c084fc; }
.mini-eq-bars span:nth-child(5) { animation-delay: 0.25s; background: #e879f9; }
.mini-eq-bars span:nth-child(6) { animation-delay: 0.4s; background: #00f0ff; }

.feature-perks {
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-perks li {
  font-size: 0.86rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.feature-perks li:hover {
  transform: translateX(5px);
  color: #fff;
}

.feature-perks li svg {
  color: #00f0ff;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px #00f0ff);
}

/* Feature 437+ Commands Banner */
.features-more-banner {
  padding: 32px 42px;
  background: linear-gradient(135deg, rgba(22, 28, 62, 0.85) 0%, rgba(11, 14, 32, 0.95) 100%);
  border: 1.5px solid rgba(0, 240, 255, 0.45);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.7),
    0 0 40px rgba(0, 240, 255, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(24px);
  position: relative;
  z-index: 1;
}

.more-banner-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.more-icon {
  font-size: 2.4rem;
  color: #00f0ff;
  animation: pulse-glow 2s infinite;
  filter: drop-shadow(0 0 16px rgba(0, 240, 255, 0.7));
}

.more-banner-text h4 {
  font-size: 1.45rem;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
  font-weight: 800;
}

.more-banner-text p {
  color: #94a3b8;
  font-size: 0.94rem;
}

/* ---------------------------------------------------------
   5. INVITE KIRA BOT SECTION (3D Teleport Conduit & Hologram Pedestal)
   --------------------------------------------------------- */
.invite-section {
  padding: 100px 0;
  position: relative;
}

.invite-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Step-by-Step Card with Cyber Conduit Line */
.steps-card {
  padding: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(14, 18, 46, 0.88) 0%, rgba(8, 10, 28, 0.96) 100%);
  border: 1.5px solid rgba(0, 240, 255, 0.4);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.75),
    0 0 35px rgba(0, 240, 255, 0.25),
    inset 0 1px 2px rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 28px;
  margin-bottom: 34px;
  position: relative;
}

/* Glowing Cyber Conduit Connecting Line with Active Laser Flow */
.steps-list::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 15px;
  bottom: 15px;
  width: 3px;
  background: linear-gradient(180deg, #00f0ff 0%, #9d4edd 50%, #ff007a 100%);
  box-shadow: 0 0 14px #00f0ff, 0 0 25px #9d4edd;
  z-index: 0;
  animation: laserConduitGlow 3s ease-in-out infinite alternate;
}

@keyframes laserConduitGlow {
  0% { filter: brightness(1) drop-shadow(0 0 6px #00f0ff); }
  100% { filter: brightness(1.4) drop-shadow(0 0 16px #9d4edd); }
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7928ca 0%, #00f0ff 100%);
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 22px rgba(0, 240, 255, 0.6),
    inset 0 1px 2px rgba(255, 255, 255, 0.4);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.step-item:hover .step-num {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.85);
}

.step-content h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 5px;
  letter-spacing: -0.2px;
  font-weight: 800;
}

.step-content p {
  font-size: 0.94rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Permissions Checklist */
.permissions-box {
  background: rgba(6, 8, 22, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1);
}

.permissions-title {
  font-size: 0.86rem;
  font-weight: 800;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.permissions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.perm-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #cbd5e1;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all 0.2s ease;
}

.perm-item:hover {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.45);
  transform: translateX(3px);
}

.perm-item.checked svg {
  color: #10b981;
  filter: drop-shadow(0 0 8px #10b981);
}

/* Direct Invite Showcase Card (3D Holographic Pedestal Platform) */
.invite-showcase-card {
  padding: 48px 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(26, 20, 62, 0.9) 0%, rgba(9, 12, 32, 0.98) 100%);
  border: 1.5px solid rgba(0, 240, 255, 0.55);
  box-shadow: 
    0 30px 75px rgba(0, 0, 0, 0.85),
    0 0 60px rgba(0, 240, 255, 0.35),
    0 0 30px rgba(157, 78, 221, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.35);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
}

.mascot-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  margin-bottom: 28px;
}

/* 3D Holographic Projector Pedestal */
.holo-projector-pedestal {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%) perspective(400px) rotateX(68deg);
  width: 260px;
  height: 260px;
  pointer-events: none;
  z-index: 0;
}

.holo-ring-outer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(0, 240, 255, 0.7);
  box-shadow: 0 0 45px rgba(0, 240, 255, 0.8), inset 0 0 35px rgba(0, 240, 255, 0.4);
  animation: portalSpin 18s linear infinite;
}

.holo-ring-mid {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 2px dashed rgba(157, 78, 221, 0.8);
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
  animation: portalCounterSpin 12s linear infinite;
}

.holo-ring-inner {
  position: absolute;
  inset: 54px;
  border-radius: 50%;
  border: 2px solid #00f0ff;
  box-shadow: 0 0 20px #00f0ff;
  animation: portalSpin 8s linear infinite;
}

.holo-emitter-glow {
  position: absolute;
  inset: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.8) 0%, rgba(157, 78, 221, 0.5) 50%, transparent 80%);
  filter: blur(12px);
  animation: pulse-glow 2.5s infinite alternate;
}

.mascot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3.5px solid #00f0ff;
  box-shadow: 
    0 0 45px rgba(0, 240, 255, 0.75),
    0 0 85px rgba(157, 78, 221, 0.5);
  animation: float-gentle 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.mascot-bubble {
  position: absolute;
  top: 4px;
  right: -24px;
  background: rgba(8, 10, 26, 0.96);
  border: 1.5px solid var(--neon-cyan);
  padding: 8px 18px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--neon-cyan);
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 240, 255, 0.6);
  z-index: 2;
  backdrop-filter: blur(14px);
}

.invite-showcase-title {
  font-size: 2rem;
  margin-bottom: 8px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.3px;
}

.invite-showcase-desc {
  color: #94a3b8;
  font-size: 1rem;
  max-width: 420px;
  margin-bottom: 22px;
  line-height: 1.6;
}

.telemetry-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-mono);
  margin-bottom: 24px;
}

/* ---------------------------------------------------------
   7. TEAM & DEVELOPERS SECTION
   --------------------------------------------------------- */
.team-section {
  padding: 80px 0;
  position: relative;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

@media (min-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.team-card {
  padding: 32px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: var(--trans-smooth);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(157, 78, 221, 0.5);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(121, 40, 202, 0.25);
}

.team-card.featured {
  border-color: rgba(157, 78, 221, 0.5);
  background: linear-gradient(145deg, rgba(26, 20, 52, 0.7) 0%, rgba(14, 16, 31, 0.9) 100%);
}

.team-featured-pill {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #7928ca, #3a86ff);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-avatar-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  margin-bottom: 20px;
}

.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(157, 78, 221, 0.5);
  box-shadow: 0 0 25px rgba(157, 78, 221, 0.4);
}

.team-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(157, 78, 221, 0.15);
  border: 1px solid rgba(157, 78, 221, 0.3);
  color: #c084fc;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.team-name {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 22px;
}

.team-tag {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #cbd5e1;
  font-family: var(--font-mono);
}

.team-card .btn {
  margin-top: auto;
}

/* ---------------------------------------------------------
   8. PARTNERS SECTION (3D Obsidian Glass Grid)
   --------------------------------------------------------- */
.partners-section {
  padding: 95px 0;
  position: relative;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.partner-card {
  padding: 26px;
  background: linear-gradient(145deg, rgba(16, 21, 48, 0.85) 0%, rgba(8, 10, 26, 0.95) 100%);
  border: 1.5px solid rgba(0, 240, 255, 0.35);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 
    0 16px 40px rgba(0, 0, 0, 0.65),
    inset 0 1px 2px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(0, 240, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.partner-card:hover {
  border-color: rgba(0, 240, 255, 0.8);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.85),
    0 0 40px rgba(0, 240, 255, 0.4),
    inset 0 1px 3px rgba(255, 255, 255, 0.35);
}

.partner-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1e1b4b, #0f172a);
  border: 1.5px solid rgba(0, 240, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
  overflow: hidden;
}

.partner-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-info h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 800;
}

.partner-type {
  font-size: 0.8rem;
  color: #38bdf8;
  font-family: var(--font-mono);
}

.partner-cta-card {
  background: linear-gradient(135deg, rgba(28, 20, 58, 0.85) 0%, rgba(12, 16, 38, 0.95) 100%);
  border: 1.5px dashed rgba(157, 78, 221, 0.6);
  border-radius: var(--radius-xl);
  padding: 34px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(157, 78, 221, 0.25);
  backdrop-filter: blur(24px);
  position: relative;
  z-index: 1;
}

.partner-cta-text h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: #fff;
  font-weight: 800;
}

.partner-cta-text p {
  color: #94a3b8;
  font-size: 0.96rem;
}

/* ---------------------------------------------------------
   10. SUPPORT & FAQ SECTION (3D Glass Prism Help Hub)
   --------------------------------------------------------- */
.support-section {
  padding: 95px 0;
  position: relative;
}

/* Support Pillar Cards (3D Glass Prism Podiums) */
.support-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 54px;
  position: relative;
  z-index: 1;
}

.support-feature-card {
  padding: 38px 28px;
  background: linear-gradient(145deg, rgba(16, 21, 48, 0.85) 0%, rgba(8, 10, 26, 0.96) 100%);
  border: 1.5px solid rgba(157, 78, 221, 0.4);
  border-radius: var(--radius-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  box-shadow: 
    0 18px 45px rgba(0, 0, 0, 0.7),
    inset 0 1px 2px rgba(255, 255, 255, 0.25),
    0 0 25px rgba(121, 40, 202, 0.15);
  position: relative;
  overflow: hidden;
}

.support-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00f0ff, transparent);
  box-shadow: 0 0 15px #00f0ff;
  opacity: 0.7;
}

.support-feature-card:hover {
  border-color: rgba(0, 240, 255, 0.75);
  transform: translateY(-7px) scale(1.02);
  box-shadow: 
    0 28px 65px rgba(0, 0, 0, 0.85),
    0 0 45px rgba(0, 240, 255, 0.4),
    inset 0 1px 3px rgba(255, 255, 255, 0.4);
}

.support-icon {
  width: 68px;
  height: 68px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.25) 0%, rgba(157, 78, 221, 0.45) 100%);
  border: 1.5px solid rgba(0, 240, 255, 0.5);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.45);
  animation: float-gentle 4.5s ease-in-out infinite;
}

.support-metric-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  color: #38bdf8;
  font-size: 0.76rem;
  font-family: var(--font-mono);
  font-weight: 700;
}

/* Support Channels Box (Mission Control Terminal) */
.support-channels-card {
  padding: 44px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(22, 26, 60, 0.9) 0%, rgba(9, 12, 30, 0.98) 100%);
  border: 1.5px solid rgba(157, 78, 221, 0.5);
  box-shadow: 
    0 25px 65px rgba(0, 0, 0, 0.8),
    0 0 45px rgba(121, 40, 202, 0.35),
    inset 0 1px 2px rgba(255, 255, 255, 0.25);
  margin-bottom: 70px;
  backdrop-filter: blur(28px) saturate(200%);
  position: relative;
  z-index: 1;
}

.console-status-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(6, 8, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0 auto 24px auto;
  width: fit-content;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  color: #94a3b8;
  flex-wrap: wrap;
}

.console-status-strip .dot.green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
  display: inline-block;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.channel-card {
  padding: 26px;
  background: rgba(12, 16, 38, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.channel-card:hover {
  border-color: rgba(0, 240, 255, 0.75);
  background: rgba(18, 24, 56, 0.96);
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 240, 255, 0.3);
}

.channel-card h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-weight: 800;
}

.channel-card h4 span {
  color: #38bdf8;
  transition: transform 0.25s ease;
}

.channel-card:hover h4 span {
  transform: translateX(5px);
}

.channel-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* FAQ Accordion with Obsidian Crystal Glow */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: linear-gradient(145deg, rgba(14, 18, 44, 0.82) 0%, rgba(8, 10, 26, 0.95) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-left: 3.5px solid rgba(157, 78, 221, 0.5);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(24px) saturate(180%);
}

.faq-item:hover {
  border-color: rgba(157, 78, 221, 0.7);
  border-left-color: #00f0ff;
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65), 0 0 25px rgba(157, 78, 221, 0.3);
}

.faq-item.active {
  border-color: rgba(0, 240, 255, 0.75);
  border-left-color: #00f0ff;
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.3);
  background: linear-gradient(145deg, rgba(20, 26, 58, 0.94) 0%, rgba(9, 12, 32, 0.98) 100%);
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform var(--trans-smooth);
  color: #c084fc;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #38bdf8;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  padding: 0 28px;
  color: #cbd5e1;
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 24px;
}

/* ---------------------------------------------------------
   11. FOOTER (Cyber Divider Beam & Modern Glass)
   --------------------------------------------------------- */
.footer {
  background: #030408;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 85px 0 40px 0;
  position: relative;
  z-index: 2;
}

/* Cyber Neon Laser Beam Divider across Top of Footer */
.footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 5%;
  right: 5%;
  height: 2.5px;
  background: linear-gradient(90deg, transparent, #00f0ff 25%, #9d4edd 50%, #ff007a 75%, transparent);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.8), 0 0 35px rgba(157, 78, 221, 0.5);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 22px;
  max-width: 320px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn:hover {
  background: rgba(157, 78, 221, 0.25);
  border-color: rgba(157, 78, 221, 0.6);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(121, 40, 202, 0.4);
}

.footer-col h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #c084fc;
  padding-left: 6px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text-dim);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 14px;
}

.netlify-badge,
#netlify-badge,
[data-netlify-badge],
iframe#netlify-drawer,
#netlify-drawer,
[data-netlify-drawer],
.netlify-feedback-drawer {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  background: rgba(10, 12, 24, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--trans-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--neon-purple);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.3);
  outline: none;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
}

.star-rating-select {
  display: flex;
  gap: 8px;
  font-size: 1.6rem;
  cursor: pointer;
  color: #4b5563;
}

.star-rating-select span.selected,
.star-rating-select span:hover,
.star-rating-select span:hover ~ span {
  color: #fbbf24;
}

/* Commands List Grid in Modal */
.commands-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 6px;
}

.commands-tabs::-webkit-scrollbar {
  display: none;
}

.cmd-tab-btn {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

.cmd-tab-btn.active {
  background: linear-gradient(135deg, #7928ca, #3a86ff);
  color: #fff;
}

.commands-table {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cmd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(10, 12, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
}

.cmd-code {
  font-family: var(--font-mono);
  color: #38bdf8;
  font-weight: 600;
  font-size: 0.9rem;
}

.cmd-copy-btn {
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
}

.cmd-copy-btn:hover {
  background: rgba(157, 78, 221, 0.3);
  color: #fff;
}

/* =========================================================
   5. VERIFIED COMMUNITIES INFINITE MARQUEE TICKER
   ========================================================= */
.marquee-ticker-section {
  position: relative;
  width: 100%;
  padding: 24px 0;
  background: rgba(6, 9, 24, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  margin-top: 40px;
}

.marquee-ticker-container {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 22px;
  white-space: nowrap;
  animation: marqueeScroll 35s linear infinite;
  will-change: transform;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 9999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(157, 78, 221, 0.3);
  color: #e2e8f0;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.marquee-pill:hover {
  background: rgba(30, 41, 59, 0.95);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.35);
  transform: translateY(-2px);
}

.marquee-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, #7928ca, #00f0ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.marquee-verified-badge {
  color: #38bdf8;
  font-size: 0.8rem;
}

.marquee-dot-sep {
  color: #64748b;
  font-size: 0.9rem;
}

/* =========================================================
   6. INTERACTIVE DISCORD COMMAND SANDBOX (WEB TERMINAL)
   ========================================================= */
.discord-sandbox-section {
  padding: 80px 0 95px;
  position: relative;
  z-index: 2;
  scroll-margin-top: 110px;
}

.sandbox-container {
  max-width: 1000px;
  margin: 0 auto;
}

.sandbox-terminal-window {
  background: #1e1f22;
  border: 1.5px solid rgba(88, 101, 242, 0.55);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 30px 90px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(88, 101, 242, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sandbox-terminal-window:hover {
  border-color: rgba(0, 240, 255, 0.7);
  box-shadow: 
    0 35px 105px rgba(0, 0, 0, 0.95),
    0 0 75px rgba(0, 240, 255, 0.35);
}

/* Window Header */
.sandbox-topbar {
  background: #141517;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sandbox-window-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sandbox-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.sandbox-dot.red { background: #ff5f56; }
.sandbox-dot.yellow { background: #ffbd2e; }
.sandbox-dot.green { background: #27c93f; }

.sandbox-title-channel {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #dbdee1;
  font-family: var(--font-heading);
}

.channel-hash {
  color: #80848e;
  font-size: 1.1rem;
}

.sandbox-bot-telemetry-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(35, 165, 90, 0.18);
  border: 1px solid rgba(35, 165, 90, 0.4);
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 0.74rem;
  font-weight: 700;
  color: #23a55a;
  font-family: var(--font-mono);
}

/* Command Pills Toolbar */
.sandbox-command-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: #2b2d31;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}
.sandbox-command-pills::-webkit-scrollbar { display: none; }

.sandbox-cmd-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #949ba4;
  font-size: 0.84rem;
  font-weight: 600;
  font-family: var(--font-mono);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.sandbox-cmd-chip:hover {
  background: rgba(88, 101, 242, 0.15);
  border-color: rgba(88, 101, 242, 0.5);
  color: #dbdee1;
  transform: translateY(-1px);
}

.sandbox-cmd-chip.active {
  background: #5865f2;
  border-color: #5865f2;
  color: #ffffff;
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.6);
}

/* Chat Stream */
.sandbox-chat-viewport {
  padding: 24px 20px;
  min-height: 280px;
  background: #313338;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat-message-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  animation: fadeInMsg 0.3s ease-out;
}

@keyframes fadeInMsg {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.chat-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.chat-avatar.user-av {
  background: linear-gradient(135deg, #f59e0b, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chat-body {
  flex: 1;
}

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

.chat-author {
  font-weight: 700;
  font-size: 0.95rem;
  color: #f2f3f5;
}

.chat-badge-bot {
  background: #5865f2;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.chat-timestamp {
  font-size: 0.74rem;
  color: #949ba4;
}

.chat-command-text {
  font-family: var(--font-mono);
  background: #2b2d31;
  color: #00f0ff;
  padding: 3px 8px;
  border-radius: 5px;
  font-size: 0.88rem;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Discord Rich Embed */
.discord-rich-embed {
  background: #2b2d31;
  border-radius: 8px;
  border-left: 4px solid var(--embed-accent, #00f0ff);
  padding: 16px 18px;
  max-width: 620px;
  margin-top: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.embed-author-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #dbdee1;
  font-weight: 600;
  margin-bottom: 8px;
}

.embed-author-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.embed-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.embed-desc {
  font-size: 0.9rem;
  color: #dbdee1;
  line-height: 1.5;
  white-space: pre-line;
  margin-bottom: 12px;
}

.embed-desc pre, .embed-desc code {
  font-family: var(--font-mono);
  background: #1e1f22;
  padding: 2px 6px;
  border-radius: 4px;
  color: #38bdf8;
  font-size: 0.82rem;
}

.embed-desc pre {
  padding: 10px 12px;
  margin: 8px 0;
  overflow-x: auto;
}

.embed-fields-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.embed-field-item {
  display: flex;
  flex-direction: column;
}

.embed-field-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #949ba4;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.embed-field-value {
  font-size: 0.86rem;
  color: #f2f3f5;
  font-weight: 600;
}

/* Discord Action Buttons Row */
.discord-buttons-row {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.discord-action-btn {
  background: #4e5058;
  border: none;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.discord-action-btn:hover {
  background: #6d6f78;
  transform: translateY(-1px);
}

.discord-action-btn:active {
  transform: translateY(0);
}

/* Typing indicator */
.chat-typing-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  background: #2b2d31;
  color: #949ba4;
  font-size: 0.78rem;
  font-style: italic;
  min-height: 28px;
}

.typing-dots-anim {
  display: inline-flex;
  gap: 3px;
}
.typing-dots-anim span {
  width: 4px;
  height: 4px;
  background: #949ba4;
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}
.typing-dots-anim span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots-anim span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1.2); opacity: 1; }
}

/* Bottom Input Bar */
.sandbox-input-dock {
  background: #383a40;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.input-slash-prefix {
  background: #4e5058;
  color: #dbdee1;
  font-family: var(--font-mono);
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.sandbox-cli-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.92rem;
  font-family: var(--font-body);
  outline: none;
}

.sandbox-cli-input::placeholder {
  color: #80848e;
}

.sandbox-exec-btn {
  background: #5865f2;
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sandbox-exec-btn:hover {
  background: #4752c4;
  box-shadow: 0 0 14px rgba(88, 101, 242, 0.6);
}

/* =========================================================
   7. MAGNETIC PHYSICS & CURSOR SPOTLIGHT
   ========================================================= */
#cursorSpotlight {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.12) 0%, rgba(121, 40, 202, 0.06) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 9999;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  #cursorSpotlight {
    display: block;
  }
}

