* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
}

body {
  background: #1a1a1a;
  color: white;
  font-size: 16px;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

.header {
  font-size: 45px;
  font-weight: 900;
  background: linear-gradient(135deg, #9cc7f4, #ff99cc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.intro h2 {
  font-size: 24px;
  background: linear-gradient(135deg, #9cc7f4, #ff99cc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: normal;
  margin-bottom: 40px;
}

.discord-button {
  margin-top: 10px;
}

.discord-btn {
  background-color: transparent;
  color: white;
  padding: 15px 40px;
  font-size: 24px;
  font-weight: bold;
  text-transform: capitalize;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  border: 4px solid transparent;
}

.discord-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background-image: linear-gradient(135deg, #9cc7f4, #ff99cc);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.discord-btn:hover {
  color: white;
}

.discord-btn:hover::before {
  opacity: 1;
}

.footer {
  margin-top: 30px;
  font-size: 12px;
  color: white;
}
