

:root {
  --bg: #0f0f0f;
  --surface: #1a1a1a;
  --surface-hover: #242424;
  --input-bg: #262626;
  --border: #2a2a2a;
  --border-light: #333333;
  --text: #ffffff;
  --text-secondary: #a0a0a0;
  --accent: #c0392b;
  --accent-hover: #a02828;
  --accent-text: #ffffff;
  --low: #6f9b76;
  --medium: #d4a76a;
  --high: #c97a72;
  --gold: #d4a76a;
  --gold-hover: #c49a5e;
  --radius: 16px;
  --radius-lg: 16px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  --muted: var(--text-secondary);
  --surface-2: var(--input-bg);
}

[data-theme="light"] {
  --bg: #f5f5f5;
  --surface: #ffffff;
  --surface-hover: #f0f0f0;
  --input-bg: #f5f5f5;
  --border: #e5e5e5;
  --border-light: #dddddd;
  --text: #111111;
  --text-secondary: #666666;
  --accent: #b03030;
  --accent-hover: #8a2525;
  --accent-text: #ffffff;
  --gold: #d4a76a;
  --gold-hover: #c49a5e;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100vh;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.page-wrapper {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
  cursor: pointer;
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
