/* Font Faces */
@font-face {
  font-family: 'Roboto Mono';
  src: url('/fonts/roboto-mono-v23-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Mono';
  src: url('/fonts/roboto-mono-v23-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto Mono';
  src: url('/fonts/roboto-mono-v23-latin-200italic.woff2') format('woff2');
  font-weight: 200;
  font-style: italic;
}

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

html, body {
  height: 100%;
  font-family: 'Roboto Mono', monospace;
  background-color: #0e0e0e;
  color: #eaeaea;
  font-weight: 400;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

.logo {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}

h1 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.25rem;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 2rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
}

.links a {
  text-decoration: none;
  color: #eaeaea;
  background-color: #1c1c1c;
  border: 1px solid #333;
  padding: 0.75rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.links a:hover {
  background-color: #2e2e2e;
}

.footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.75rem;
  color: #666;
  border-top: 1px solid #222;
}
