/* MuMu の API - 紫色渐变风格 */

.mumu-purple-theme {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  min-height: 100vh;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #fff;
}

/* 模糊球背景 */
.blur-balls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.blur-ball-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #a855f7, #9333ea);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 15s ease-in-out infinite;
}

.blur-ball-2 {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 50px); }
}

/* 内容容器 */
.content-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 60px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* 标题样式 */
.content-container h1 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  text-align: center !important;
  background: linear-gradient(135deg, #a855f7, #9333ea) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  margin-bottom: 10px !important;
  text-shadow: 0 0 30px rgba(168, 85, 247, 0.5) !important;
}

.content-container h2 {
  font-size: 1.2rem !important;
  text-align: center !important;
  color: #00ffff !important;
  margin-bottom: 40px !important;
  font-family: "Courier New", monospace !important;
}

/* 状态行 */
.status-lines p {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #a855f7;
  font-family: "Courier New", monospace;
}

/* 欢迎文字 */
.welcome {
  margin: 40px 0;
  line-height: 1.8;
  color: #e2e8f0;
  font-size: 1.1rem;
}

/* CTA 按钮 */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #a855f7, #9333ea);
  color: white !important;
  padding: 18px 48px;
  border-radius: 9999px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(168, 85, 247, 0.6);
}

/* 底部 */
.footer {
  margin-top: 60px;
  text-align: center;
  opacity: 0.6;
  font-size: 0.9rem;
  color: #94a3b8;
}
