:root {
  color-scheme: dark;
  --bg: #000000;
  --fg: #f2f2f5;
  --accent: #9b4dff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg) url("../assets/images/Classic Logo.png") no-repeat center center fixed;
  background-size: contain;
  color: var(--fg);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

.brand {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  text-decoration: none;
}

.site-header nav a {
  color: var(--fg);
  text-decoration: none;
  margin-left: 1.5rem;
  opacity: 0.8;
}

.site-header nav a:hover {
  opacity: 1;
  color: var(--accent);
}

main {
  padding: 2rem 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3);
}

.site-footer {
  margin-top: auto;
  padding: 1.5rem;
  text-align: right;
  opacity: 0.6;
  font-size: 0.85rem;
}
