@font-face {
  font-family: "FreePixel";
  src: url("/assets/fonts/FreePixel.ttf") format("truetype");
}

@font-face {
  font-family: "Pixel NES";
  src: url("/assets/fonts/Pixel_NES.eot?") format("eot"),
       url("/assets/fonts/Pixel_NES.woff") format("woff"),
       url("/assets/fonts/Pixel_NES.ttf") format("truetype"),
       url("/assets/fonts/Pixel_NES.svg#PixelNES") format("svg");
  font-weight: normal;
  font-style: normal;
}

:root {
}

html {
}

body {
  width: 890px;
  margin: 10px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: Verdana;
  background-color: rgba(17, 11, 11, 1);
  font-size: 16px;
}

.box {
  background-color: rgba(0, 0, 0, 0.7);
  height: auto;
  border: 2.5px solid;
  border-color: #737373;
  border-radius: 7px 7px 7px 7px;
  padding: 50px 10px 10px;
}
/*  background-color: rgba(19, 13, 11, 0.7);*/

header {
  background-color: rgba(255, 255, 255, 0);
}

.terminal-header {
  font-family: "FreePixel";
  font-size: 2em;
  font-weight: bold;
  color: rgba(4, 255, 4, 1);
  text-align: left;
}

.terminal-header h1 {
  margin: 0;
  padding: 0 25px;
}

/* Begin navigation*/

.navigation {
  display: flex;
  justify-content: center;
}

.nav-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  width: 600px;
}

.nav-item {
  flex: 1;
  text-align: center;
  height: 50px;
  margin-right: 10px;
  background-color: transparent;
  border: 2.5px solid #737373;
  border-radius: 7px;
}

.nav-item:last-child {
  margin-right: 0; /*big brain moment*/
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.nav-item:hover {
  background-color: rgba(115, 115, 115, 0.2);
}

/* End navigation*/

.container {
  display: grid;
  grid-template-columns: 1fr; /*4fr 1fr*/
  grid-gap: 0px;
}

.content {
  padding: 0 5px;
}

.scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 20px 0;
}

.scrolling-buttons {
  display: flex;
  animation: scroll 10s linear infinite;
  /* Double the content to create seamless loop */
  width: fit-content;
}

.button-group {
  display: flex;
  gap: 10px;
  padding-right: 10px; /* Small gap between sets */
}

.scrolling-buttons img,
.scrolling-buttons iframe {
  display: block;
  height: 31px;
  width: 88px;
  object-fit: contain;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Move exactly the width of one set of buttons */
    transform: translateX(-50%);
  }
}
.scroll-container:hover .scrolling-buttons {
  animation-play-state: paused;
}

.banner {
  display: block;
  width: 640px;
  padding: 10px;
  margin: auto;
}

#drawing {
  width: 64px;
  position: fixed;
  top: 10px;
  right: 5px;
}

/*    audio {
    display: none;
}
*/

a {
  color: #a9a9a9;
  text-decoration: none;
}

a:hover {
  color: #737373;
}

footer {
  text-align: center;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 85%;
}

footer p {
  margin: 5px 0;
}

#background-dots {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 1;
  background-color: #000000;
}
/*rgba(17, 11, 11, 255);*/



.tooltip {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Show above the text */
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltiptext {
  font-size: 16px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}