body {
  font-family: "Inter", sans-serif;
  background-color: #000000;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

.glass-panel {
  background: rgba(12, 12, 12, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.glass-input {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  outline: none;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.4);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.3s ease-out forwards;
}

/* Modern Aura Logo */
.aura-logo {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    0 8px 25px rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.aura-logo::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border: 2px solid #000;
  border-radius: 50%;
  opacity: 0.9;
}

.aura-logo-bars {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 2px;
  height: 18px;
}

.aura-logo-bars span {
  width: 2.5px;
  border-radius: 999px;
  background: #000;
}

.aura-logo-bars span:nth-child(1) {
  height: 6px;
}

.aura-logo-bars span:nth-child(2) {
  height: 11px;
}

.aura-logo-bars span:nth-child(3) {
  height: 17px;
}

.aura-logo-bars span:nth-child(4) {
  height: 11px;
}

.aura-logo-bars span:nth-child(5) {
  height: 6px;
}

.modern-logo-small {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.modern-logo-small::before {
  width: 20px;
  height: 20px;
}

.modern-logo-small .aura-logo-bars {
  transform: scale(0.82);
}

.loading-ring {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
