/* Simple dark blue + gold splash page */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

body {
  background: #0a1f3d;        /* Deep dark blue */
  color: #d4af37;              /* Elegant gold */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

main {
  padding: 2rem;
}

h1 {
  font-size: 4.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

p {
  font-size: 1.5rem;
  opacity: 0.9;
}

/* Responsive adjustment for mobile */
@media (max-width: 640px) {
  h1 { font-size: 3rem; }
  p  { font-size: 1.2rem; }
}