
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;700&display=swap');

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Unbounded', sans-serif;
  color: #fff;
  overflow: hidden;
}

.background {
  background: url('mot_bg.jpg') no-repeat center center/cover;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: -2;
}

.overlay {
  background: rgba(0, 0, 0, 0.75);
  padding: 4em 2em;
  text-align: center;
  height: 100%;
  overflow-y: auto;
}

h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
  text-shadow: 0 0 15px #ff0044;
}

.intro {
  font-size: 1.2em;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
  color: #dddddd;
}
#do-not-click {
  position: fixed;
  bottom: 30px;
  left: 30px;
  color: #ff4444;
  font-size: 1.5em;
  font-family: 'Unbounded', sans-serif;
  text-align: center;
  cursor: pointer;
  z-index: 99;
  transition: transform 0.3s ease;
}

#do-not-click span {
  font-size: 0.8em;
  color: #ff9999;
}

#do-not-click.glitch {
  animation: glitchFlash 0.3s steps(2, end) 3;
  transform: rotate(-2deg) scale(1.1);
}

@keyframes glitchFlash {
  0% { opacity: 1; transform: scale(1) rotate(0deg); }
  25% { opacity: 0.5; transform: scale(1.05) rotate(1deg); }
  50% { opacity: 1; transform: scale(1.1) rotate(-2deg); }
  75% { opacity: 0.7; transform: scale(0.95) rotate(1deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
