/* Layout Styles
-------------------------------------------------- */
.main-container {
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(145, 184, 222, 0.35);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  margin: 22px auto;
  max-width: 1240px;
  padding: 22px;
}

.page-status {
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  margin: 14px auto 0;
  max-width: 1240px;
  opacity: 0;
  padding: 0 20px;
  transition: opacity var(--transition-quick), padding var(--transition-quick);
}

.page-status.visible {
  opacity: 1;
  padding: 10px 16px;
}

.page-status.status-loading {
  background: #edf5ff;
  border: 1px solid #c5ddfb;
  color: #205487;
}

.page-status.status-success {
  background: #eaf9ee;
  border: 1px solid #bde2c8;
  color: #2f6f48;
}

.page-status.status-error {
  background: #fff2f2;
  border: 1px solid #f0c0c0;
  color: #9f2d2d;
}

.section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(250, 253, 255, 0.86) 100%);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--spacing-lg);
  padding: 18px;
}

.section-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--spacing-md);
}

.section h2 {
  color: var(--header-bg);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding-left: 10px;
  position: relative;
}

.section h2::before {
  background: linear-gradient(180deg, #4793ff 0%, #61d4ff 100%);
  border-radius: 99px;
  content: '';
  height: 18px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 4px;
}

.update-time {
  background: rgba(73, 125, 189, 0.1);
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
}
