#chant {
  background: #000;
  border-left: 10px solid #d00; 
  padding: 2rem;
  margin: 2rem auto;
  max-width: 800px;
  min-height: 200px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 50px #d00;
}

.chant-line {
  font-family: 'ShadowsIntoLight', cursive;
  line-height: 1;
  margin: 0;
  padding: 2px 0;
  color: #d00;
  text-shadow: 2px 2px 0px #000;
  transition: all 0.1s ease;
}

.chant-line:nth-child(even) {
  padding-left: 20px;
  color: #ff0000;
}

#chant::after {
  content: "RESTRICTED ACCESS - MEAT RECOVERY IN PROGRESS";
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: 'VT323', monospace;
  background: #d00;
  color: #000;
  padding: 5px;
  font-size: 0.8rem;
  pointer-events: none;
}