:root {
  --lr-mint: #00d391;
  --lr-dark: #0a0a0a;
  --lr-mono: 'DejaVu Sans Mono', 'Courier New', monospace;
}

body {
  background: #f4f4f2 !important;
  color: var(--lr-dark) !important;
  font-family: var(--lr-mono);
  margin: 0;
}

.container.wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px;
  background: none;
  border: none;
  box-shadow: none;
}

.header {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
  border-bottom:none;
}

.header .logo {
  display: flex;
  justify-content: center;
  width: 100%;
}

.header .logo img {
  max-width: 260px;
  height: auto;
}

.center {
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.center .button {
  display: inline-block;
  background: var(--lr-dark);
  color: #ffffff !important;
  font-family: var(--lr-mono);
  font-weight: 700;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 8px;
  margin-bottom: 28px;
  transition: opacity 0.15s ease;
}

.center .button:hover {
  opacity: 0.85;
}

.home-options {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.home-options a {
  color: var(--lr-dark) !important;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--lr-mint);
  padding-bottom: 2px;
  transition: opacity 0.15s ease;
}

.home-options a:hover {
  opacity: 0.7;
}

footer.container {
  text-align: center;
  color: #999 !important;
  font-size: 0.8em;
  margin-top: 40px;
  background: none;
  border: none;
  box-shadow: none;
}

footer.container a {
  color: #999 !important;
}