/* Custom Styles */

/* Base Styles */
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #0a1128;
  color: #ffffff;
  overflow-x: hidden;
}

.font-orbitron {
  font-family: 'Orbitron', sans-serif;
}

.font-jakarta {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Colors */
.text-white-100 {
  color: #ffffff;
}

.text-black-25 {
  color: rgba(255, 255, 255, 0.25);
}

.text-black-50 {
  color: rgba(255, 255, 255, 0.5);
}

.bg-black-100 {
  background-color: #0a1128;
}

.bg-black-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.text-blue-400 {
  color: #489AD6;
}

.text-blue-300 {
  color: #4889D6;
}

.bg-blue-700 {
  background-color: #4889D6;
}

.bg-gray-800 {
  background-color: rgba(30, 30, 30, 0.8);
}

.bg-gray-700 {
  background-color: rgba(50, 50, 50, 0.8);
}

.text-gray-300 {
  color: rgba(200, 200, 200, 0.8);
}

/* Gradients */
.text-gradient {
  background: linear-gradient(90deg, #4889D6 0%, #489AD6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.border-gradient {
  position: relative;
  border-radius: 0.5rem;
}

.border-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  padding: 1px;
  background: linear-gradient(90deg, #4889D6 0%, #489AD6 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Buttons */
.btn-custom {
  position: relative;
  background: transparent;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  transform: translateY(-2px);
}

/* Background */
.bg-full {
  background-image: url('../assets/images/bg-full.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Navigation */
.sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 50;
  transition: right 0.3s ease;
}

.sidebar.active {
  right: 0;
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 49;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Roadmap */
.roadmap-timeline {
  position: relative;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: rgba(72, 137, 214, 0.4);
}

/* Responsive */
@media (max-width: 1023px) {
  .lg\:hidden {
    display: block;
  }
  
  .lg\:flex {
    display: none;
  }
}

@media (min-width: 1024px) {
  .lg\:hidden {
    display: none;
  }
  
  .lg\:flex {
    display: flex;
  }
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Utilities */
.transition {
  transition: all 0.3s ease;
}

.duration-300 {
  transition-duration: 300ms;
}

.opacity-50 {
  opacity: 0.5;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

/* Starfield Background */
#starfield {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}