/* CSS 文件分离 */
:root {
  --bg: #0f1724;
  --card: #0b1220;
  --accent: #60a5fa;
  --muted: #94a3b8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("https://xn--12wt29b1zm.xn--fiqs8s/main.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #e6eef8;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, 'Noto Sans CJK SC', "Helvetica Neue", Arial;
  position: relative;
  overflow-x: hidden;
}

#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.wrap {
  width: min(920px, 94vw);
  padding: 28px;
  border-radius: 14px;
  background: rgba(11, 18, 32, 0.3);
  box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .6s ease, transform .6s ease;
}

.wrap.visible {
  opacity: 1;
  transform: none;
}

h1 {
  margin: 0 0 8px;
  font-size: clamp(20px, 4vw, 34px);
  letter-spacing: 1px;
  color: #E98330;
}

p.subtitle {
  margin: 0 0 20px;
  color: #DA9258;
}

.countdown {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 120px;
  background: rgba(11, 18, 32, 0.5);
  padding: 18px;
  border-radius: 10px;
  min-width: 105px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.45);
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.55);
}

.value {
  font-size: clamp(20px, 4.5vw, 34px);
  font-weight: 700;
  color: #FA7000;
  text-align: center;
  display: inline-block;
  min-width: 1em;
}

/* 将内联样式移动到外部 CSS 文件 */
#myPendingContainer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h4.pending-title {
  margin: 6px 0;
  color: #E98330;
}

.pending-container {
  margin-top: 12px;
}