/* NerdVault - Main Styles */
/* Base reset and layout */

*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  /* Dark theme defaults - overridden by theme-*.css */
  --bg-primary: #0a0a0f;
  --bg-secondary: #1e1e2e;
  --text-primary: #f5f5f5;
  --text-secondary: #a1a1aa;
  --accent-red: #ff3b5c;
  --accent-purple: #7c3aed;
  --accent-cyan: #06b6d4;
  --accent-gold: #fbbf24;
  --border-color: #27272a;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100vh;
  min-height: 100dvh;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, select, textarea {
  font-family: inherit;
}

/* App container */
#app {
  min-height: 100vh;
  min-height: 100dvh;
}

/* Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
