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

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

.video-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.discord-section {
  padding: 60px 20px;
  text-align: center;
  background: #111;
}

.discord-section h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.discord-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #ccc;
}

.discord-btn {
  padding: 14px 26px;
  background-color: #5865F2;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.discord-btn:hover {
  background-color: #4752C4;
}
