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

body {
  background: #0f0f0f;
  color: #e0e0e0;
  font-family: system-ui, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page {
  width: min(560px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

h1 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.subtitle {
  font-size: 0.9rem;
  opacity: 0.6;
  letter-spacing: 0.04em;
}

.hero {
  width: min(100%, 360px);
  border-radius: 12px;
  border: 1px solid #2c2c2c;
}

.panel {
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #2f2f2f;
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.panel h2 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  opacity: 0.6;
  text-transform: uppercase;
  text-align: center;
}

.item-link {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #e0e0e0;
  border: 1px solid #444;
  border-radius: 999px;
  background: #171717;
  padding: 10px 12px;
  transition: border-color 0.2s, background-color 0.2s;
}

.item-link:hover,
.item-link:focus-visible {
  border-color: #4caf50;
  background: #1a2e1a;
  outline: none;
}

.item-link:visited {
  color: #e0e0e0;
}

.meta {
  text-align: center;
  opacity: 0.78;
  font-size: 0.92rem;
}
