* {
  font-family: 'Be Vietnam Pro', 'Inter', sans-serif;
}

body {
  background: #0a0f1e;
  color: #f1f5f9;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #111827;
}

::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #4b5563;
}

.glass {
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}

.glass:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: scale(1.01);
}

.glass-static {
  background: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glow-purple {
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.glow-cyan {
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.glow-pink {
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.15);
}

.glow-amber {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.15);
}

.glow-green {
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.15);
}

.gradient-text {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-bg {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.tab-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}

.tab-content.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.logo-img {
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.08));
  border-radius: 10px;
}

.progress-bar {
  transition: width 1s ease-in-out;
}

.tab-btn {
  color: #94a3b8;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.active-tab {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
  color: #ffffff !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
}

@keyframes pulse-border {
  0%,
  100% {
    border-color: rgba(6, 182, 212, 0.3);
  }
  50% {
    border-color: rgba(6, 182, 212, 0.7);
  }
}

.animate-card {
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.pulse-dot {
  animation: pulse-green 2s infinite;
}

.pulse-border {
  animation: pulse-border 2s infinite;
}

@media (max-width: 768px) {
  .tab-nav {
    font-size: 0.72rem;
    gap: 2px;
  }

  .tab-nav button {
    padding: 6px 8px;
  }

  .logo-img {
    height: 44px !important;
  }
}