body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #000, #2b0000);
  color: #e6dcdc;
}

#bg-text {
  position: fixed;
  inset: 0;
  z-index: 0;

  font-family: Comic Sans MS;
  font-size: 14px;
  line-height: 1.6;

  color: rgba(255, 80, 80, 0.12);
  white-space: pre-wrap;

  pointer-events: none;
  user-select: none;
}

#bg-flash{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  overflow: hidden;
}

.bg-phrase{
  position: absolute;
  pointer-events: none;
  font-family: Comic Sans MS;
  font-size: 14px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  

  color: rgb(255, 0, 201);
  text-shadow: 0 0 6px rgba(255, 0, 0, 0.15);

  opacity: 0;
  transform: translate(-50%, -50%);
  animation: flashFade 9s ease-in-out forwards;
}

.bg-phrase.secret {
  pointer-events: auto;        
  cursor: pointer;
  text-decoration: none;
}

.bg-phrase.secret:hover {
  opacity: 1;
  text-shadow: 0 0 10px rgba(255, 120, 120, 0.6);
}

@keyframes flashFade{
  0%   { opacity: 0; }
  15%  { opacity: 1; }
  60%  { opacity: 0.7; }
  100% { opacity: 0; }
}

.content {
  position: relative;
  z-index: 2;

  max-width: 900px;
  margin: 0 auto;
  padding: 120px 16px;
}
  

.main-title {
  text-align: center;
  margin-bottom: 40px;
  font-family: Impact;

  font-size: clamp(32px, 8vw, 56px);
  font-weight: bold;
  letter-spacing: 3px;

  color: #e6dcdc;
  text-shadow: 0 0 9px rgba(255, 0, 0, 0.15)
}
  
.three-col{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;

  max-width: 1200px;
  margin: 0 auto;
}
  
.text-block{
  font-size: clamp(15px, 4vw, 18px);
  line-height: 1.6;
  font-family: Comic Sans MS;

  color: #e2c8c8;
  text-shadow: 0 0 2px rgba(255, 0, 0, 0.15);
}
