@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}

.home-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.bg-layer {
  background-image: url('img/city/cityback.jpg');
  filter: brightness(0.7);
}

.buildings-layer {
  background-image: url('img/city/city-silhouette.png');
  transform: translateZ(-1px) scale(2);
}

.hero-layer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform: translateZ(-0.5px) scale(1.5);
}

.hero-layer img {
  max-height: 80%;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 10;
}

.game-title {
  font-family: 'Bangers', cursive;
  font-size: 8vw;
  margin: 0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

.tagline {
  font-family: 'Arial', sans-serif;
  font-size: 2vw;
  margin-top: 10px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.start-button {
  font-family: 'Bangers', cursive;
  font-size: 2vw;
  margin-top: 30px;
  padding: 10px 30px;
  background-color: #ff8c00;
  border: none;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.start-button:hover {
  background-color: #ffa500;
  transform: scale(1.1);
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #ff8c00, 0 0 20px #ff8c00;
  }
  to {
    text-shadow: 0 0 7px #fff, 0 0 12px #fff, 0 0 17px #ff8c00, 0 0 22px #ff8c00;
  }
}