* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #000;
  overflow: hidden;
}

#bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

#content {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

#discord-link {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: #5865F2;
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  transition: background 0.2s ease, transform 0.1s ease;
}

#discord-link:hover {
  background: #4752c4;
  transform: translateY(-2px);
}

#discord-link:active {
  transform: translateY(0);
}
