html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden; /* Only lock horizontal scroll */
}


.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 1.5rem; 
  font-size: 1.125rem; 
}

.mc-button:hover {
  background-color: rgba(100, 100, 255, .45);
  color: #FFFFA0;
  text-shadow: 2px 2px #202013CC;
}

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 0.25rem;
  object-fit: contain;
  padding: 0;
}

#mainContent {
  min-height: 100vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 2rem; /* Add padding so bottom buttons aren't cut off */
}


.button-container {
  margin-top: 1.5rem; 
  gap: 1.25rem; 
}

@media (max-width: 768px) {
  .flex {
    flex-direction: column;
  }

  .mc-button {
    width: 100%;
    padding: 1rem;
  }

  .button-container {
    margin-bottom: 3rem;
    gap: 1.25rem;
  }
}
