  
  body {
  margin: 0;
  background-color: #1f1d24;
  background-image: url("/pattern6.png");
  background-repeat: repeat;
  background-size: 100px 100px;
  animation: patternDrift 100s linear infinite;
  overflow-x: hidden;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
  font-family: 'Special Elite', monospace;
}
  
@keyframes patternDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px 200px;
  }
}


  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

.banner {
  position: relative;
  margin-top: 30px;
  width: 100%;          /* todo o topo completo*/
  height: 300px;         
  overflow: hidden;      /* corta o excesso */

}

.banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.catinho {
  position: absolute;
  top: 0px;
  right: 10px;

  width: 180px;
  height: auto;

  transition: transform 0.25s ease-out;
  z-index: 3;
  cursor: pointer;
}

.catinho:hover {
  transform:
    translate(-4px, 2px)
    rotate(-8deg)
    scale(1.05);
}



  
.ticker {
  background: #1b1b1b;
  width: 100%;
  margin-left: 0;
  margin-left: calc(50% - 50vw); /* full bleed !!!1111!1*/
  color: #fff;
  padding: 6px 0;
  overflow: hidden;
}


.aboveheader {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 6px;
  height: 6px;
  background: #000;
  opacity: 0.25;
  z-index: 10000;
}




.allpage {
  background: #2a2832;
  color: #fff;
  border-radius: 10px;
  padding: 64px 72px;
  outline: 2px solid rgba(255,255,255,0.2);
  width: 1100px;
  margin: 48px auto;
  box-sizing: border-box;
}



  .block {
  margin-bottom: 60px;
  }
  
  .blocktitle {
  font-family: 'Tiny5', monospace;
  background: #32313b;
  color: #ffffff;
  padding: 10px 18px;
  font-size: 30px;
  letter-spacing: 0px;
  border-radius: 14px 14px 0px 0px;
  margin-bottom: -10px;          
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
  }
  
  
  .blockbody {
  background: #43424f; 
  color: #f1f1f1;
  padding: 18px 24px;
  border-radius: 12px;
  line-height: 1.6;
  text-align: justify;
  }
  
  .blockbody p {
  margin-bottom: 30px
  }
  
.botaoentry1 {
  display: block;
  position: sticky;
  width: 25px;
  height: 25px;
  background: #d1a30d;
  opacity: 0.45;
}


.botaoentry1:hover {
  animation:
    glitch-move 0.15s steps(1) infinite,
    glitch-flicker 0.08s infinite;
}

@keyframes glitch-move {
  0%   { transform: translate(0) scale(3); }
  10%  { transform: translate(-120px, 30px) scale(5) skewX(20deg); }
  30%  { transform: translate(200px, -80px) scale(4) skewY(-25deg); }
  50%  { transform: translate(-600px, 120px) scale(6) rotate(5deg); }
  70%  { transform: translate(300px, -200px) scale(5); }
  100% { transform: translate(0) scale(3); }
}

@keyframes glitch-flicker {
  0%, 100% { opacity: .8; }
  50% { opacity: .2; }
}

  .linkretorno {
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    color: white;
  }
  


.footer {
  text-align: center;
  font-size: 13px;
  margin: 40px 0;
  color: #000;
}

