:root {
  --accent: #57D1FF;
  --muted: #9FB2D9;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Merriweather', serif;
  color: #fff;
  background: #000 url('images/test3.png') no-repeat center/cover;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}


.overlay {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

h1 {
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 1rem;
}

.pitch {
  max-width: 700px;
  margin: 0 0 2rem;
  line-height: 1.6;
}

.tagline {
  font-style: italic;
  margin: 0 0 2rem;
}

.enter {
  padding: 0.75rem 2rem;
  background: rgba(0,0,0,0.6);
  border: 2px solid var(--accent);
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 0 8px rgba(87,209,255,0.3);
  transition: box-shadow 0.3s;
}

.enter:hover {
  box-shadow: 0 0 12px var(--accent);
}

.enter:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

footer {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }
}
