/* GLOBAL */
@font-face {
  font-family: "LegacyFuturaBold";
  src: url("Fonts/legacy_FuturaT_Bold.ttf") format("truetype");
  font-weight: bold;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  overflow-x: hidden;
}

/* LEFT + RIGHT IMAGE SIDEBARS */
.side {
  position: fixed;
  top: 0;
  width: 10vw;
  height: 100vh;
  background: url('images/gradient.png') repeat-y center;
  background-size: cover;
  z-index: -3;
}

.left { left: 0; }
.right { right: 0; }

/* SCROLLING BACKGROUND STRIP */
.scroll-strip {
  position: fixed;
  top: 0;
  left: 10vw;
  width: 80vw;
  height: 100vh;
  background: url('images/yourScrollingImage.png') repeat-y center;
  animation: scroll 20s linear infinite;
  opacity: 0.15;
  z-index: -2;
}

/* SCROLLING LOGO ARRAY */
.logo-scroll {
  position: fixed;
  top: 0;
  left: 10vw;
  width: 80vw;
  height: 100vh;

  background: url('images/Logo.png') repeat-x center;
  background-size: 300px auto;

  opacity: 0.4;
  animation: scrollLeft 20s linear infinite;

  z-index: -1;
}

/* ANIMATIONS */
@keyframes scroll {
  from { background-position-y: 0; }
  to { background-position-y: 100%; }
}

@keyframes scrollLeft {
  from { background-position-x: 0; }
  to { background-position-x: -100%; }
}

/* MAIN CONTENT PANEL */
.content {
  position: relative;
  width: 60vw;
  margin: 0 auto;
  background: black;
  z-index: 10;

  padding-top: 150px;
}

/* HEADER */
.hero {
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-title {
  font-family: "LegacyFuturaBold", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  text-align: center;
  color: white;
  text-shadow: 0 0 10px white;
}

/* BOTTOM BUTTON ROW */
.bottom-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
  margin-top: 200px;
}

/* BUTTONS */
.nav-btn {
  display: inline-block;
  padding: 12px 20px;

  /* Red base + purple tint */
  background: linear-gradient(
    135deg,
    #ff3b3b 0%,
    #c44bff 40%,
    #ff3b3b 100%
  );

  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  margin-top: 10px;

  /* White shadow down + right */
  box-shadow: 3px 3px 0px white;

  transition: 0.2s ease;
}

.nav-btn:hover {
  filter: brightness(1.15);
}

/* Subtext under GameBanana button */
.subtext {
  font-size: 0.9rem;
  color: white;
  text-align: center;
  margin-top: 5px;
  opacity: 0.8;
}

/* Wrap for each button + subtext */
.btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Subtext under the main title */
.title-subtext {
  font-size: 1.2rem;
  color: white;
  text-align: center;
  margin-top: 10px;
  opacity: 0.8;
}

/* Wrap title + subtext */
.title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  color: white;
  opacity: 0.8;
}
