@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700&family=Nunito:wght@400;600;700&display=swap');

:root {
  --bg-grad: linear-gradient(135deg, #fff7f0, #fff0f5, #fffbea);
  --text:#333;
  --muted:#666;
  --primary:#ff9f1c;
  --secondary:#2ec4b6;
  --card-bg:#fff;
  --shadow:0 6px 20px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin:0;
  font-family: 'Nunito', sans-serif;
  background: var(--bg-grad);
  background-size: 400% 400%;
  animation: bgmove 15s ease infinite;
  color: var(--text);
}

/* 背景渐变动画 */
@keyframes bgmove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 主容器 */
.wrap {
  width:100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 20px;
  display:flex;
  flex-direction: column;
  gap: 28px;
}

/* 顶部品牌区 */
.brand {
  display:flex;
  align-items:center;
  gap: 20px;
  padding-bottom: 20px;
}
.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 5px solid var(--primary);
  background: #fff;
  padding: 8px;
  box-shadow: var(--shadow);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: var(--primary);
}
.subtitle {
  font-size: 16px;
  color: var(--muted);
  margin-top: 4px;
}

/* 卡片 */
.card {
  background: var(--card-bg);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 28px;
  border: 3px solid #ffe6cc;
}

/* 信息网格 */
.grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}
.label {
  font-weight: 600;
  color: var(--secondary);
  position: relative;
  padding-left: 28px;
}
.label::before {
  content: "🐱";
  position: absolute;
  left: 0;
}
.label:nth-child(3)::before { content: "💰"; }
.label:nth-child(5)::before { content: "🌐"; }
.label:nth-child(7)::before { content: "🆔"; }
.label:nth-child(9)::before { content: "🔖"; }
.label:nth-child(11)::before { content: "🏷"; }
.label.desc::before { content: "📜"; }
.value {
  color: var(--text);
}
.desc {
  grid-column: 1 / -1;
  margin-top: 8px;
}

/* 按钮 */
.actions {
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.btn {
  text-decoration: none;
  background: linear-gradient(135deg, var(--primary), #ffb347);
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.btn.alt {
  background: linear-gradient(135deg, var(--secondary), #4fd6c7);
}
.btn.alt:hover {
  filter: brightness(1.05);
}

/* 底部版权 */
.footer {
  text-align:center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

/* 响应式 */
@media (max-width: 768px) {
  .brand {
    flex-direction: column;
    text-align: center;
  }
  .grid {
    grid-template-columns: 1fr;
  }
  .label { padding-left: 24px; }
}

.value {
  color: var(--text);
  font-weight: 600;
  font-size: 17px;
}

/* 地址/ID信息渐变 */
.value:has(> span.addr) {
  font-weight: 500;
  font-size: 15px;
  background: linear-gradient(90deg, #ff9f1c, #ffb347, #2ec4b6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  word-break: break-all;
}

/* 短数据高亮标签 */
.value.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(255, 159, 28, 0.15);
  color: var(--primary);
  font-weight: 700;
}

/* Description 专属说明框 */
.value.desc {
  background: rgba(255, 159, 28, 0.08);
  border: 2px dashed var(--primary);
  border-radius: 16px;
  padding: 14px;
  font-size: 16px;
  line-height: 1.5;
  position: relative;
}
.value.desc::after {
  content: "🐾";
  position: absolute;
  right: 10px;
  bottom: 8px;
  font-size: 20px;
  opacity: 0.2;
}

.copy-btn {
  margin-left: 8px;
  background: var(--secondary);
  color: white;
  border: none;
  padding: 4px 10px;
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: background 0.2s ease;
}
.copy-btn:hover {
  background: #25b0a4;
}
.copy-btn.copied {
  background: #4caf50 !important;
}

.actions a:last-child {
  margin-left: auto;
  background: linear-gradient(135deg, #5865F2, #7983F5);
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: discord-pulse 2s infinite;
}

.actions a:last-child:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(88, 101, 242, 0.6);
}

@keyframes discord-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 8px rgba(88, 101, 242, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(88, 101, 242, 0.6);
  }
}
