* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: radial-gradient(circle at top, #111 0%, #000 70%);
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
  padding: 30px;
  max-width: 600px;
}

.logo {
  width: 140px;
  margin-bottom: 40px;
  filter: drop-shadow(0px 0px 18px rgba(255, 196, 0, 0.25));
  border-radius: 100px;
}

h1 {
  font-size: 48px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.white {
  color: #eaeaea;
}

.yellow {
  color: #ffc400;
}

.subtitle {
  font-size: 18px;
  color: #d0d0d0;
  margin-bottom: 12px;
}

.small {
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 600px) {
  h1 {
    font-size: 34px;
  }

  .logo {
    width: 110px;
  }
}
