@font-face {
  font-family: "Cooper";
  src: url("/fonts/Cooper-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cooper";
  src: url("/fonts/Cooper-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

html {
  background: #172743;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  background: linear-gradient(to bottom, #172743, #1f2e47);
  color: #e0e0e0;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #f18928;
  text-decoration: none;
}

a:hover {
  color: #ffa54c;
}

h1,
h2,
summary {
  font-family: "Cooper", system-ui, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 800;
}

h1 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #f18928;
}

h2,
summary {
  font-weight: 700;
}

h2 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #a0a8b8;
}

/* Shared layout */
main {
  flex: 1;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

header {
  text-align: center;
  margin-bottom: 3rem;
}

header img {
  width: 180px;
  aspect-ratio: 240 / 88;
  margin-bottom: 0.5rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
}

footer a {
  color: rgba(255, 255, 255, 0.4);
}

footer a:hover {
  color: #f18928;
}

/* Scanlines */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 2px,
    rgba(0, 0, 0, 0.06) 2px,
    rgba(0, 0, 0, 0.06) 4px
  );
}
