html {
  margin: 0;
  overflow-x: hidden;
  padding: 0;
}

body {
  background-color: #000000;
  background-image: linear-gradient(
    rgba(32, 32, 32, 1),
    rgba(32, 32, 32, 1),
    rgba(0, 0, 0, 1)
  );
  background-repeat: no-repeat;
  color: #33ff33;
  font-family: "Press Start 2P", monospace;
  margin: 0;
  overflow-x: hidden;
  padding-bottom: 0;
}

header {
  background: #1a1a1a;
  border-bottom: 4px solid #33ff33;
  color: #33ff33;
  padding: 4rem 1rem 1rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

header h1 {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  text-shadow: 2px 2px 0 #000;
}

nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  padding: 1rem;
}

nav a {
  background-color: #cc66ff;
  border: 4px solid #33ff33;
  box-shadow: 2px 2px #000;
  color: #33ff33;
  padding: 0.5rem 1rem;
  text-decoration: none;
  text-shadow: 1px 1px 2px #000000;
}

main {
  background-color: transparent;
  border-top: 4px solid #33ff33;
  color: #33ff33;
  padding: 2rem;
  text-align: center;
}

.chase-bar {
  background: transparent;
  height: 2rem;
  overflow: visible;
  position: relative;
  top: -3rem;
  width: 100vw;
  z-index: 9999;
}

.chase-emoji {
  animation: scroll-chase 20s linear infinite;
  cursor: pointer;
  left: -100%;
  position: absolute;
  top: 2rem;
  white-space: nowrap;
}

.chase-emoji .face {
  font-size: 1.8rem;
}

.chase-emoji .fries {
  font-size: 1.2rem;
}

@keyframes scroll-chase {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.logo-wrapper {
  height: 124px;
  margin: -2mm auto 0.5rem;
  position: relative;
  width: 124px;
}

.site-logo {
  background: #000;
  border: 4px solid #33ff33;
  height: 120px;
  left: 2px;
  object-fit: contain;
  position: absolute;
  top: 2px;
  width: 120px;
}

#arcadeGamePopup {
  background: black;
  border: 4px solid #33ff33;
  box-shadow: 0 0 20px #cc66ff;
  display: none;
  height: 90%;
  left: 5%;
  position: fixed;
  top: 5%;
  width: 90%;
  z-index: 10001;
}

#arcadeGamePopup iframe {
  border: none;
  height: 100%;
  width: 100%;
}

#arcadeGamePopup button {
  background: #cc66ff;
  border: none;
  color: #33ff33;
  cursor: pointer;
  font-family: "Press Start 2P", monospace;
  padding: 0.5rem;
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 10002;
}

@media (max-width: 600px) {
  nav {
    background: none;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    padding: 0.5rem;
  }

  nav a {
    align-items: center;
    display: flex;
    font-size: 0;
    justify-content: center;
    min-width: 3rem;
    padding: 0.5rem;
    position: relative;
  }

  nav a::after {
    content: attr(data-label);
    display: inline-block;
    font-size: 2rem;
  }
}
