/* ===== Body ===== */
body {
  margin: 0;
  font-family: var(--font-body, Arial, sans-serif);
  background: var(--background);
  color: var(--text);
}

/* ===== Header ===== */
header {
  position: relative;
  text-align: center;
}

header h1 {
  font-family: var(--font-heading, Arial, sans-serif);
  color: var(--accent);
}

header img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 8px var(--accent));
}

body.night header img {
  filter: drop-shadow(0 0 12px var(--accent));
}

.theme-status {
  display: inline-block;
  margin-bottom: 0.4rem;
}

.theme-status-label {
  color: var(--text-muted);
}

.theme-status-label.is-active {
  color: var(--accent);
  text-shadow: 0 0 8px var(--accent);
}

body.night .theme-status-label.is-active {
  text-shadow: 0 0 8px var(--link);
}

/* ===== Nav ===== */
header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

header a {
  text-decoration: none;
  color: var(--link);
}

header a:hover {
  color: var(--link-hover);
}

/* ===== Main ===== */
main {
  padding: 1rem;
  color: var(--text);
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 1rem;
  color: var(--text);
}