/* 草棚统一风格 - 人类世界模拟引擎 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: linear-gradient(160deg, #0f0c29, #1a1a4e, #24243e);
  color: #e0daf0;
  font-family: "Microsoft YaHei", "PingFang SC", sans-serif;
  overflow-x: hidden;
}

/* 布局容器 */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}

/* 毛玻璃卡片 */
.card {
  padding: 24px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}
.card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
}

/* 标题 */
.page-title {
  text-align: center;
  font-weight: 300;
  letter-spacing: 8px;
  font-size: 32px;
  padding: 40px 0 10px;
  color: #e0daf0;
}
.page-subtitle {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 30px;
}

/* 按钮基类 */
button, .btn {
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  color: #e0daf0;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: 0.25s;
  letter-spacing: 1px;
}
button:hover, .btn:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}
button:active {
  transform: translateY(0);
}

/* 金色强调 */
.gold {
  color: #ffd700;
}
.gold-border {
  border-color: rgba(255,215,0,0.3);
}

/* 页脚 */
.footer {
  text-align: center;
  padding: 30px 0;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  letter-spacing: 2px;
}

/* 状态色 */
.status-ok { color: #4ade80; }
.status-idle { color: #facc15; }
.status-away { color: #f87171; }

/* 加载动画 */
.loading-dots::after {
  content: '';
  animation: dots 1.5s steps(4, end) infinite;
}
@keyframes dots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
}

/* 工具类 */
.text-center { text-align: center; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-10 { gap: 10px; }
.gap-15 { gap: 15px; }
