body {
  background-color: #f8f7f5;
  color: #2d2926;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(124, 154, 138, 0.15);
}

.gold-text-gradient {
  background: linear-gradient(to right, #4f7363, #7c9a8a, #4f7363);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f2f0ed;
}
::-webkit-scrollbar-thumb {
  background: #c5bfb8;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #7c9a8a;
}
