* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #121212;
  color: #ffffff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 480px;
  width: 90%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.4);
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ffffff;
}

p {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 30px;
}

.discord {
  background-color: #5865F2;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

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