:root {
  --bg: #0f0f0f;
  --card: #161616;
  --text: #eaeaea;
  --muted: #9a9a9a;
  --accent: #5c7cfa;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: var(--card);
  padding: 32px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

h1 {
  font-size: 24px;
  margin-bottom: 8px;
}

p {
  color: var(--muted);
  margin-bottom: 24px;
}

.links a {
  display: block;
  text-decoration: none;
  color: var(--text);
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #222;
  margin-bottom: 12px;
  transition: background 0.2s, border 0.2s;
}
.yp2 {
  font-size: 10px;
  color: #777;
}
.yp1 {
  display: block;
  font-size: 9px;
  color: #777;
  margin-top: 2px;
  opacity: 0.4;
}
.yp {
  display: block;
  font-size: 14px;
  color: #b1a3a3;
  margin-top: 4px;
}

 .links a:hover {
  background: #1e1e1e;
  border-color: var(--accent);
}
.hai {
  position: fixed;
  bottom: 2px;
  right: 2px;
  width: 70px;
  height: 50px;
  opacity: 0.5;
}