* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  overflow: hidden;
}

.background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: blur(4px) brightness(0.6);
  transform: translateY(-3%);
}

.overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 800px;
  margin-bottom: auto;
  margin-top: 15vh;
  filter: drop-shadow(rgba(0, 0, 0, 1) 0px 3px 5px);
}

.bottom-section {
  position: absolute;
  bottom: 15vh;
  text-align: center;
}

.coming-soon {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  letter-spacing: 2px;
  color: white;
  margin-bottom: 30px;
  filter: drop-shadow(rgba(0, 0, 0, 1) 0px 4px 6px);
  text-transform: uppercase;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #5865F2;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 1));
}

.discord-btn:hover {
  background: #4752C4;
  transform: scale(1.05);
}

.discord-btn:hover {
  background: #4752C4;
}

@media screen and (max-width: 768px) {
  .logo {
    width: 90%;
    max-width: none;
    margin-top: 20vh;
  }

  .coming-soon {
    font-size: 2.5rem;
  }

  .discord-btn {
    font-size: 1rem;
    padding: 12px 20px;
  }

  .bottom-section {
    bottom: 10vh;
  }
  
  .background-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
    filter: blur(4px) brightness(0.6);
    transform: translateY(-3%) scale(110%);
  }
}