:root {
  --bg: #0b0c10;
  --panel: #111318;
  --text: #e6e7ea;
  --muted: #a7adbb;
  --accent: #b194d6; /* soft taro-lilac */
  --accent-2: #6b5bb6;
  --code-bg: #0f1117;
  --border: #22242b;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --radius: 16px;
}

html,
body {
  height: 100%;
  margin: 0;
  background: var(--bg);
  font-family: 'Lato', sans-serif;
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.wrap {
  max-width: 640px;
  width: 100%;
  text-align: center;
  background: linear-gradient(145deg, color-mix(in lab, var(--panel) 90%, var(--accent) 5%) 0%, var(--panel) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
}

h1 {
  font-size: clamp(1.2rem, 2.2vw + 1rem, 1.8rem);
  margin: 0 0 12px;
}

p {
  margin: 0 0 14px;
  line-height: 1.6;
  font-size: 1rem;
}

a {
  text-decoration: none;
  color: var(--accent);
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

.pepe-container {
  width: 160px;
  height: 160px;
  margin: 24px auto 0;
}

.footer {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}
