@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes grow {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-fade {
  animation: fade 0.6s ease-in-out;
}

.animate-grow {
  animation: grow 0.8s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f5f5f0;
}

::-webkit-scrollbar-thumb {
  background: #1a1f3a;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0f1325;
}

/* Premium color palette */
:root {
  --color-white: #ffffff;
  --color-champagne: #f7e7ce;
  --color-black: #000000;
  --color-gold: #d4af37;
  --color-dark-blue: #1a1f3a;
  --color-dark-blue-light: #2a3450;
}
