@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&display=swap');

* {
  font-family: 'Poppins', sans-serif;
}

body {
  overflow-x: hidden;
}

.glass-card {
  background: rgba(30, 27, 75, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 1rem;
  box-shadow: 0 8px 32px 0 rgba(168, 85, 247, 0.1);
}

.glass-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transition: border-color 0.3s ease;
}

.floating-notes {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  pointer-events: none;
}

.note {
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
  opacity: 0.6;
}

.note:nth-child(1) { animation-delay: 0s; }
.note:nth-child(2) { animation-delay: 0.5s; }
.note:nth-child(3) { animation-delay: 1s; }
.note:nth-child(4) { animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
  overflow: hidden;
}

.confetti {
  position: absolute;
  top: -50px;
  font-size: 2rem;
  animation: confetti-fall 3s linear forwards;
  opacity: 0;
}

@keyframes confetti-fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(30, 27, 75, 0.4);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(168, 85, 247, 0.5);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(168, 85, 247, 0.8);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .floating-notes {
    top: -30px;
  }
  
  .note {
    font-size: 1.5rem;
  }
}