html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-family: "DM Sans";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
input,
textarea,
select {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
:root {
  --brand: #1a1a2e;
  --accent: #D4873A;
  --accent-pale: #FDF6EE;
  --text: #1a1a2e;
  --text-2: #5c5c78;
  --text-3: #a0a0b8;
  --border: #e6e5f0;
  --bg: #f7f6f2;
  --white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-shadow: 0 8px 32px rgba(26, 26, 46, 0.08);
  --input-bg: rgba(255, 255, 255, 0.6);
  --r-sm: 7px;
  --r-md: 11px;
  --r-lg: 18px;
}
[data-theme="dark"] {
  --brand: #c8a96e;
  --accent: #D4873A;
  --accent-pale: #1F0D04;
  --text: #eeedf5;
  --text-2: #9898b8;
  --text-3: #505068;
  --border: #2a2a42;
  --bg: #0f0f1a;
  --white: #171726;
  --glass-bg: rgba(23, 23, 38, 0.6);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --input-bg: rgba(23, 23, 38, 0.7);
}
html.theme-switching *,
html.theme-switching *::before,
html.theme-switching *::after {
  transition: background-color 0.28s ease, border-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease, fill 0.28s ease, stroke 0.28s ease !important;
}
body {
  font-family: "DM Sans";
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
