/* Loading State */
.loading-state {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: var(--bg-color);
}

.loader {
  text-align: center;
}

.loader-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-medium);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-loose);
  color: var(--text-tertiary);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #333333;
  transition: var(--transition);
}

::-webkit-scrollbar-thumb:hover {
  background: #555555;
}

/* Responsive */

/* Mobile Menu Toggle — hamburger holds About/Random/Quiz; search + filter stay in the bar */
.mobile-menu-btn {
  display: none;
}
.mobile-menu-panel {
  display: none;
}

