@font-face {
  font-family: 'MyFont';
  src: url('fonts/Krakoan-PSK-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg: #0a0a0a;
  --fg: #e0e0e0;
  --accent: #00ffff;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'MyFont', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

h1 {
  font-size: 3rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

p {
  font-size: 1.2rem;
  max-width: 500px;
  line-height: 1.5;
  opacity: 0.8;
}

.cta {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.2s ease;
}

.cta:hover {
  background: var(--accent);
  color: var(--bg);
  transform: scale(1.05);
}