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

html, body {
  min-height: 100%;
  background: #000;
  font-family: 'VT323', monospace;
  color: #eaeaea;
}

.background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.background-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

.back {
  position: fixed;
  top: 16px;
  left: 16px;
  color: #eaeaea;
  background: #000;
  border: 1px solid #eaeaea;
  padding: 4px 12px;
  font-size: 20px;
  text-decoration: none;
  z-index: 20;
}

.back:hover {
  background: #eaeaea;
  color: #000;
}

.page-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 100px 20px 60px;
}

.comments-embed {
  width: 100%;
  max-width: 640px;
}

.comments-embed iframe {
  width: 100%;
  height: 600px;
  display: block;
}

.comment-box {
  width: 100%;
  max-width: 640px;
  background: #000;
  border: 1px solid #eaeaea;
  padding: 24px 28px;
  text-align: center;
}

.comment-box p {
  font-family: ui-monospace, 'Courier New', monospace;
  font-size: 16px;
  line-height: 1.6;
  color: #d8d8d8;
  margin-bottom: 20px;
}

.ninja-link {
  display: inline-block;
  color: #eaeaea;
  background: #000;
  padding: 6px 16px;
  font-family: 'VT323', monospace;
  font-size: 22px;
  letter-spacing: 1px;
  text-decoration: none;
}

.ninja-link:hover {
  background: #eaeaea;
  color: #000;
}
