/* public/status/status.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  overflow-x: hidden;
}

/* 超现代渐变背景 */
.gradient-background {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  background-size: 400% 400%;
  animation: backgroundAnimation 15s ease infinite;
}

@keyframes backgroundAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* 主容器样式 */
.status-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem;
  text-align: center;
  color: #fff;
}

/* 插图样式 */
.status-illustration {
  max-width: 320px;
  width: 100%;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 标题样式 */
.status-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #E0E0E0;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  text-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
}

/* 描述文本样式 */
.status-description {
  max-width: 600px;
  color: #B0B0B0;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* 信息列表样式 */
.status-additional-info {
  margin-top: 25px;
  color: #B0B0B0;
  font-size: 0.95em;
  line-height: 1.6;
  text-align: center;
}

.status-additional-info p {
  margin-bottom: 10px;
  font-weight: 500;
}

.status-additional-info ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 500px;
}

.status-additional-info li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 0;
}

.status-additional-info li::before {
  display: none;
}

.status-additional-info a {
  color: #00bcd4;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.status-additional-info a:hover {
  color: #4dd0e1;
  text-decoration: underline;
}

/* 探索按钮组 */
.explore-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.status-small-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  border-radius: 15px;
  font-size: 1em;
  font-weight: 600;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(12px); /* For Safari */
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-width: 180px;
  text-shadow: 0 0 5px rgba(0,0,0,0.3);
}

.status-small-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
}

.status-small-button i {
  margin-bottom: 10px;
  font-size: 2.2em;
  color: #00bcd4;
  transition: color 0.3s ease;
}

.status-small-button:hover i {
  color: #4dd0e1;
}

/* 动画效果 */
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

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

@media (max-width: 600px) {
  .explore-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .status-small-button {
    width: auto;
    max-width: 250px;
    margin: 0 auto;
  }
}

/* 底部样式 */
.status-footer {
  margin-top: 50px;
  text-align: center;
  color: #909090;
  font-size: 0.85em;
  padding: 30px 0 20px;
  line-height: 1.8;
}

.status-footer p {
  margin: 0;
}

.status-footer a {
  color: #E0E0E0;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease-in-out;
}

.status-footer a:hover {
  text-decoration: underline;
  color: #FFFFFF;
}