
  body {
  margin: 0;
  padding: 20px 0;
  background-color: #1f1d24;
  background-image: url("/pattern5.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;
  }
}
 
 

 
 
  .banner {
  position: relative;
  margin-top: 30px;
  width: 100vw;          /* 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: 100vw;
  margin-left: calc(50% - 50vw); /* full bleed !!!1111!1*/
  color: #fff;
  padding: 6px 0;
  overflow: hidden;
}
 
  .allpage {
  background: #2a2832;
  max-width: 1100px;
  margin: 40px auto;
  color: #fff;
  border-radius: 10px;    /* borda arredondada :> */
  padding: 64px 72px;
  outline: 2px solid rgba(255,255,255,0.2);
}

  .block {
  margin-bottom: 40px;
  }
  
  .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);
  }
  
  .linkretorno {
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    color: white;
  }
  
  
  .galeriafanart {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 30px;
  background: #43424f;
  padding: 22px 24px;
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
}

  .blockbody {
  background: #43424f; 
  color: #f1f1f1;
  padding: 22px 24px;
  border-radius: 12px;
  line-height: 1.7;
  text-align: justify;
  }

 
  .aboveheader {
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 40px 24px;
}
 
 

 
 .fanart {
   background: #2A2832;
   margin: 0; 
   display: flex;
   border-radius: 16px;
   min-width: 0;
   flex-direction: column;
   overflow: hidden;
   text-align: center;
 }
 
 .fanart img {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  width: 100%;
  display: block;
  background: #2a2832;
 }
 
 
 .fanart figcaption {
  padding: 10px 6px;
  overflow: hidden;
  font-size: 18px;
  color: #fff;
  font-family: 'Special Elite';
 }
 
 
   /* efeitinho pra fanart, se n gostar pode tirar*/
  
  .fanart img {
  transition: transform 0.35s ease;
}
  
  .fanart:hover img {
  transform: scale(1.03);
}
 
 .popup {
   position: fixed;
   inset: 0;
   background: rgba(0,0,0,0.85);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.25s ease;
   z-index: 67;
 }
 
 .popup.open {
 opacity: 1;
 pointer-events: auto;
 }
 
 .popupimg {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
   border-radius: 12px;
   box-shadow: 0 0 30px rgba(0,0,0,0.5);
 }
 
 .popupclose {
   position: absolute;
   top: 30px;
   right: 30px;
   font-size: 40px;
   color: #fff;
   cursor: pointer;
   user-select: none;
 }
 
 
  .footer {
  text-align: center;
  font-size: 13px;
  margin: 40px 0;
  color: black;
  }