/* bw-styles.css - v3.2 */
body.revealed {
  transition: filter 0.4s ease;
}
body {
  color: #f0f0f0;
  font-family: 'Helvetica Neue', sans-serif;
  margin: 0;
  background: none !important;
  user-select: none;

  -webkit-tap-highlight-color: transparent;
}



#pixel-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: url('../images/background.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  pointer-events: none;
}
#explosion {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('../images/explosion.gif');
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-color: none;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.3s ease;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
#site-header {
  padding: 10px;
  z-index: 1;
  position: relative;
}
.logo-slot {
  position: relative;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#logo-final {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 700px;
  aspect-ratio: 3 / 1; /* adjust if logo isn't 3:1 */
  background-image: url('../images/logo.gif');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  opacity: 0;
  transition: opacity 0.3s ease;
  image-rendering: pixelated;
}

/* Show logo immediately on single posts */
body.single #logo-final {
  opacity: 1;
}

.back-button-container {
 text-align: center;
 margin: 20px 0 10px 0;
}

.back-button {
 font-family: "Jersey 15", sans-serif;
 font-size: 50px;
 color: #fc007e;
 text-decoration: none;
 background: rgba(0, 0, 0, 0.775);
 padding: 5px 20px;
 border-radius: 20px;
 display: inline-block;
 transition: all 0.3s ease;
 text-transform: uppercase;
}

.back-button:before {
 content: "◀";
 margin-right: 0px;
 font-size: 35px;
 color: inherit;
}

.back-button:hover {
 color: #009aff;
 background: rgba(0, 0, 0, 0.9);
}

.fusion-fullwidth {
  background: none !important;
}
main {
  position: relative;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-top: 30px !important;
}

/* Show main content immediately on single posts */
body.single main {
  opacity: 1;
}

/* Hide logo animation overlay on single posts */
body.single #logo-overlay {
  display: none;
}

article>div {
	border-radius: 10px;
	border: 2px solid #fc007e !important;
}

.slides div {
	border-radius: 10px !important;
}

h1 {
  font-family: "Jersey 15", sans-serif !important;
  color: #fc007e !important;
  line-height: 40px !important;
  margin: 10px 0 0 0 !important;
  font-size: 60px !important;
  font-weight: 400 !important;
  font-style: normal !important;
}
.news-column {
  background: rgba(0, 0, 0, 0.775);
  border-radius: 20px;
  padding: 20px 5px 20px 5px;
}
.dark-column {
  max-width: 1200px;
  background: rgba(0, 0, 0, 0.775);
  border-radius: 20px;
  padding: 40px 10px 40px 10px;
}
.dark-column-single {
  max-width: 1200px;
  background: rgba(0, 0, 0, 0.775);
  border-radius: 20px;
  padding: 40px 50px 40px 50px;
  margin: 0px auto 20px auto;
}
.jersey-bw {
  font-family: "Jersey 15", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.pixelify-sans-bw {
  font-family: "Pixelify Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.bw-gamebox {
  max-width: 200px !important;
  margin: 0 10px 10px 10px !important;
}
.bw-footer {
  background: rgba(0, 0, 0, 0.80);
  padding: 10px;
  text-align: center;
  margin-bottom: -1px;
  margin-top: 50px;
}
.bw-footer a:hover {
  color: #009aff !important;
}
.bw-footer a {
  color: #fc007e !important;
}