body {
    background-color: #0a0a1a;
    color: white;
    overflow-x: hidden;
}

/* Glassmorphism Effect */
.glass-panel {
    background: rgba(20, 20, 43, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Text Glow Effect */
.text-glow {
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a1a;
}
::-webkit-scrollbar-thumb {
    background: #6366f1;
    border-radius: 4px;
}
@layer components {
  .scrollbar-hidden::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge, Opera */
  }
  .scrollbar-hidden {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
  }
}