@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;700;800&display=swap');

body {
  background-color: #030712;
  color: #f8fafc;
  font-family: 'Plus Jakarta Sans', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

#mobile-menu {
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.mobile-menu-open {
    transform: translateX(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

/* --- Glow Effects --- */
.glow-sphere {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.25;
  pointer-events: none;
  animation: floatAnim 25s infinite alternate ease-in-out;
}

@keyframes floatAnim {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15%, 10%) scale(1.1); }
  100% { transform: translate(-10%, 20%) scale(0.9); }
}

/* --- Glassmorphism --- */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* --- Navbar Indicator --- */
.nav-link.active {
  color: #a78bfa !important;
  opacity: 1 !important;
  background: rgba(139, 92, 246, 0.08);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 20%;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #8b5cf6, #ec4899, transparent);
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.8);
  animation: navIndReveal 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes navIndReveal {
  from { width: 0; left: 50%; opacity: 0; }
  to { width: 60%; left: 20%; opacity: 1; }
}

/* --- Buttons --- */
.btn-pixel {
  position: relative;
  background: rgba(139, 92, 246, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-pixel:hover {
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.8);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
  transform: translateY(-3px);
}

.btn-pixel-pink {
  background: rgba(236, 72, 153, 0.15);
  border-color: rgba(236, 72, 153, 0.4);
}

.btn-pixel-pink:hover {
  background: rgba(236, 72, 153, 0.3);
  border-color: rgba(236, 72, 153, 0.8);
  box-shadow: 0 0 30px rgba(236, 72, 153, 0.5);
}

/* --- Cards --- */
.card-pixel {
  transition: all 0.5s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.card-pixel:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.4);
  transform: scale(1.02);
}

.section-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #8b5cf6;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

.reveal-element {
    opacity: 0;
    transform: translateY(2rem);
    transition: all 1s ease-out;
}
.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}
.toast-enter { animation: slideInRight 0.4s forwards; }