body {
  background-color: #09090b;
  color: #e4e4e7;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
}

#root {
  min-height: 100vh;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.glass-panel:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.hero-gradient {
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.15) 0%, rgba(9, 9, 11, 0) 50%);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #09090b;
}

::-webkit-scrollbar-thumb {
  background: #27272a;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3f3f46;
}

.voice-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 20px;
}

.voice-bar {
  width: 4px;
  background: #10b981;
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}

@keyframes wave {
  0%,
  100% {
    height: 20%;
    opacity: 0.5;
  }

  50% {
    height: 100%;
    opacity: 1;
  }
}

.voice-bar:nth-child(1) {
  animation-delay: 0s;
}

.voice-bar:nth-child(2) {
  animation-delay: 0.1s;
}

.voice-bar:nth-child(3) {
  animation-delay: 0.2s;
}

.voice-bar:nth-child(4) {
  animation-delay: 0.3s;
}

.voice-bar:nth-child(5) {
  animation-delay: 0.4s;
}

.admin-bar header.sticky {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar header.sticky {
    top: 46px;
  }
}
