:root {
  --bg: #120018;     /* deep purple-black */
  --ink: #e6e6e6;    /* readable light text */
  --hot: #ff0033;    /* red accent */
  --edge: #333;      /* borders */
  --panel: rgba(0, 0, 0, 0.35);
}

/* base page + background */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;

  background-color: var(--bg);
  background-image: url("Images/bg1.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;

  color: var(--ink);
  font-family: "Courier New", Courier, monospace;
  line-height: 1.6;
}

/* subtle CRT-ish softness */
body {
  text-shadow: 0 0 1px rgba(255, 0, 51, 0.18);
}

/* header / masthead */
header {
  padding: 16px;
  border-bottom: 2px solid var(--hot);
  background: rgba(0, 0, 0, 0.45);
}

/* site title */
.logo {
  display: inline-block;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hot);
  padding: 6px 10px;
  border: 1px solid rgba(255, 0, 51, 0.35);
  background: rgba(255, 0, 51, 0.06);
}

/* layout container */
.wrap {
  max-width: 760px;
  margin: 24px auto;
  padding: 0 16px;
}

/* main content block */
.panel {
  border: 1px solid var(--edge);
  background: var(--panel);
  padding: 16px;
  backdrop-filter: blur(2px);
}

/* headings */
h1, h2, h3 {
  margin: 0 0 12px 0;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* paragraphs */
p {
  margin: 0 0 12px 0;
}

/* divider */
hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin: 18px 0;
}

/* lists */
ul {
  margin: 0;
  padding-left: 18px;
}

li {
  margin: 6px 0;
}

/* links */
a {
  color: var(--hot);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* small, secondary text */
.small {
  font-size: 0.85rem;
  opacity: 0.7;
}