html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}


.mc-button {
  background: #555 url('https://i.ibb.co/rb2TWXL/bgbtn.png') center/cover;
  border: 2px solid #000;
  text-shadow: 2px 2px #000A;
  box-shadow: inset -2px -4px #0006, inset 2px 2px #FFF7;
  image-rendering: pixelated;
  font-family: 'Press Start 2P', sans-serif;
  padding: 1rem 1rem; 
  font-size: 1.125rem; 
}

.mc-button:hover {
  background-color: rgba(100, 100, 255, .45);
  color: #FFFFA0;
  text-shadow: 2px 2px #202013CC;
}

.bg-custom {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url('https://assets.badlion.net/blog/minecraft-backgrounds/minecraft-mods-back.webp') no-repeat center center / cover;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
}

.button-container {
  gap: 1rem; 
}

@media (max-width: 768px) {
  .flex {
    flex-direction: column;
  }

  .mc-button {
    width: 100%;
    padding: 1rem;
  }

  .button-container {
    margin-bottom: 1rem;
    gap: 1rem;
  }
}
