@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  background: url('assets/local-1.jpg') no-repeat center center/cover;
  height: 100vh;
  overflow: hidden;
}

.overlay {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo {
  width: 220px;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 15px #ff3b3b);
  animation: glowLogo 2s infinite alternate;
}

@keyframes glowLogo {
  from { filter: drop-shadow(0 0 10px #ff3b3b); }
  to { filter: drop-shadow(0 0 30px #ff8d00); }
}

.neon-title {
  font-size: 2.8em;
  color: #ff3b3b;
  text-shadow: 0 0 10px #ff3b3b, 0 0 20px #ff8d00, 0 0 40px #a06bff;
  animation: flicker 2s infinite alternate;
}

.neon-sub {
  font-size: 1.5em;
  color: #ff8d00;
  text-shadow: 0 0 10px #ff8d00, 0 0 20px #a06bff;
  margin-bottom: 20px;
}

.countdown {
  font-size: 2em;
  color: #a06bff;
  text-shadow: 0 0 10px #a06bff, 0 0 30px #ff3b3b;
  animation: flicker 3s infinite alternate;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.5;
  }
}

audio {
  display: none;
}
