html {
  font-size: 110%; /* Increases all UI font sizes proportionally while preserving relative hierarchy */
}

:root {
  --bg-dark: #0f172b;
  --text-main: #ffffff;
  --primary: #cd5b57;
  --primary-hover: #b84a46;
  --secondary: #a5c6ea;
  --secondary-hover: #8cb5e3;
  --card-bg: rgba(30, 41, 59, 0.7);
  --border-color: rgba(255, 255, 255, 0.1);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  min-height: 100vh;
}

/* Titles and Headers */
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Oswald', sans-serif !important;
  letter-spacing: 0.02em;
}

/* Tags, Badges and Pills */
.badge, .tag, .pill, [class*="rounded-full"], .font-mono {
  font-family: 'Roboto Mono', monospace;
}

/* Neutral Custom Scrollbars (No Red Styling) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #334155;
  border-radius: 4px;
}

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

/* Glassmorphism helpers */
.glass-panel {
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: rgba(15, 23, 43, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(165, 198, 234, 0.15);
  transition: all 0.25s ease-in-out;
}

.glass-card:hover {
  border-color: rgba(205, 91, 87, 0.4);
  transform: translateY(-2px);
}
