:root {
  --text: #e6e6e3;
--muted: rgba(230, 230, 227, 0.72);
}

* {
  box-sizing: border-box;
}

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

body {
  background: #000;
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Ubuntu, Cantarell, "Noto Sans", sans-serif;
  line-height: 1.5;
}

/* Overall stage */
.stage {
  max-width: 900px;
  margin: 8vh auto 10vh;
  padding: 0 1.25rem;
  text-align: center;
}

/* Cassette + label */
.cassette-wrap {
  position: relative;
  display: inline-block;
}

.cassette {
  width: min(92vw, 820px);
  height: auto;
  display: block;
}

/* Text that sits on the cassette label */
.label-text {
  position: absolute;

  /* This puts the title where your BLACK line is */
  top: 27%;
  left: 50%;
  transform: translate(-50%, -50%);

  width: 78%;
  height: 12%;

  display: grid;
  place-items: center;

  text-align: center;
  pointer-events: none;
  z-index: 2;
}

.title {
  margin: 0;
  font-family: "Caveat", cursive;
  font-weight: 600;
  font-size: 2.1rem;
  letter-spacing: 0.5px;
  color: #1e4ed8; /* blue ball-point ink */
}

}

.mission {
  margin: 0 0 1.2rem;
  font-size: 1.05rem;
  color: var(--text);
}

/* Content below cassette */
.content {
  margin-top: 0.01rem;  /* was 0.6–0.8rem */
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.lead {
  margin-bottom: 1.2rem;
}

a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

/* Instruction list */
.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  margin: 0.9rem 0;
}

.muted {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer text */
.smallprint {
  margin-top: 1.8rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.whisper {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Mobile tuning */
@media (max-width: 520px) {
  .label-text {
    top: 12%;
    width: 86%;
  }

  .title {
    font-size: 1.05rem;
  }

  .mission {
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .label-text {
    top: 23%;
    width: 86%;
  }

  .title {
    font-size: 1.7rem;
  }
}

