/* ── Red 3D Ball Digital Experiences Stylesheet ── */

:root {
  --bg-color: #080104;
  --primary-accent: #ff1053;
  --secondary-accent: #e6004c;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.75);
  --glass-bg: rgba(20, 5, 10, 0.35);
  --glass-border: rgba(255, 255, 255, 0.15);

  --accent-glow: 0 0 25px rgba(255, 16, 83, 0.4);
  --vignette: radial-gradient(
    ellipse 68% 68% at 50% 50%,
    transparent 22%,
    rgba(8, 1, 4, 0.4) 50%,
    rgba(8, 1, 4, 0.8) 75%,
    rgba(8, 1, 4, 0.98) 100%
  );
}

/* ── Global Resets ── */
* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Video Background & Vignette ── */
.radial-vignette {
  background: var(--vignette);
  pointer-events: none;
}

.top-shadow {
  background: linear-gradient(180deg, rgba(8, 1, 4, 0.92) 0%, rgba(8, 1, 4, 0.6) 50%, transparent 100%);
  pointer-events: none;
}

.bottom-shadow {
  background: linear-gradient(0deg, rgba(8, 1, 4, 0.96) 0%, rgba(8, 1, 4, 0.6) 50%, transparent 100%);
  pointer-events: none;
}

/* ── Navigation Details ── */
.nav-item.active .active-bar {
  display: block;
}

/* ── Glass Pill Button Glow ── */
.btn-glass {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-glass:hover {
  background: rgba(255, 16, 83, 0.12);
  border-color: var(--primary-accent);
  box-shadow: 0 0 30px rgba(255, 16, 83, 0.35);
  transform: translateY(-1px);
}

/* ── Glowing Card Borders ── */
.feature-card {
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(255, 16, 83, 0.4);
}

/* ── Subtle Pulsing Glow ── */
@keyframes neonPulse {
  0%, 100% {
    opacity: 0.8;
    filter: drop-shadow(0 0 8px #ff1053);
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 16px #ff1053);
  }
}

.neon-pulse {
  animation: neonPulse 3s infinite ease-in-out;
}
