:root {
  --primary-color: #FFCC00;
  --bg-color: #0a0a0a;
  --bg-secondary: #121212;
  --bg-card: #1c1c1c; /* or #1e1e1e */
  --text-color: #e0e0e0;
  --text-muted: #888;
  --border-color: #2a2a2a;
}

@font-face {
  font-family: 'Black Future';
  src: url('/public/css/BlackFuture.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

[x-cloak] {
  display: none !important;
}

/* Transitions */
.transition { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.duration-150 { transition-duration: 150ms; }
.duration-100 { transition-duration: 100ms; }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.transform { transform: translateX(0); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }

/* Typography */
.logo {
  font-family: 'Black Future', sans-serif;
  color: var(--primary-color);
  font-size: 3rem;
  text-transform: uppercase;
  margin: 0 0 8px;
  text-align: center;
}

.baseline {
  color: var(--primary-color);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  opacity: 0.8;
  text-align: center;
  font-family: 'Roboto', sans-serif; /* Unifying font */
}

/* Form Elements (Shared) */
input, button, .form-input {
  border-radius: 6px; /* Common radius */
}

button {
  cursor: pointer;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}
