* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  min-height: 100%;
}
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at top, #66d6ff 0%, #008cff 40%, #00ff4e 100%);
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.page-wrap {
  width: 100%;
  max-width: 520px;
}
.card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  padding: 32px 24px 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4d00, #ffb500);
  box-shadow: inset 0 0 0 5px rgba(255,255,255,0.7);
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.subtitle {
  color: #5a3f12;
  font-size: 0.98rem;
  margin-bottom: 16px;
}
.shortcut {
  display: inline-block;
  margin-bottom: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
}
.buttons {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}
.item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  background: #ffffff;
  text-decoration: none;
  color: #1d1d1d;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.item:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.12);
}
.icon {
  font-size: 1.2rem;
}
.footer {
  margin-top: 8px;
  font-size: 0.86rem;
  color: #7a5a2a;
}
@media (max-width: 480px) {
  .card {
    padding: 28px 18px 20px;
  }
  h1 {
    font-size: 1.95rem;
  }
}
