:root {
  --accent: #00E5A0;
  --accent-rgb: 0, 229, 160;
  --bg-deep: #030304;
  --bg-surface: #0A0B0D;
  --bg-card: #111215;
  --bg-elevated: #1A1C1F;
  --border-subtle: #26292E;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg-deep);
  color: #FAFAF9;
  background-image:
    radial-gradient(ellipse 80% 40% at 50% -10%, rgba(0, 229, 160, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 90%, rgba(0, 229, 160, 0.04) 0%, transparent 60%);
  background-attachment: fixed;
}

.holding {
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 64px 64px;
  background-position: center center;
}

.navbar {
  background: transparent;
}

/* Buttons */
.btn-accent {
  background: var(--accent);
  color: #0A0B0D;
  border: none;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-accent:hover {
  background: #00CC8F;
  color: #0A0B0D;
  transform: translateY(-1px);
  box-shadow: 0 0 30px -5px rgba(0, 229, 160, 0.4);
}

.btn-accent:disabled {
  background: rgba(0, 229, 160, 0.5);
  opacity: 1;
  transform: none;
  box-shadow: none;
}

/* Badge */
.badge-accent {
  background: rgba(0, 229, 160, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 229, 160, 0.2);
}

.text-accent {
  color: var(--accent) !important;
}

/* Typography */
.display-3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.fs-7 {
  font-size: 0.8125rem;
}

.tracking-wide {
  letter-spacing: 0.08em;
}

.text-balance {
  text-wrap: balance;
}

/* Input override */
input:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px rgba(0, 229, 160, 0.2) !important;
  outline: none;
}

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

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--border-subtle);
  border-radius: 3px;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
