* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: sans-serif;
}

#galaxy {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.botton {
  background: #000000;
  border: 3px solid #fff;
  color: #fff;
  padding: 16px 32px;
  width: 330px;
  max-width: 90%;
  height: 50px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0 #000, 0 0 10px #5dfdff;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}

.botton:hover {
  background: #65027d;
  box-shadow: 2px 2px 0 #000, 0 0 12px #00ffff;
}

.botton:active {
  box-shadow: 2px 2px 0 #000;
  transform: translate(2px, 2px);
}

/* Positioning container */
.retro {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: absolute;
  top: 24%;
  right: 20%;
  z-index: 2;
}

#disc {
  position: absolute;
  top: 10%;
  left: 7%;
  width: 600px;
  height: 550px;
  mix-blend-mode: screen;
  z-index: 1;
}

#effect {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

/* 📱 Mobile Optimization */
@media (max-width: 1000px) {
  .retro {
    position: static;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #disc {
    position: static;
    width: 80%;
    height: auto;
    display: block;
    margin: 30px auto;
  }
}

@media (max-width: 480px) {
  .botton {
    font-size: 10px;
    padding: 12px 24px;
  }
}

@media (max-width: 310px) {
  #galaxy,
  #effect {
    display: none;
  }
}
@media (max-width: 310px) {
  #galaxy,
  #effect {
    display: none;
  }

  body {
    background-size: cover;
  }

  .botton {
    width: 100%;
  }
}
/* @font-face {
  font-family:'8bit';
 src: url('vi/8-bit-pusab.ttf');
}
.select{
   font-family: '8bit', sans-serif;
   font-size: 0.6rem;

}
 */



