* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

:root {
  --cream: #fffaf3;
  --cream-2: #fff5e6;
  --pink-candy: #ff6b9d;
  --pink-candy-light: #ffb3d0;
  --pink-candy-dark: #e84a83;
  --purple-candy: #b58bff;
  --purple-candy-light: #dcc9ff;
  --mint-candy: #7adbb0;
  --mint-candy-light: #c5f0dd;
  --sky-candy: #7ec8ff;
  --sky-candy-light: #c5e4ff;
  --lemon-candy: #ffe066;
  --lemon-candy-light: #fff3b0;
  --ink: #2d1f4e;
  --ink-2: #4a3a6b;
  --ink-3: #7d6c99;
  --border: #3d2e5e;
  --border-soft: #d9cff0;
  --r-xl: 28px;
  --r-lg: 20px;
  --r-md: 16px;
  --shadow-cartoon: 4px 4px 0 var(--border);
  --shadow-cartoon-lg: 6px 6px 0 var(--border);
  --shadow-cartoon-sm: 3px 3px 0 var(--border);
}

html { -webkit-text-size-adjust: 100%; }

.domain-card ::-webkit-scrollbar {
  width: 10px;
  height: 0;
}
.domain-card ::-webkit-scrollbar-track {
  background: rgba(61,46,94,0.05);
  border-radius: 10px;
}
.domain-card ::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--pink-candy) 0%, var(--purple-candy) 100%);
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.7);
  transition: background 0.25s;
}
.domain-card ::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--pink-candy-dark) 0%, var(--border) 100%);
}
.domain-card ::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, var(--purple-candy) 0%, var(--pink-candy) 100%);
}
.domain-card ::-webkit-scrollbar-corner { background: transparent; }
@supports (scrollbar-width: thin) {
  .domain-card * {
    scrollbar-width: thin;
    scrollbar-color: var(--pink-candy) rgba(61,46,94,0.05);
  }
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 420px 380px at 12% 18%, #ffd6e4 0%, transparent 60%),
    radial-gradient(ellipse 440px 360px at 88% 14%, #e0ccff 0%, transparent 58%),
    radial-gradient(ellipse 400px 380px at 85% 88%, #c8f0df 0%, transparent 60%),
    radial-gradient(ellipse 380px 360px at 15% 86%, #fff0a8 0%, transparent 58%),
    radial-gradient(ellipse 460px 280px at 50% 45%, #d6ecff 0%, transparent 65%),
    linear-gradient(155deg, #fff8ee 0%, #ffebf3 28%, #f4e8ff 58%, #e8f4ff 100%);
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  overflow-x: hidden;
  overflow-y: auto;
}
@supports (padding-top: env(safe-area-inset-top)) {
  body {
    padding-top: max(10px, env(safe-area-inset-top));
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
}

body::before {
  content: ""; position: fixed; inset: 0;
  background-image:
    radial-gradient(ellipse 7px 4px at 30px 50px, #ffc2d4 55%, rgba(255,194,212,0) 62%),
    radial-gradient(ellipse 6px 3px at 80px 120px, #ffaac4 55%, rgba(255,170,196,0) 62%),
    radial-gradient(ellipse 5px 3px at 150px 80px, #ffd6e4 55%, rgba(255,214,228,0) 62%),
    radial-gradient(ellipse 6px 4px at 200px 160px, #ffb7cc 55%, rgba(255,183,204,0) 62%);
  background-size: 260px 220px, 220px 260px, 300px 240px, 240px 300px;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: petalFloat 20s linear infinite;
}
@keyframes petalFloat {
  0% { background-position: 0 -50px, 0 -50px, 0 -50px, 0 -50px; }
  100% { background-position: 260px 340px, 220px 380px, 300px 360px, 240px 400px; }
}

.sparkle {
  position: fixed;
  font-size: 16px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.7;
  animation: sparkleTwinkle 3s ease-in-out infinite;
}
@keyframes sparkleTwinkle {
  0%,100% { opacity: 0.3; transform: scale(0.8); }
  50%     { opacity: 0.9; transform: scale(1.15); }
}

.domain-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  height: calc(100vh - 20px);
  height: calc(100dvh - 20px);
  min-height: 560px;
  background: #fff;
  border-radius: var(--r-xl);
  border: 3px solid var(--border);
  box-shadow: var(--shadow-cartoon-lg), 0 20px 48px rgba(45,31,78,0.15);
  overflow: hidden;
  display: grid;
  grid-template-columns: 300px 1fr 300px;
}

.domain-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg,
    var(--pink-candy) 0%,
    var(--purple-candy) 25%,
    var(--sky-candy) 50%,
    var(--mint-candy) 75%,
    var(--lemon-candy) 100%);
  z-index: 3;
}

.card-left {
  position: relative;
  padding: 32px 28px 24px;
  background:
    radial-gradient(circle at 70% 15%, rgba(255,255,255,0.28), transparent 50%),
    linear-gradient(165deg, #ff6b9d 0%, #c56fff 45%, #7f7bff 100%);
  color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.card-left::before {
  content: ""; position: absolute; left: -50px; top: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  filter: blur(18px); pointer-events: none;
}
.card-left::after {
  content: ""; position: absolute; right: -40px; bottom: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,220,120,0.22);
  filter: blur(20px); pointer-events: none;
}

.heart-deco {
  position: absolute; right: 22px; top: 18px;
  font-size: 26px; animation: beat 1.2s ease-in-out infinite;
  z-index: 2;
  filter: drop-shadow(2px 2px 0 rgba(61,46,94,0.35));
}
@keyframes beat {
  0%,100% { transform: scale(1) rotate(-5deg); }
  50%     { transform: scale(1.22) rotate(5deg); }
}

.left-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 999px;
  background: #fff;
  border: 2.5px solid var(--border);
  color: var(--ink);
  font-size: 13px; font-weight: 700;
  margin-bottom: 18px;
  align-self: flex-start;
  letter-spacing: 0.5px;
  box-shadow: 3px 3px 0 var(--border);
  position: relative; z-index: 2;
}
.dot {
  width: 8px; height: 8px; background: var(--pink-candy); border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,107,157,0.55); }
  50%     { box-shadow: 0 0 0 6px rgba(255,107,157,0); }
}

.domain-name {
  font-size: 36px; font-weight: 900; letter-spacing: 0.5px;
  line-height: 1.1; margin-bottom: 10px;
  color: #fff;
  text-shadow:
    2.5px 2.5px 0 var(--pink-candy-dark),
    5px 5px 0 rgba(61,46,94,0.3);
  white-space: nowrap;
  position: relative; z-index: 2;
}
.domain-sub {
  font-size: 13px; margin-bottom: 16px;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
  background: rgba(61,46,94,0.25);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.4);
  display: inline-block;
  position: relative; z-index: 2;
}

.domain-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
  position: relative; z-index: 2;
}
.stat-item {
  background: #fff;
  border: 2.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-cartoon-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  color: var(--ink);
}
.stat-item:hover {
  transform: translateY(-4px) rotate(-1deg);
  box-shadow: 6px 6px 0 var(--border), 0 0 0 3px rgba(255,107,157,0.15);
}
.stat-item:hover .stat-value {
  animation: popNum 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popNum {
  0% { color: var(--ink); }
  50% { color: var(--pink-candy); }
  100% { color: var(--ink); }
}
.stat-item:nth-child(1) { background: var(--lemon-candy-light); }
.stat-item:nth-child(2) { background: var(--mint-candy-light); }
.stat-item:nth-child(3) { background: var(--pink-candy-light); }
.stat-item:nth-child(4) { background: var(--sky-candy-light); }
.stat-value {
  font-size: 22px; font-weight: 900; line-height: 1.2;
  margin-bottom: 3px;
  color: var(--ink);
  display: inline-block;
  transition: color 0.2s ease;
}
.stat-label {
  font-size: 12px; font-weight: 600;
  color: var(--ink-2);
}

.value-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 18px;
  position: relative; z-index: 2;
}
.value-item {
  display: flex; align-items: flex-start; gap: 10px;
  background: #fff;
  border: 2.5px solid var(--border);
  border-radius: var(--r-md);
  padding: 11px 13px;
  box-shadow: var(--shadow-cartoon-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.value-item:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 0 var(--border);
}
.value-item:hover .value-icon {
  animation: bounceIcon 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes bounceIcon {
  0% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-8px) rotate(15deg); }
  100% { transform: translateY(0) rotate(0); }
}
.value-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; display: inline-block; }
.value-text { font-size: 13px; line-height: 1.5; color: var(--ink); }
.value-text strong {
  display: block; font-size: 13.5px; margin-bottom: 2px; font-weight: 800;
  color: var(--ink);
}

.left-scene { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; position: relative; z-index: 2; }
.scene-chip {
  padding: 5px 12px;
  background: rgba(255,255,255,0.9);
  border: 2px solid var(--border);
  border-radius: 999px; font-size: 12px; font-weight: 700;
  color: var(--ink);
  box-shadow: 2px 2px 0 var(--border);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s;
  display: inline-block;
}
.scene-chip:hover {
  transform: translateY(-4px) rotate(-4deg);
  box-shadow: 4px 6px 0 var(--border);
  background: var(--lemon-candy);
}

.card-center {
  padding: 26px 28px 22px;
  background: var(--cream);
  border-left: 3px solid var(--border);
  border-right: 3px solid var(--border);
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.center-block { margin-bottom: 18px; }
.center-block:last-child { margin-bottom: 0; }

.section-title {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 800; color: var(--ink);
  letter-spacing: 0.5px; margin-bottom: 12px;
  padding: 5px 14px 5px 12px;
  background: var(--lemon-candy-light);
  border: 2.5px solid var(--border);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--border);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
.section-title:hover {
  transform: rotate(-4deg) translateY(-2px);
  box-shadow: 4px 6px 0 var(--border);
  background: var(--lemon-candy);
}
.section-title:hover .emoji {
  animation: emojiWiggle 0.5s ease;
}
@keyframes emojiWiggle {
  0%, 100% { transform: rotate(0) scale(1); }
  25% { transform: rotate(-15deg) scale(1.2); }
  75% { transform: rotate(15deg) scale(1.2); }
}
.section-title .emoji {
  font-size: 16px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.meaning-box {
  background: #fff;
  border: 2.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px 20px;
  font-size: 14px; line-height: 2.3; color: var(--ink-2);
  box-shadow: var(--shadow-cartoon-sm);
  position: relative;
}
.meaning-box span {
  display: inline-block;
  padding: 3px 10px;
  margin: 2px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  background: transparent;
  border: 2.5px solid transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.22s ease,
              color 0.22s ease,
              border-color 0.22s ease,
              box-shadow 0.22s ease;
  backface-visibility: hidden;
}
.meaning-box span:hover {
  background: var(--pink-candy-light);
  color: var(--ink);
  border-color: var(--border);
  transform: translateY(-4px) rotate(-3deg);
  box-shadow: 4px 5px 0 var(--border);
}
.meaning-box span:nth-child(odd):hover {
  background: var(--mint-candy-light);
  transform: translateY(-4px) rotate(3deg);
}
.meaning-box span:nth-child(3n):hover {
  background: var(--sky-candy-light);
}
.meaning-box span:nth-child(3n+2):hover {
  background: var(--purple-candy-light);
}

.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 8px 16px;
  background: #fff;
  border: 2.5px solid var(--border);
  color: var(--ink);
  border-radius: 999px; font-size: 13px; font-weight: 700;
  box-shadow: 3px 3px 0 var(--border);
  transition: transform 0.15s ease, box-shadow 0.15s ease; cursor: default; user-select: none;
}
.tag:nth-child(3n+1) { background: var(--pink-candy-light); }
.tag:nth-child(3n+2) { background: var(--mint-candy-light); }
.tag:nth-child(3n+3) { background: var(--sky-candy-light); }
.tag:hover {
  transform: translateY(-5px) rotate(-3deg);
  box-shadow: 5px 8px 0 var(--border);
  animation: tagPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes tagPop {
  0%, 100% { transform: translateY(-5px) rotate(-3deg); }
  50% { transform: translateY(-9px) rotate(-5deg); }
}

.advantages { display: flex; gap: 12px; margin-bottom: 20px; }
.adv-item {
  flex: 1;
  background: #fff;
  border: 2.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 10px 14px;
  text-align: center;
  box-shadow: var(--shadow-cartoon-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}
.adv-item:nth-child(1) { background: var(--lemon-candy-light); }
.adv-item:nth-child(2) { background: var(--pink-candy-light); }
.adv-item:nth-child(3) { background: var(--mint-candy-light); }
.adv-item:hover {
  transform: translateY(-6px);
  box-shadow: 6px 10px 0 var(--border);
}
.adv-item:hover .adv-icon {
  animation: iconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  30% { transform: translateY(-10px) scale(1.2); }
  60% { transform: translateY(0) scale(0.9); }
}
.adv-icon { font-size: 28px; margin-bottom: 6px; display: inline-block; }
.adv-title { font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 3px; }
.adv-desc { font-size: 11.5px; color: var(--ink-2); line-height: 1.4; font-weight: 500; }

.process-wrap {
  background: var(--cream-2);
  border: 2.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-cartoon-sm);
}
.process-steps {
  display: flex; align-items: center; justify-content: space-between; gap: 4px;
}
.step { flex: 1; text-align: center; position: relative; }
.step-num {
  width: 44px; height: 44px; margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--pink-candy);
  border: 2.5px solid var(--border);
  color: #fff; font-size: 17px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 3px 3px 0 var(--border);
  transition: transform 0.15s ease;
}
.step:nth-child(3) .step-num { background: var(--purple-candy); }
.step:nth-child(5) .step-num { background: var(--mint-candy); }
.step:hover .step-num {
  transform: translateY(-3px) rotate(-12deg);
  animation: stepSpin 0.6s ease;
}
@keyframes stepSpin {
  0% { transform: translateY(0) rotate(0); }
  60% { transform: translateY(-6px) rotate(-18deg); }
  100% { transform: translateY(-3px) rotate(-12deg); }
}
.step:hover .step-text {
  color: var(--pink-candy);
}
.step-text {
  font-size: 12.5px; color: var(--ink); font-weight: 700; line-height: 1.4;
}
.step-arrow {
  font-size: 20px; flex-shrink: 0; margin-top: -20px;
  color: var(--ink);
}

.transfer-notice {
  background: var(--lemon-candy-light);
  border: 2.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  margin-top: 14px;
  display: flex; align-items: flex-start; gap: 10px;
  box-shadow: var(--shadow-cartoon-sm);
}
.transfer-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.transfer-text { font-size: 12.5px; color: var(--ink); line-height: 1.6; font-weight: 500; }
.transfer-text strong { color: var(--pink-candy-dark); font-weight: 800; }

.trust-row { display: flex; gap: 12px; }
.trust-item {
  flex: 1;
  background: #fff;
  border: 2.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 8px;
  text-align: center;
  box-shadow: var(--shadow-cartoon-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.trust-item:nth-child(1) { background: var(--sky-candy-light); }
.trust-item:nth-child(2) { background: var(--purple-candy-light); }
.trust-item:nth-child(3) { background: var(--mint-candy-light); }
.trust-item:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: 4px 8px 0 var(--border);
}
.trust-item:hover .trust-icon {
  animation: trustBounce 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes trustBounce {
  0%, 100% { transform: translateY(0) rotate(0); }
  40% { transform: translateY(-8px) rotate(-10deg) scale(1.2); }
}
.trust-icon { font-size: 26px; margin-bottom: 4px; display: inline-block; }
.trust-label { font-size: 12.5px; color: var(--ink); font-weight: 800; }
.trust-desc { font-size: 11.5px; color: var(--ink-2); margin-top: 2px; font-weight: 500; }

.card-right {
  padding: 26px 24px 0px;
  background: var(--mint-candy-light);
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.price-box {
  background: #fff;
  border: 2.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 20px 0px;
  text-align: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-cartoon-sm);
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, var(--pink-candy), var(--purple-candy), var(--sky-candy));
}
.price-label {
  font-size: 12px; color: var(--ink-3); letter-spacing: 2px; margin-bottom: 8px;
  font-weight: 700;
}
.price-value {
  font-size: 34px; font-weight: 900; margin-bottom: 6px;
  color: var(--pink-candy);
  background: linear-gradient(135deg, var(--pink-candy), var(--purple-candy));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.price-note { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.price-tag {
  display: inline-block; margin-top: 12px; padding: 6px 14px;
  background: var(--lemon-candy);
  border: 2.5px solid var(--border);
  border-radius: 999px;
  font-size: 12px; color: var(--ink); font-weight: 800;
  box-shadow: 2px 2px 0 var(--border);
}

.urgent-box {
  background: var(--pink-candy-light);
  border: 2.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 14px 16px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-cartoon-sm);
  animation: urgentWobble 3s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  position: relative;
}
.urgent-box:hover {
  transform: translateY(-3px);
  box-shadow: 4px 8px 0 var(--border);
  background: var(--pink-candy);
  color: #fff;
  animation-play-state: paused;
}
.urgent-box:hover .urgent-text,
.urgent-box:hover .urgent-text strong {
  color: #fff;
}
@keyframes urgentWobble {
  0%, 90%, 100% { transform: rotate(0); }
  93% { transform: rotate(-1.5deg); }
  96% { transform: rotate(1.5deg); }
}
.urgent-icon {
  font-size: 28px; flex-shrink: 0;
  animation: iconPulse 1.8s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}
.urgent-text { font-size: 12.5px; color: var(--ink); line-height: 1.5; font-weight: 600; }
.urgent-text strong { color: var(--pink-candy-dark); font-size: 13px; font-weight: 900; display: block; }

.contact-card {
  background: #fff;
  border: 2.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-cartoon-sm);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 5px 8px 0 var(--border);
}
.contact-title {
  text-align: center; font-size: 16px; font-weight: 900;
  color: var(--ink); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.contact-title .emoji { font-size: 20px; }
.contact-row {
  display: flex; align-items: center;
  padding: 12px 0; border-bottom: 2px dashed var(--border-soft);
  min-height: 44px;
  transition: transform 0.2s ease;
}
.contact-row:hover {
  transform: translateX(4px);
}
.contact-row:hover .contact-value {
  color: var(--pink-candy-dark);
  text-shadow: 1px 1px 0 var(--pink-candy-light);
}
.contact-row:last-child { border-bottom: none; }
.contact-label {
  width: 56px; font-size: 13px; color: var(--ink-3);
  flex-shrink: 0; font-weight: 700;
}
.contact-value {
  flex: 1; font-size: 14px; font-weight: 800; color: var(--ink);
  font-family: "SF Mono", "Menlo", "Consolas", "Microsoft YaHei", monospace;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.copy-btn {
  flex-shrink: 0; width: 36px; height: 36px;
  min-width: 36px; min-height: 36px;
  border-radius: 10px;
  border: 2.5px solid var(--border);
  background: var(--lemon-candy);
  color: var(--ink);
  cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, color 0.12s ease;
  margin-left: 8px; padding: 0;
  box-shadow: 2px 2px 0 var(--border);
  -webkit-appearance: none; appearance: none;
}
.copy-btn:hover {
  background: var(--pink-candy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 4px 6px 0 var(--border);
}
.copy-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--border);
  animation: btnPress 0.15s ease;
}
@keyframes btnPress {
  0% { transform: translate(-1px, -1px); }
  100% { transform: translate(2px, 2px); }
}
.copy-btn.copied { background: var(--mint-candy); color: var(--ink); }

.guarantee-box {
  background: var(--sky-candy-light);
  border: 2.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-cartoon-sm);
}
.guarantee-title {
  font-size: 14px; font-weight: 900; color: var(--ink);
  margin-bottom: 10px; display: flex; align-items: center; gap: 6px;
}
.guarantee-title .emoji { font-size: 18px; }
.guarantee-list { list-style: none; padding: 0; }
.guarantee-list li {
  font-size: 12.5px; color: var(--ink); line-height: 1.9; font-weight: 500;
  padding-left: 20px; position: relative;
}
.guarantee-list li::before {
  content: "✦"; position: absolute; left: 0;
  color: var(--pink-candy); font-weight: 900; font-size: 13px;
}

.toast {
  position: fixed; left: 50%; bottom: 30px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); color: #fff; font-size: 13px;
  padding: 12px 24px; border-radius: 999px;
  border: 2.5px solid var(--border);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 999;
  box-shadow: var(--shadow-cartoon);
  white-space: nowrap; max-width: 90vw;
  overflow: hidden; text-overflow: ellipsis;
  font-weight: 700;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 1080px) {
  body { padding: 16px; align-items: flex-start; }
  .domain-card {
    grid-template-columns: 1fr; max-width: 760px;
    height: auto; min-height: auto;
  }
  .card-left, .card-center, .card-right { padding: 28px 26px 22px; overflow: visible; min-height: auto; }
  .domain-name { font-size: 32px; }
}

@media (max-width: 640px) {
  body {
    padding: 12px 14px;
    align-items: flex-start;
  }

  .domain-card {
    grid-template-columns: 1fr; border-radius: 22px;
    height: auto; min-height: auto;
    box-shadow: var(--shadow-cartoon), 0 12px 32px rgba(45,31,78,0.15);
  }
  .card-left { padding: 24px 20px 20px; overflow: visible; min-height: auto; }
  .domain-name { font-size: 30px; letter-spacing: 0.5px; text-shadow: 2px 2px 0 var(--pink-candy-dark); }
  .domain-sub { font-size: 12px; margin-bottom: 12px; }
  .heart-deco { right: 18px; top: 16px; font-size: 22px; }
  .domain-stats { gap: 8px; margin-bottom: 12px; }
  .stat-item { padding: 10px; }
  .stat-value { font-size: 20px; }
  .value-list {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px;
  }
  .value-item { padding: 10px; flex-direction: column; gap: 6px; align-items: flex-start; }
  .value-icon { font-size: 22px; }
  .value-text { font-size: 11.5px; }
  .value-text strong { font-size: 12px; }
  .card-center { padding: 22px 20px 18px; overflow: visible; }
  .section-title { font-size: 13px; margin-bottom: 10px; padding: 5px 12px 5px 10px; }
  .meaning-box { padding: 14px 16px; font-size: 13px; line-height: 2; }
  .tag { font-size: 12px; padding: 7px 14px; }
  .advantages { gap: 8px; margin-bottom: 14px; }
  .adv-item { padding: 12px 8px; }
  .adv-icon { font-size: 24px; }
  .adv-title { font-size: 12px; }
  .adv-desc { font-size: 10.5px; }
  .process-wrap { padding: 16px; }
  .step-num { width: 38px; height: 38px; font-size: 15px; }
  .step-text { font-size: 11.5px; }
  .step-arrow { font-size: 16px; }
  .transfer-notice { padding: 12px 14px; margin-top: 10px; }
  .transfer-text { font-size: 11.5px; }
  .trust-row { gap: 8px; }
  .trust-item { padding: 12px 6px; }
  .trust-icon { font-size: 22px; }
  .trust-label { font-size: 11.5px; }
  .trust-desc { font-size: 10.5px; }
  .card-right { padding: 22px 20px 18px; overflow: visible; }
  .price-box { padding: 18px; margin-bottom: 14px; }
  .price-value { font-size: 30px; }
  .urgent-box { padding: 12px 14px; margin-bottom: 12px; }
  .urgent-text { font-size: 12px; }
  .contact-card { padding: 18px; margin-bottom: 12px; }
  .contact-title { font-size: 15px; margin-bottom: 14px; }
  .contact-row { padding: 11px 0; min-height: 48px; }
  .contact-label { width: 52px; font-size: 12px; }
  .contact-value { font-size: 14px; }
  .copy-btn {
    width: 40px; height: 40px; min-width: 40px; min-height: 40px;
    font-size: 16px; margin-left: 6px;
  }
  .guarantee-box { padding: 14px 16px; margin-bottom: 12px; }
  .guarantee-title { font-size: 13px; }
  .guarantee-list li { font-size: 11.5px; }
  .toast { bottom: 24px; font-size: 13px; padding: 11px 24px; }
}

@media (max-width: 360px) {
  .domain-name { font-size: 26px; }
  .value-list { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .advantages { flex-wrap: wrap; }
  .adv-item { min-width: calc(50% - 4px); }
}

@media (min-width: 1081px) and (max-height: 700px) {
  .domain-card { min-height: auto; height: auto; }
  body { align-items: flex-start; overflow-y: auto; }
}

@media (max-width: 1080px) {
  .domain-card ::-webkit-scrollbar { display: none; width: auto; height: auto; }
  @supports (scrollbar-width: thin) {
    .domain-card * { scrollbar-width: auto; scrollbar-color: auto; }
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  body::before, .sparkle { display: none; }
}
