* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #5ce7ff;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 48px 24px;
}

.logo img {
  width: 192px;
  height: 192px;
  object-fit: contain;
}

.links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.links a {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.links a:hover {
  opacity: 0.7;
}
