/* ============================================
   墨白工作站 · 驾驶舱首页入口样式
   ============================================ */

/* 重新导向页面样式 */
.redirect-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1035 50%, #0d1b2a 100%);
  color: #e8eaf6;
  font-family: system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  text-align: center;
  padding: 40px;
}

.rocket-icon {
  font-size: 80px;
  margin-bottom: 24px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.rocket-title {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #6fc4e8, #b388ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.rocket-subtitle {
  font-size: 18px;
  color: #9e9eb8;
  margin-bottom: 40px;
}

.rocket-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #6fc4e8, #5ba8d4);
  color: #0a0a1a;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(111, 196, 232, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 40px;
}

.rocket-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(111, 196, 232, 0.5);
}

.rocket-features {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.feature-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 24px;
  min-width: 180px;
}

.feature-item .icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.feature-item .name {
  font-size: 15px;
  font-weight: 500;
  color: #e8eaf6;
}

.footer {
  margin-top: auto;
  padding-top: 40px;
  font-size: 13px;
  color: #6e6e8a;
}

/* 星空 */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.star {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}
