* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top, #1e293b, #020617 60%),
    linear-gradient(135deg, #0f172a, #020617);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  width: 100%;
  max-width: 420px;
  padding: 36px 32px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 20px 60px rgba(0,0,0,0.6);
  text-align: center;
}

.avatar {
  width: 110px;
  height: 110px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(
    120deg,
    #7c3aed,
    #22d3ee,
    #6366f1,
    #7c3aed
  );
  background-size: 300% 300%;
  animation: gradientMove 6s ease infinite;
  box-shadow: 0 0 28px rgba(124,58,237,0.6);
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #020617;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1 {
  margin: 10px 0 14px;
  font-size: 24px;
  letter-spacing: 0.3px;
  text-shadow: 0 0 12px rgba(124,58,237,0.5);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.tag {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
}

.store-info {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.55;
  margin-bottom: 20px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.2s ease;
}

.link:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-2px);
}

.link.store {
  background: linear-gradient(135deg, #7c3aed, #22d3ee);
  box-shadow: 0 0 24px rgba(124,58,237,0.55);
  border: none;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.link.store:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 32px rgba(124,58,237,0.75),
    0 0 48px rgba(34,211,238,0.55);
}

.link.store:active {
  transform: scale(0.98);
  box-shadow:
    0 0 18px rgba(124,58,237,0.85),
    0 0 36px rgba(34,211,238,0.65);
}

.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
  margin: 18px 0;
}

footer {
  margin-top: 22px;
  font-size: 12px;
  opacity: 0.5;
}