/* RESET */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #000;
  color: #fff;
  font-family: 'Poppins', Arial, sans-serif;
  min-height: 100vh;
}

.main-title {
  margin-top: 40px;
  font-family: 'Orbitron', Arial, sans-serif;
  color: #ffd900;
  font-size: 2.7rem;
  font-weight: 900;
  text-shadow: 2px 2px 8px #000, 0 0 8px #ffd90055;
  text-align: center;
}

@media (max-width: 600px) {
  .main-title { font-size: 1.8rem; }
}
