body {
  background: linear-gradient(216deg, #f0f7ff 1%, #fff 62%);
  min-height: 100vh;
  color: #101828;
  position: relative;
  overflow-x: hidden;
  padding-bottom: 72px;
}

/* Background Animation Layers */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(circle 360px at var(--orb1-x, 18%) var(--orb1-y, 28%), rgba(59, 130, 246, 0.16) 0%, rgba(59, 130, 246, 0.13) 22%, rgba(59, 130, 246, 0.08) 44%, rgba(59, 130, 246, 0.04) 62%, rgba(59, 130, 246, 0.015) 78%, rgba(59, 130, 246, 0) 100%);
  animation: circularMotion1 15s ease-in-out var(--orb-delay-motion1, 0s) infinite, glowBreath1 6.5s ease-in-out var(--orb-delay-glow1, 0s) infinite;
  animation-play-state: paused;
}

body::after {
  background:
    radial-gradient(circle 290px at var(--orb2a-x, 78%) var(--orb2a-y, 26%), rgba(139, 92, 246, 0.13) 0%, rgba(139, 92, 246, 0.1) 20%, rgba(139, 92, 246, 0.06) 42%, rgba(139, 92, 246, 0.028) 62%, rgba(139, 92, 246, 0.01) 80%, rgba(139, 92, 246, 0) 100%),
    radial-gradient(circle 230px at var(--orb2b-x, 72%) var(--orb2b-y, 72%), rgba(251, 191, 36, 0.11) 0%, rgba(251, 191, 36, 0.08) 20%, rgba(251, 191, 36, 0.045) 44%, rgba(251, 191, 36, 0.02) 64%, rgba(251, 191, 36, 0.008) 82%, rgba(251, 191, 36, 0) 100%);
  animation: circularMotion2 20s ease-in-out var(--orb-delay-motion2, 0s) infinite, glowBreath2 7.8s ease-in-out var(--orb-delay-glow2, 0s) infinite;
  animation-play-state: paused;
}

/* Background animated orb layer */
.bg-orb-layer {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle 250px at var(--orb3-x, 24%) var(--orb3-y, 74%), rgba(16, 185, 129, 0.13) 0%, rgba(16, 185, 129, 0.1) 22%, rgba(16, 185, 129, 0.055) 46%, rgba(16, 185, 129, 0.024) 66%, rgba(16, 185, 129, 0.009) 84%, rgba(16, 185, 129, 0) 100%);
  animation: circularMotion3 18s ease-in-out var(--orb-delay-motion3, 0s) infinite, glowBreath3 6.9s ease-in-out var(--orb-delay-glow3, 0s) infinite;
  animation-play-state: paused;
}

/* Keep same glow scene and only pause/resume motion */
body.bg-animated::before,
body.bg-animated::after,
body.bg-animated .bg-orb-layer {
  animation-play-state: running;
}

/* Background Animation Keyframes - Circular Motion */
@keyframes circularMotion1 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10vw, 5vh);
  }
  50% {
    transform: translate(12vw, 16vh);
  }
  75% {
    transform: translate(-4vw, 12vh);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes circularMotion2 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-10vw, 6vh);
  }
  50% {
    transform: translate(-6vw, -10vh);
  }
  75% {
    transform: translate(4vw, -4vh);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes circularMotion3 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(9vw, -8vh);
  }
  50% {
    transform: translate(14vw, -16vh);
  }
  75% {
    transform: translate(-3vw, -10vh);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes glowBreath1 {
  0%,
  100% {
    opacity: 0.82;
    filter: blur(24px) saturate(0.94) brightness(0.96);
  }
  50% {
    opacity: 1;
    filter: blur(36px) saturate(1.15) brightness(1.12);
  }
}

@keyframes glowBreath2 {
  0%,
  100% {
    opacity: 0.76;
    filter: blur(22px) saturate(0.9) brightness(0.94);
  }
  50% {
    opacity: 0.97;
    filter: blur(34px) saturate(1.18) brightness(1.1);
  }
}

@keyframes glowBreath3 {
  0%,
  100% {
    opacity: 0.8;
    filter: blur(24px) saturate(0.92) brightness(0.95);
  }
  50% {
    opacity: 1;
    filter: blur(38px) saturate(1.2) brightness(1.13);
  }
}

body img {
  pointer-events: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
}

/* Background Animation Toggle */
.bg-animation-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 149, 246, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0, 149, 246, 0.2);
  transition: all 0.3s ease;
}

.bg-animation-toggle::before {
  content: '';
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.16);
  transition: all 0.25s ease;
}

.bg-animation-toggle:not(.active)::before {
  background: #94a3b8;
  box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.14);
}

.bg-animation-toggle:not(.active)::after {
  content: '';
  position: absolute;
  width: 32px;
  height: 2.5px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.9);
  transform: rotate(-35deg);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.35);
}

.bg-animation-toggle:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px 0 rgba(0, 149, 246, 0.3);
}

.bg-animation-toggle:active {
  transform: scale(0.95);
}

.bg-animation-toggle-icon {
  width: 30px;
  height: 30px;
  transition: transform 0.25s ease, color 0.25s ease, opacity 0.25s ease;
  color: #0284c7;
  stroke-width: 2.6;
  filter: drop-shadow(0 0 3px rgba(2, 132, 199, 0.35));
}

.bg-animation-toggle.active .bg-animation-toggle-icon {
  animation: pulse 1.8s ease-in-out infinite;
}

.bg-animation-toggle:not(.active) .bg-animation-toggle-icon {
  color: #64748b;
  opacity: 0.92;
  transform: scale(0.94);
  filter: none;
}

.bg-animation-toast {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 9998;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.2;
  color: #0b4a7a;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 149, 246, 0.25);
  box-shadow: 0 10px 30px rgba(0, 149, 246, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bg-animation-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.95;
  }
}

/* 主容器 */
.container {
  padding: 0 16px 80px;
  animation: fadeInUp 0.6s ease;
  max-width: 1200px;
  margin: 0 auto;
}

/* 授权卡片 */
.activation-card {
  position: relative;
  margin: 40px auto 12px;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 40px 32px 32px;
  text-align: center;
}

.card-title {
  font-weight: 600;
  font-size: 24px;
  color: #101828;
  line-height: 32px;
  text-align: center;
  margin-bottom: 32px;
}

.entry-intro {
  margin: -12px 0 24px;
  font-size: 14px;
  line-height: 22px;
  color: #475467;
  text-align: left;
}

.entry-hint {
  font-size: 12px;
  line-height: 18px;
  color: #667085;
  margin-top: 8px;
}

/* 软件信息区域 */
.software-wrapper {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.software-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.software-icon img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.software-name {
  font-weight: 600;
  font-size: 16px;
  color: #101828;
  line-height: 24px;
  text-align: center;
}

.software-dev {
  margin-top: 4px;
  font-size: 14px;
  color: #475467;
  line-height: 22px;
  text-align: center;
  font-weight: 400;
}

/* 信息网格 */
.info-grid {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.info-item {
  background: rgba(249, 250, 251, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 12px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  text-align: left;
  animation: fadeInScale 0.5s ease backwards;
}

.info-item:nth-child(1) { animation-delay: 0.1s; }
.info-item:nth-child(2) { animation-delay: 0.15s; }
.info-item:nth-child(3) { animation-delay: 0.2s; }
.info-item:nth-child(4) { animation-delay: 0.25s; }

.info-label {
  font-size: 13px;
  color: #475467;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 4px;
}

.info-value {
  font-size: 15px;
  font-weight: 600;
  color: #101828;
  line-height: 22px;
}

/* 表单 */
.form-group {
  margin-bottom: 16px;
  text-align: left;
}

/* 两列表单组 */
.form-group-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.form-group-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #101828;
  margin-bottom: 8px;
}

input[type="email"],
input[type="text"] {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d8e4f2;
  border-radius: 8px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  color: #101828;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

input[type="email"]:focus,
input[type="text"]:focus {
  outline: none;
  border-color: #0095f6;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05), 0 0 0 3px rgba(0, 149, 246, 0.1);
}

input[type="email"]::placeholder,
input[type="text"]::placeholder {
  color: #98a2b3;
}

input[type="email"].error,
input[type="text"].error {
  border-color: #f04438;
}

.error-text {
  font-size: 13px;
  color: #f04438;
  margin-top: 6px;
  display: none;
}

.error-text.show {
  display: block;
}

.hint-text {
  font-size: 12px;
  color: #666666;
  margin-top: 6px;
  line-height: 1.5;
}

.email-opt-in-group {
  margin-bottom: 16px;
}

.email-opt-in-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  cursor: pointer;
  user-select: none;
}

.email-opt-in-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #0095f6;
  cursor: pointer;
}

.email-opt-in-text {
  font-size: 14px;
  line-height: 20px;
  color: #344054;
}

.email-opt-in-warning {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 18px;
  color: #f04438;
  width: 100%;
  min-width: 0;
  white-space: normal;
}

.email-opt-in-warning-icon {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  display: inline-block;
  color: currentColor;
  transform: translateY(2px);
}

.email-opt-in-warning span {
  flex: 1 1 auto;
  min-width: 0;
  white-space: normal;
  word-break: break-word;
}

/* 按钮 */
.btn-submit {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(0, 149, 246, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 25px;
  border: 1px solid rgba(0, 149, 246, 0.6);
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3), 0 8px 32px 0 rgba(0, 149, 246, 0.35);
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover:not(:disabled) {
  border: 1px solid rgba(83, 177, 253, 0.7);
  background: rgba(83, 177, 253, 0.85);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.4), 0 8px 32px 0 rgba(83, 177, 253, 0.45);
}

.btn-submit:active:not(:disabled) {
  border: 1px solid rgba(21, 123, 239, 0.55);
  background: rgba(21, 123, 239, 0.8);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), 0 4px 16px 0 rgba(21, 123, 239, 0.3);
}

.btn-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-submit.loading {
  gap: 10px;
}

.btn-submit.loading::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  flex: 0 0 auto;
  animation: spin 0.6s linear infinite;
}

/* 提示卡片 */
.info-card {
  background: rgba(249, 250, 251, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 20px;
  display: flex;
  flex-direction: column;
  margin: 12px auto 16px;
  max-width: 700px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
  animation: fadeInUp 0.6s ease 0.2s backwards;
}

.info-card .line-1 {
  display: flex;
  align-items: center;
}

.info-card .line-1-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.info-card .line-1-icon img {
  width: 20px;
  height: 20px;
}

.info-card .line-1-txt {
  font-weight: 600;
  font-size: 16px;
  color: #101828;
  line-height: 24px;
  text-align: left;
}

.info-card .line-2 {
  margin-top: 12px;
  font-weight: 400;
  font-size: 14px;
  color: #475467;
  line-height: 22px;
  text-align: left;
}

/* 模态框 */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 24px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  animation: scaleIn 0.3s ease;
}

.modal-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #101828;
}

.modal-text {
  font-size: 14px;
  color: #475467;
  margin-bottom: 20px;
  line-height: 22px;
}

.modal-btn {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(0, 149, 246, 0.4);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.9);
  color: #0095f6;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(0, 149, 246, 0.15);
}

.modal-btn:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 149, 246, 0.6);
  box-shadow: 0 6px 16px rgba(0, 149, 246, 0.25);
}

/* 动画 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* 夜间模式 */
@media (prefers-color-scheme: dark) {
  .bg-animation-toggle {
    background: rgba(15, 23, 42, 0.82);
    border: 1px solid rgba(56, 189, 248, 0.35);
    box-shadow: 0 8px 32px 0 rgba(2, 132, 199, 0.28);
  }

  .bg-animation-toggle:hover {
    box-shadow: 0 12px 48px 0 rgba(56, 189, 248, 0.32);
  }

  .bg-animation-toggle-icon {
    color: #7dd3fc;
    filter: drop-shadow(0 0 4px rgba(125, 211, 252, 0.3));
  }

  .bg-animation-toggle:not(.active)::before {
    background: #64748b;
    box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.22);
  }

  .bg-animation-toggle:not(.active)::after {
    background: rgba(248, 113, 113, 0.95);
    box-shadow: 0 0 10px rgba(248, 113, 113, 0.35);
  }

  .bg-animation-toast {
    color: #cfefff;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(56, 189, 248, 0.35);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.3);
  }

  body {
    background:
      radial-gradient(1200px 600px at 10% -10%, rgba(14, 116, 144, 0.35) 0%, rgba(14, 116, 144, 0) 60%),
      radial-gradient(900px 600px at 90% 10%, rgba(30, 64, 175, 0.35) 0%, rgba(30, 64, 175, 0) 55%),
      linear-gradient(180deg, #0b1020 0%, #0f172a 50%, #0b1020 100%);
    color: #e5e7eb;
  }

  .nav-title,
  .card-title,
  label,
  .software-name,
  .info-value,
  .info-card .line-1-txt,
  .modal-title {
    color: #e5e7eb;
  }

  .entry-intro,
  .entry-hint {
    color: #9ca3af;
  }

  .email-opt-in-text {
    color: #e5e7eb;
  }

  .software-dev,
  .info-label,
  .info-card .line-2,
  .modal-text,
  .site-footer {
    color: #9ca3af;
  }

  .activation-card,
  .info-card,
  .info-item,
  .modal-content {
    background: rgba(17, 24, 39, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
  }

  input[type="email"],
  input[type="text"] {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.25);
    color: #f9fafb;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35);
  }

  input[type="email"]::placeholder,
  input[type="text"]::placeholder {
    color: #94a3b8;
  }

  input[type="email"]:focus,
  input[type="text"]:focus {
    border-color: #38bdf8;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.35), 0 0 0 3px rgba(56, 189, 248, 0.2);
  }

  .btn-submit {
    background: rgba(14, 165, 233, 0.9);
    border: 1px solid rgba(14, 165, 233, 0.7);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), 0 8px 32px 0 rgba(14, 165, 233, 0.3);
  }

  .btn-submit:hover:not(:disabled) {
    background: rgba(56, 189, 248, 0.95);
    border: 1px solid rgba(56, 189, 248, 0.8);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2), 0 8px 32px 0 rgba(56, 189, 248, 0.4);
  }

  .btn-submit:active:not(:disabled) {
    background: rgba(2, 132, 199, 0.9);
    border: 1px solid rgba(2, 132, 199, 0.7);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 4px 16px 0 rgba(2, 132, 199, 0.35);
  }

  .modal {
    background: rgba(0, 0, 0, 0.6);
  }

  .modal-btn {
    background: rgba(15, 23, 42, 0.95);
    color: #7dd3fc;
    border: 1px solid rgba(125, 211, 252, 0.35);
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  }

  .modal-btn:hover {
    background: rgba(30, 41, 59, 0.95);
    border-color: rgba(125, 211, 252, 0.55);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
  }

  .site-footer {
    color: #9ca3af;
  }
}

/* 响应式 */
@media (min-width: 768px) {
  .container {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ============ 软件信息展示 - 液态玻璃质感 ============ */
.software-info {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 14px 20px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1.5px solid rgba(0, 149, 246, 0.25);
  box-shadow: 
    0 8px 32px rgba(0, 149, 246, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.software-info:hover {
  border-color: rgba(0, 149, 246, 0.4);
  box-shadow: 
    0 12px 40px rgba(0, 149, 246, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(0, 0, 0, 0.02);
  background: rgba(255, 255, 255, 0.6);
}

.software-info-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 15px;
  line-height: 1.4;
}

.order-info-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
  font-size: 15px;
  line-height: 1.4;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(0, 149, 246, 0.25);
}

.software-label {
  font-weight: 600;
  color: #0095f6;
  font-size: 18px;
  margin-right: 4px;
  flex-shrink: 0;
}

.software-label-text {
  font-weight: 500;
  color: #666;
  font-size: 13px;
  flex-shrink: 0;
}

.software-name {
  font-weight: 700;
  color: #0095f6;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.order-number {
  font-weight: 700;
  color: #0095f6;
  font-size: 15px;
  letter-spacing: 0.2px;
  word-break: break-all;
}

/* 深色模式 */
@media (prefers-color-scheme: dark) {
  .software-info {
    background: rgba(30, 41, 59, 0.4);
    border-color: rgba(0, 149, 246, 0.2);
    box-shadow: 
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  }

  .software-info:hover {
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(0, 149, 246, 0.3);
    box-shadow: 
      0 12px 40px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  }

  .software-info-content {
    color: #aaa;
  }

  .order-info-content {
    color: #aaa;
    border-top-color: rgba(59, 130, 246, 0.35);
  }

  .software-label-text {
    color: #aaa;
  }

  .software-name {
    color: #60a5fa;
  }

  .order-number {
    color: #60a5fa;
  }
}

/* ============ Boom 3D 认证选择界面样式 ============ */
#boom3d-choice-group {
  margin-bottom: 16px;
}

#boom3d-choice-group .boom3d-choice-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #101828;
  margin-bottom: 8px;
  text-align: left;
}

.choice-radios {
  display: flex;
  gap: 24px;
  margin-bottom: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.choice-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: #101828;
  user-select: none;
  padding: 0;
  border: none;
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: none;
  flex: 1;
}

.choice-label:hover {
  color: #0095f6;
}

.choice-radio {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #d0d5dd;
  border-radius: 50%;
  cursor: pointer;
  background: white;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.choice-radio:hover {
  border-color: #0095f6;
  box-shadow: 0 0 0 3px rgba(0, 149, 246, 0.1);
}

.choice-radio:checked {
  border-color: #0095f6;
  background: #0095f6;
  box-shadow: inset 0 0 0 2px white, 0 0 0 3px #0095f6;
}

.choice-label input[type="radio"]:checked + .choice-text {
  color: #0095f6;
  font-weight: 500;
}

.choice-text {
  transition: color 0.2s ease;
}

.boom3d-form-section {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 深色模式 */
@media (prefers-color-scheme: dark) {
  #boom3d-choice-group .boom3d-choice-label {
    color: #e5e7eb;
  }

  .choice-label {
    color: #e5e7eb;
  }

  .choice-label:hover {
    color: #38bdf8;
  }

  .choice-radio {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(148, 163, 184, 0.35);
  }

  .choice-radio:hover {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.15);
  }

  .choice-radio:checked {
    border-color: #38bdf8;
    background: #38bdf8;
    box-shadow: inset 0 0 0 2px rgba(15, 23, 42, 0.8), 0 0 0 3px #38bdf8;
  }

  .choice-label input[type="radio"]:checked + .choice-text {
    color: #38bdf8;
  }
}
