/**
 * base.css — 深色影视风主题变量、reset 与基础排版。
 */

:root {
  --bg: #0d0f14;
  --bg-elevated: #14171f;
  --surface: #1b1f29;
  --border: #2a3140;
  --text: #e8eaf0;
  --text-muted: #8b93a5;
  --accent: #ff5a5f;
  --accent-strong: #e50914;
  --radius: 10px;
  --nav-h: 56px;
  --bottom-h: 60px;
  --max-w: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
}

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

button {
  font-family: inherit;
}

.hidden {
  display: none;
}
