:root {
  color-scheme: dark;
  --surface: #121414;
  --text: #e2e2e2;
  --text-muted: #a0a0a0;
  --primary: #eac169;
  --border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--surface);
  color: var(--text);
}

.admin-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-page > main {
  flex: 1;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.glass-card,
.glass-panel {
  background: rgba(10, 10, 10, 0.62);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

input,
textarea,
select {
  color: var(--text);
}

select {
  background-color: rgba(10, 10, 10, 0.88);
  color-scheme: dark;
}

select option {
  background-color: #0a0a0a;
  color: var(--text);
}

select option:checked {
  background-color: var(--primary);
  color: #0a0a0a;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

textarea {
  resize: vertical;
}

.status-message {
  color: var(--text);
  font-size: 0.95rem;
}

.status-error {
  color: #ffb4ab;
}

nav a {
  text-decoration: none !important;
}

nav a img {
  text-decoration: none !important;
}

nav a.active {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
}
