body {
  margin: 0;
  padding: 0;
  font-family: 'VT323', monospace;
  font-size: 24px;
  background-color: #0b0e14;
  color: #eaeaea;
  overflow-x: hidden;
}


body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 100% 8px;
    opacity: 0.08;
    z-index: 2;
    pointer-events: none;
}


* {
    box-sizing: border-box;
}

body.screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

body.scroll {
    display: block;
    min-height: 100vh;
    overflow-y: auto;
    position: relative;
}

.container {
   position: relative;
   z-index: 10;
   text-align: center;
   width: 100%;
   max-width: 1200px;
   margin: 0 auto;
}

.title {
    font-family: 'Press Start 2P', monospace;
    color: #2dff8f;
    font-size: clamp(1.2rem, 5vw, 35px);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    margin-bottom: clamp(20px, 8vh, 80px);
    text-align: center;
    line-height: 1.2;
}


@media (max-width: 600px) {
    .title {
        margin-bottom: 40px;
    }
}

.navigation-buttons {
      display: flex;
      justify-content: center;
      gap: 25px;
      flex-wrap: wrap;
}

.nav-button {
     background: transparent;
     border: 2px solid #2dff8f;
     color: #2dff8f;
     font-family: 'VT323';
     font-size: 2rem;
     padding: 10px 20px;
     cursor: pointer;
     margin-top: 20px;
}

.nav-button:hover {
    background: #2dff8f;
    color: #0b0e14;
}

.nav-button.small-text {
    font-size: 1.8rem;
    padding: 10px 20px;
}