* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: 'Arial', sans-serif;
  color: white;
  overflow: hidden;
}

body {
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 50px;
  border-radius: 20px;
}

.logo {
  width: 200px;
  max-width: 80%;
  margin-bottom: 20px;
}

.coming-soon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ffffff;
  text-shadow: 2px 2px #000000;
}

#countdown {
  font-size: 24px;
  font-weight: bold;
}

body.needs-interaction::after {
  content: "Tap or click anywhere to enable music 🎵";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
}
