/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: radial-gradient(#000 40%, #111) fixed;
  color: #e0e0e0;
  line-height: 1.6;
  text-align: center;
  padding: 2rem;
  overflow-x: hidden;
}

/* Starfield effect using a simple animated layer */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 200%;
  background: transparent url('/stardust.png') repeat;
  animation: moveStars 90s linear infinite;
  opacity: 0.2;
  z-index: -1;
}

@keyframes moveStars {
  from { transform: translate(0, 0); }
  to { transform: translate(-500px, 500px); }
}

header {
  padding-bottom: 2rem;
  border-bottom: 2px solid #333;
}

.logo .mascot-placeholder {
  font-size: 4rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 5px #0ff);
}

.logo h1 {
  font-size: 2.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 5px #0ff;
}

.tagline {
  font-style: italic;
  color: #888;
  margin-top: 0.5rem;
}

.intro {
  margin-top: 3rem;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #eee;
}

.intro p {
  margin-bottom: 2rem;
  color: #ccc;
  font-size: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta {
  display: inline-block;
  background: #0ff;
  color: #000;
  font-weight: bold;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 0 10px #0ff;
  transition: all 0.3s ease;
}

.cta:hover {
  background: #00f6ff;
  transform: scale(1.05);
  box-shadow: 0 0 20px #0ff;
}

footer {
  margin-top: 4rem;
  color: #666;
  font-size: 0.9rem;
}