body {
  margin: 0;
  overflow: hidden;
  font-family: 'Minecraft', Arial, sans-serif;
  background: #87CEEB;
}

#game-container {
  width: 100vw;
  height: 100vh;
  position: relative;
  filter: brightness(1.1) contrast(1.1);
}

#game {
  width: 100%;
  height: 100%;
}

#hud {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  font-size: 24px;
  text-shadow: 2px 2px #000;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 5px;
  backdrop-filter: blur(5px);
}

#score, #timer {
  margin: 10px;
}

@font-face {
  font-family: 'Minecraft';
  src: url('https://db.onlinewebfonts.com/t/6ab539c6fc2b21ff0b149b3d06d7f97c.woff2') format('woff2');
}

/* Menu Styles */
#menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #1e5799 0%,#2989d8 50%,#207cca 51%,#7db9e8 100%);
}

#logo {
  max-width: 80%;
  height: auto;
  margin-bottom: 40px;
  animation: float 3s ease-in-out infinite;
}

#play-button {
  padding: 15px 40px;
  font-size: 24px;
  font-family: 'Minecraft', Arial, sans-serif;
  background: #44bd32;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#play-button:hover {
  transform: scale(1.1);
  background: #4cd137;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}