* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  background: radial-gradient(circle at center, #0b0e11 0%, #122a4f 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  text-align: center;
}

.name {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.6),
    0 0 20px rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
  margin: 20px 0;
  user-select: none;
}

.line {
  width: 300px;
  height: 2px;
  margin: 12px auto;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
  filter: blur(0.5px);
}

.button-wrapper {
  margin-top: 40px;
  text-align: center;
}

.discord-button {
  background: linear-gradient(to right, #202636, #1c1f2a); /* dark gray-blue */
  color: #ffffff;
  padding: 12px 28px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow:
    0 0 8px rgba(255, 255, 255, 0.15),
    0 0 20px rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.discord-button:hover {
  background: linear-gradient(to right, #2b3244, #232733);
  box-shadow:
    0 0 12px rgba(255, 255, 255, 0.2),
    0 0 24px rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .name {
    font-size: 2rem;
  }

  .line {
    width: 200px;
  }
}
