/* public/status/block.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;
}

/* 渐变背景样式：宁静的绿色调 */
.gradient-background {
  background: linear-gradient(135deg, #f89e04 0%, #0acaec 100%); 
}

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

/* 插图样式 */
.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, 3rem); /* 响应式字体大小 */
  font-weight: 700;
  color: #1a5d45; /* 深森林绿 */
  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;
}

/* 描述文本样式 */
.status-description {
  max-width: 500px;
  color: #3e6052; /* 柔和的深绿灰色 */
  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-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  /* 按钮渐变：充满活力的绿色 */
  background-image: linear-gradient(to right, #28a745 0%, #4CAF50 51%, #28a745 100%);
  background-size: 200% auto;
  border: none;
  border-radius: 9999px; 
  text-decoration: none;
  cursor: pointer;
  /* 按钮阴影：与绿色调匹配 */
  box-shadow: 0 4px 15px 0 rgba(40, 167, 69, 0.3);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.status-button:hover {
  background-position: right center; 
  /* 按钮悬停阴影：与绿色调匹配 */
  box-shadow: 0 6px 20px 0 rgba(40, 167, 69, 0.4);
  transform: translateY(-2px);
}

.status-button i {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
}

.status-button:hover i {
  transform: translateX(-3px);
}

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

/* 404页面特定的动画：悬浮效果 */
.float-animation {
  animation: float 6s ease-in-out infinite;
}

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

/* 未完成页面特定的动画：施工效果 */
.build-animation {
  animation: build 2s ease-in-out infinite alternate;
}

@keyframes build {
  from { transform: rotate(-3deg) scale(1); }
  to { transform: rotate(3deg) scale(1.02); }
}


/* 继续优化后的新内容，颜色调整以匹配绿色主题 */

.status-additional-info {
  margin-top: 25px;
  color: #3e6052; /* 调整为与描述文本一致的深绿灰色，在浅背景上更易读 */
  font-size: 0.95em;
  line-height: 1.6;
  text-align: left;
}

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

.status-additional-info ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

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

.status-additional-info li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #28a745; /* 绿色箭头，与主按钮色调一致 */
  font-weight: bold;
  font-size: 1.1em;
}

.status-additional-info a {
  color: #1a5d45; /* 调整为与标题一致的深森林绿 */
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.status-additional-info a:hover {
  color: #28a745; /* 悬停时更亮的绿色，与主按钮悬停色一致 */
  text-decoration: underline;
}

.status-explore-more {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px dashed rgba(40, 167, 69, 0.2); /* 虚线分隔符，使用绿色透明版本 */
  text-align: center;
  color: #3e6052; /* 调整为与描述文本一致的深绿灰色 */
}

.status-explore-more p {
  margin-bottom: 20px;
  font-size: 1.05em;
  font-weight: 500;
}

.explore-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.status-small-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  /* 小按钮背景：更透明的绿色 */
  background-color: rgba(40, 167, 69, 0.05); 
  color: #28a745; /* 小按钮文字：绿色 */
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9em;
  font-weight: 600;
  transition: all 0.3s ease;
  -webkit-backdrop-filter: blur(8px); /* Safari support */
  backdrop-filter: blur(8px);
  border: 1px solid rgba(1, 251, 59, 0.15); /* 边框：透明的绿色 */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.status-small-button:hover {
  background-color: rgba(40, 167, 69, 0.1); /* 悬停背景：更明显的透明绿色 */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.status-small-button i {
  margin-right: 8px;
  font-size: 1.1em;
}

@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: #778a7f; /* 调整为柔和的灰绿色 */
  font-size: 0.85em;
  padding: 30px 0 20px;
  line-height: 1.8;
}

.status-footer p {
  margin: 0;
}

.status-footer a {
  color: #1a5d45; /* 调整为与标题一致的深森林绿 */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.2s ease-in-out;
}

.status-footer a:hover {
  text-decoration: underline;
  color: #28a745; /* 悬停颜色：更亮的绿色 */
}