.dashboard-page {
  max-width: 1180px;
  padding-top: 7rem;
  position: relative;
}

/* ==================== 
   第一部分：Hero 区域（标题 + 图标 + 下载）
   ==================== */
.hero-section {
  margin-bottom: 2rem;
}

.hero-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 0.9rem;
}

.app-icon-wrapper {
  flex-shrink: 0;
  width: 96px;
  height: 96px;
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 8px 32px rgba(2, 6, 23, 0.4), 0 0 24px rgba(56, 189, 248, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
}

.app-icon-wrapper:hover {
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.5);
  border-color: rgba(148, 163, 184, 0.35);
}

.app-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.12);
}

.hero-lead {
  font-size: 0.95rem;
  color: rgba(203, 213, 225, 0.9);
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.hero-link {
  color: #7dd3fc;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed rgba(56, 189, 248, 0.5);
  transition: all 0.3s ease;
}

.hero-link:hover {
  color: #bae6fd;
  border-bottom-color: rgba(148, 163, 184, 0.5);
}

.hero-tags-wrapper {
  margin-bottom: 1.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-tag {
  font-size: 0.78rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.45);
  color: rgba(226, 232, 240, 0.95);
  background: rgba(99, 102, 241, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-tag:hover {
  border-color: rgba(148, 163, 184, 0.35);
  background: rgba(99, 102, 241, 0.25);
}

/* 下载区域样式 */
.download-section {
  margin-top: 0;
}

.qq-support {
  margin-top: 1rem;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(2, 132, 199, 0.05));
  border: 1px solid rgba(56, 189, 248, 0.2);
  text-align: center;
}

.qq-support .support-icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
  display: block;
}

.qq-support .support-content {
  display: block;
}

.qq-support .support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7dd3fc;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  transition: all 0.3s ease;
}

.qq-support .support-link:hover {
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.2);
  border-color: rgba(148, 163, 184, 0.35);
}

.qq-container {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(2, 132, 199, 0.08));
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.qq-support-large {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.5rem;
}

.qq-support-large .support-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
}

.qq-support-large .support-content {
  flex: 1;
  text-align: left;
}

.qq-support-large .support-content h3 {
  color: #f8fafc;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.qq-support-large .support-content p {
  color: rgba(203, 213, 225, 0.85);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.qq-support-large .support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #f0f9ff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(2, 132, 199, 0.2));
  border: 1px solid rgba(56, 189, 248, 0.5);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(56, 189, 248, 0.15);
}

.qq-support-large .support-link:hover {
  color: #ffffff;
  background: rgba(56, 189, 248, 0.35);
  border-color: rgba(148, 163, 184, 0.35);
}

.qq-support-card {
  border-radius: 18px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: transparent;
  padding: 1.4rem 1.5rem;
  backdrop-filter: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.qq-support-card:hover {
  border-color: rgba(148, 163, 184, 0.35);
  background: transparent;
}

.qq-support-card .support-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.qq-support-card .support-content {
  flex: 1;
  text-align: left;
}

.qq-support-card .support-content h3 {
  color: #f8fafc;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.qq-support-card .support-content p {
  color: rgba(203, 213, 225, 0.8);
  font-size: 0.82rem;
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.qq-support-card .support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #f0f9ff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(2, 132, 199, 0.18));
  border: 1px solid rgba(56, 189, 248, 0.45);
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(56, 189, 248, 0.12);
}

.qq-support-card .support-link:hover {
  color: #ffffff;
  background: rgba(56, 189, 248, 0.35);
  border-color: rgba(148, 163, 184, 0.35);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.platform-btn {
  border: 1px solid rgba(148, 163, 184, 0.26);
  background: transparent;
  border-radius: 12px;
  text-decoration: none;
  color: #f8fafc;
  padding: 1rem 0.8rem;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: none;
  position: relative;
  overflow: hidden;
}

.platform-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.platform-btn:hover::after {
  opacity: 1;
}

.platform-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.platform-icon-img {
  width: 28px;
  height: 28px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-btn:hover .platform-icon-wrap {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.platform-btn:hover .platform-icon-img {
  transform: scale(1.12);
}

.platform-main {
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.platform-btn:hover {
  border-color: rgba(148, 163, 184, 0.35);
  background: transparent;
}

.platform-primary {
  border-color: rgba(251, 146, 60, 0.35);
  background: linear-gradient(150deg, rgba(234, 88, 12, 0.08), rgba(15, 23, 42, 0.12));
  box-shadow: 0 0 12px rgba(251, 146, 60, 0.08);
}

.platform-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.03), transparent);
  pointer-events: none;
}

.platform-primary .platform-icon-wrap {
  border-color: rgba(251, 146, 60, 0.35);
  background: linear-gradient(135deg, rgba(124, 45, 18, 0.3), rgba(234, 88, 12, 0.05));
  box-shadow: 0 0 8px rgba(251, 146, 60, 0.1);
}

.platform-primary:hover {
  border-color: rgba(251, 146, 60, 0.5);
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.12), rgba(15, 23, 42, 0.3));
  box-shadow: 0 12px 32px rgba(234, 88, 12, 0.15), 0 0 20px rgba(251, 146, 60, 0.12);
}

.platform-primary:hover .platform-icon-wrap {
  border-color: rgba(251, 146, 60, 0.6);
  background: linear-gradient(135deg, rgba(124, 45, 18, 0.5), rgba(234, 88, 12, 0.15));
  box-shadow: 0 0 16px rgba(251, 146, 60, 0.25);
}

.platform-primary:hover .platform-icon-img {
  transform: scale(1.12);
}

.platform-web {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(150deg, rgba(2, 132, 199, 0.08), rgba(15, 23, 42, 0.12));
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.08);
}

.platform-web::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.03), transparent);
  pointer-events: none;
}

.platform-web .platform-icon-wrap {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.6), rgba(2, 132, 199, 0.08));
  box-shadow: 0 0 8px rgba(56, 189, 248, 0.1);
}

.platform-web:hover {
  border-color: rgba(56, 189, 248, 0.5);
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(15, 23, 42, 0.3));
  box-shadow: 0 12px 32px rgba(2, 132, 199, 0.15), 0 0 20px rgba(56, 189, 248, 0.12);
}

.platform-web:hover .platform-icon-wrap {
  border-color: rgba(56, 189, 248, 0.6);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(2, 132, 199, 0.2));
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.25);
}

.platform-web:hover .platform-icon-img {
  transform: scale(1.12);
}

button.platform-btn {
  font: inherit;
  text-align: left;
}

.platform-disabled,
.platform-disabled:hover {
  cursor: not-allowed;
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.16);
  transform: none;
  opacity: 0.58;
}

.platform-disabled .platform-icon-wrap {
  border-color: rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.3);
}

.platform-disabled.platform-android {
  border-color: rgba(74, 222, 128, 0.3);
  background: linear-gradient(150deg, rgba(22, 163, 74, 0.1), rgba(15, 23, 42, 0.1));
}

.platform-disabled.platform-android .platform-icon-wrap {
  border-color: rgba(74, 222, 128, 0.35);
  background: linear-gradient(135deg, rgba(20, 83, 45, 0.3), rgba(22, 163, 74, 0.05));
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.1);
}

.platform-disabled.platform-ios {
  border-color: rgba(168, 85, 247, 0.3);
  background: linear-gradient(150deg, rgba(168, 85, 247, 0.1), rgba(15, 23, 42, 0.1));
}

.platform-disabled.platform-ios .platform-icon-wrap {
  border-color: rgba(168, 85, 247, 0.35);
  background: linear-gradient(135deg, rgba(88, 28, 135, 0.3), rgba(168, 85, 247, 0.05));
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.1);
}

/* ==================== 
   第二、三部分：内容区域通用样式
   ==================== */
.content-section {
  margin-bottom: 2rem;
}

.section-container {
  padding: 1.8rem;
  border-radius: 20px;
  background: linear-gradient(155deg, rgba(15, 23, 42, 0.6), rgba(30, 41, 59, 0.25));
  backdrop-filter: blur(14px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.35);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-container:hover {
  border-color: rgba(148, 163, 184, 0.35);
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 1.5rem;
  color: #f8fafc;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.12);
}

.section-header p {
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 720px;
}

/* ==================== 
   访问数据与下载整合卡片
   ==================== */
.access-metrics-card {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.metrics-section {
  padding-bottom: 1rem;
}

.metrics-grid-small {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.metric-card-small {
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 0.8rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.metric-card-small .metric-label {
  font-size: 0.85rem;
  color: rgba(186, 230, 253, 0.95);
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.metric-card-small .metric-label::before {
  content: '';
  font-size: 0;
}

.metric-card-small .metric-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f8fafc;
  font-family: 'JetBrains Mono', monospace;
  text-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
  line-height: 1.2;
}

.metric-card-small .metric-field {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.5);
  margin-top: 0.4rem;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}

/* ==================== 
   数据展示区域
   ==================== */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 1rem 0;
}

.metric-card {
  border-radius: 0;
  border: none;
  background: transparent;
  padding: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.metric-card:hover {
  transform: translateY(-4px);
}

.metric-label {
  font-size: 0.9rem;
  color: rgba(186, 230, 253, 0.95);
  margin-bottom: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.metric-label::before {
  content: '📊';
  font-size: 0.8rem;
}

.metric-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #f0f9ff;
  letter-spacing: 0.025em;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 0 35px rgba(14, 165, 233, 0.5);
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #7dd3fc, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-field {
  margin-top: 0.6rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: rgba(125, 211, 252, 0.9);
  opacity: 0.9;
  padding: 0.3rem 0.6rem;
  background: rgba(15, 23, 42, 0.4);
  border-radius: 6px;
  display: inline-block;
  border: 1px solid rgba(125, 211, 252, 0.2);
}

.metrics-note {
  margin-top: 1rem;
  margin-bottom: 0;
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.81rem;
  text-align: center;
  padding: 0.4rem 0;
  background: transparent;
  border: none;
}

.metrics-note i {
  color: rgba(56, 189, 248, 0.8);
}

/* ==================== 
   详细信息区域
   ==================== */
.details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
}

.details-main {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.details-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: transparent;
  padding: 1.6rem 1.7rem;
  backdrop-filter: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  border-color: rgba(148, 163, 184, 0.35);
}

.info-card:hover::before {
  opacity: 1;
}

.roadmap-card::before {
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.8), rgba(168, 85, 247, 0.2));
}

.roadmap-card:hover {
  border-color: rgba(148, 163, 184, 0.35);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.1rem;
}

.card-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(56, 189, 248, 0.8);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}

.roadmap-card .card-number {
  color: rgba(168, 85, 247, 0.8);
}

.card-header h3 {
  color: #f8fafc;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0;
}

.card-body {
  color: rgba(203, 213, 225, 0.9);
}

.card-body p {
  color: rgba(203, 213, 225, 0.9);
  line-height: 1.75;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
}

.card-body p:last-child {
  margin-bottom: 0;
}

.card-body .detail-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(203, 213, 225, 0.92);
}

.card-body .detail-list li {
  margin-bottom: 0.55rem;
  line-height: 1.68;
  font-size: 0.86rem;
  position: relative;
}

.card-body .detail-list li::marker {
  color: rgba(56, 189, 248, 0.7);
}

/* 侧边栏卡片 */
.highlight-card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: transparent;
  padding: 1.6rem 1.7rem;
  backdrop-filter: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.harmony-card {
  border-color: rgba(251, 146, 60, 0.25);
  background: transparent;
  box-shadow: none;
}

.harmony-card:hover {
  border-color: rgba(148, 163, 184, 0.35);
}

.harmony-card h3 {
  color: #ffedd5;
  text-shadow: 0 0 16px rgba(251, 146, 60, 0.25);
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.highlight-card h3 {
  color: #f8fafc;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.highlight-summary {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.79rem;
  margin-bottom: 0.9rem;
  font-style: italic;
}

.highlight-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(203, 213, 225, 0.92);
}

.highlight-list li {
  margin-bottom: 0.55rem;
  line-height: 1.68;
  font-size: 0.86rem;
  position: relative;
}

.highlight-list li::marker {
  color: rgba(251, 146, 60, 0.7);
}

/* 注意事项卡片 */
.note-card {
  border-radius: 18px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(15, 23, 42, 0.4));
  padding: 1.5rem 1.6rem;
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.note-card:hover {
  border-color: rgba(148, 163, 184, 0.35);
}

.note-icon {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
}

.note-card h3 {
  color: #f8fafc;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.note-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(203, 213, 225, 0.92);
}

.note-list li {
  margin-bottom: 0.55rem;
  line-height: 1.68;
  font-size: 0.86rem;
}

/* 支持卡片 */
.support-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 1.6rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.18), rgba(2, 132, 199, 0.1));
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 8px 28px rgba(56, 189, 248, 0.18);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(56, 189, 248, 0.28), 0 0 24px rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.6);
}

.support-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}

.support-content h3 {
  color: #f8fafc;
  font-size: 1.08rem;
  margin-bottom: 0.45rem;
  font-weight: 600;
}

.support-content p {
  color: rgba(203, 213, 225, 0.88);
  font-size: 0.87rem;
  margin-bottom: 0.55rem;
  line-height: 1.65;
}

.support-link {
  display: inline-block;
  color: #7dd3fc;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.35);
  transition: all 0.3s ease;
}

.support-link:hover {
  color: #bae6fd;
  background: rgba(56, 189, 248, 0.25);
  border-color: rgba(148, 163, 184, 0.35);
}

/* ==================== 
   响应式设计
   ==================== */
@media (max-width: 1060px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .details-sidebar {
    order: -1;
  }

  .platform-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid-small {
    grid-template-columns: 1fr;
  }

  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-container {
    padding: 1.4rem;
  }

  .access-metrics-card {
    padding: 0;
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .app-icon-wrapper {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 540px) {
  .dashboard-page {
    padding-top: 6.4rem;
  }

  .platform-grid {
    grid-template-columns: 1fr;
  }

  .hero-header {
    flex-direction: column;
    text-align: center;
  }

  .hero-tags {
    justify-content: center;
  }

  .section-header h2 {
    font-size: 1.3rem;
  }

  .access-metrics-card {
    padding: 0;
    gap: 1.2rem;
  }

  .metric-card-small .metric-value {
    font-size: 1.5rem;
  }
}

/* ==================== 
   技术架构板块
   ==================== */
.tech-two-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.6rem;
}

.tech-column {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.tech-detail-block {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: transparent;
  padding: 1.5rem 1.7rem;
  backdrop-filter: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-detail-block:hover {
  border-color: rgba(148, 163, 184, 0.35);
}

.tech-detail-block h3 {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.tech-detail-block h4 {
  color: #7dd3fc;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 1.2rem 0 0.6rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.15);
}

.tech-summary {
  color: rgba(203, 213, 225, 0.85);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 1rem;
  padding-left: 0.3rem;
  border-left: 3px solid rgba(56, 189, 248, 0.5);
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.tech-subsection {
  padding-left: 0.3rem;
}

.tech-list {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(203, 213, 225, 0.92);
}

.tech-list li {
  margin-bottom: 0.65rem;
  line-height: 1.65;
  font-size: 0.86rem;
  font-family: 'JetBrains Mono', monospace;
}

.tech-list li::marker {
  color: rgba(56, 189, 248, 0.7);
}

/* ==================== 
   数据库特性板块
   ==================== */
.database-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.feature-card {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: transparent;
  padding: 1.5rem;
  backdrop-filter: none;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  border-color: rgba(148, 163, 184, 0.35);
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  display: block;
}

.feature-card h4 {
  color: #f8fafc;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

/* ==================== 
   数据库接入板块
   ==================== */
.intro-text {
  color: rgba(203, 213, 225, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 720px;
  margin-top: 0.5rem;
}

.integration-layout {
  display: grid;
  grid-template-columns: 2fr 5fr;
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.integration-left h3 {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.integration-intro {
  color: rgba(203, 213, 225, 0.75);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.integration-cases-vertical {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.case-item {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.22);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.case-item:hover {
  border-color: rgba(148, 163, 184, 0.35);
  background: rgba(56, 189, 248, 0.05);
}

.case-content {
  flex: 1;
  min-width: 0;
}

.case-title {
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.case-subtitle {
  color: rgba(203, 213, 225, 0.75);
  font-size: 0.8rem;
  line-height: 1.4;
}

.case-link-icon {
  flex-shrink: 0;
  color: rgba(56, 189, 248, 0.6);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.case-item:hover .case-link-icon {
  color: rgba(56, 189, 248, 0.8);
  transform: none;
}

.integration-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.api-buttons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.api-section {
  margin: 1rem 0;
  padding: 1.5rem;
  border-radius: 16px;
  background: transparent;
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.api-section h3 {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.api-section p {
  color: rgba(203, 213, 225, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.api-btn {
  display: inline-block;
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(168, 85, 247, 0.5);
  color: #e9d5ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.api-btn:hover {
  background: rgba(168, 85, 247, 0.35);
  border-color: rgba(148, 163, 184, 0.35);
}

.api-btn-secondary {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(2, 132, 199, 0.2));
  border-color: rgba(56, 189, 248, 0.5);
  color: #bae6fd;
}

.api-btn-secondary:hover {
  background: rgba(56, 189, 248, 0.35);
  border-color: rgba(148, 163, 184, 0.35);
}

.integration-warning {
  margin: 1rem 0;
  padding: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.integration-warning h3 {
  color: #fef3c7;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.integration-warning p {
  color: rgba(254, 243, 199, 0.9);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

.integration-warning p:last-child {
  margin-bottom: 0;
}

/* ==================== 
   项目链接板块
   ==================== */
.links-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.link-card {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(30, 41, 59, 0.25));
  padding: 1.6rem;
  backdrop-filter: blur(12px);
  text-align: center;
  text-decoration: none;
  color: #f8fafc;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.link-card:hover {
  border-color: rgba(56, 189, 248, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(2, 6, 23, 0.4), 0 0 28px rgba(56, 189, 248, 0.12);
}

.link-icon {
  font-size: 2.6rem;
  margin-bottom: 0.9rem;
  display: block;
}

.link-card h4 {
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
}

/* ==================== 
   团队与致谢板块
   ==================== */
.team-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.member-card {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: transparent;
  padding: 1.6rem;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-card:hover {
  border-color: rgba(148, 163, 184, 0.35);
}

.member-avatar {
  font-size: 2.8rem;
  flex-shrink: 0;
}

.member-info h4 {
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
}

.license-section {
  border-radius: 16px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  background: transparent;
  padding: 1.6rem 1.8rem;
  backdrop-filter: none;
}

.contact-section {
  border-radius: 16px;
  border: 1px solid rgba(74, 222, 128, 0.3);
  background: transparent;
  padding: 1.6rem 1.8rem;
  backdrop-filter: none;
}

.contact-section h3 {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-list {
  color: rgba(203, 213, 225, 0.85);
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-list p {
  margin: 0.5rem 0;
}

.contact-list a {
  color: rgba(74, 222, 128, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-list a:hover {
  color: rgba(74, 222, 128, 1);
  text-decoration: underline;
}

.license-section h3 {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.license-badge-link {
  text-decoration: none;
  display: inline-block;
}

.license-badge-link:hover .license-badge {
  border-color: rgba(148, 163, 184, 0.35);
  transform: translateY(-2px);
}

.license-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(168, 85, 247, 0.4);
  margin-bottom: 1rem;
}

.license-name {
  color: #e9d5ff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.license-desc {
  color: rgba(203, 213, 225, 0.85);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

.acknowledgments-section {
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: transparent;
  padding: 1.6rem 1.8rem;
  backdrop-filter: none;
}

.acknowledgments-section h3 {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.acknowledgments-list {
  margin: 0;
  padding-left: 1.2rem;
  color: rgba(203, 213, 225, 0.92);
}

.acknowledgments-list li {
  margin-bottom: 0.65rem;
  line-height: 1.7;
  font-size: 0.9rem;
}

.acknowledgments-list li::marker {
  color: rgba(56, 189, 248, 0.7);
}

/* ==================== 
   联系我们板块
   ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.6rem;
  margin-top: 1.5rem;
}

.contact-team {
  border-radius: 16px;
  border: 1px solid rgba(56, 189, 248, 0.3);
  background: transparent;
  padding: 1.6rem 1.8rem;
  backdrop-filter: none;
}

.contact-team h3 {
  color: #f8fafc;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.team-title-link {
  color: #f8fafc;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-title-link:hover {
  color: #38bdf8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.team-item {
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(2, 132, 199, 0.05));
  border: 1px solid rgba(56, 189, 248, 0.2);
  transition: all 0.3s ease;
}

.team-item:hover {
  border-color: rgba(148, 163, 184, 0.35);
  background: rgba(56, 189, 248, 0.12);
  transform: translateX(4px);
}

.team-name {
  color: #f8fafc;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.team-contact {
  color: rgba(125, 211, 252, 0.9);
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 0.4rem;
}

.qq-link {
  color: rgba(125, 211, 252, 0.9);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.qq-link:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.qq-link i {
  font-size: 0.75rem;
}

.team-role {
  color: rgba(203, 213, 225, 0.8);
  font-size: 0.82rem;
  line-height: 1.5;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* ==================== 
   响应式调整 - 新增板块
   ==================== */
@media (max-width: 900px) {
  .tech-two-columns {
    grid-template-columns: 1fr;
  }

  .integration-layout {
    grid-template-columns: 1fr;
  }

  .database-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cases-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .links-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-members {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-team {
    order: -1;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  /* 修复移动端标题和图标布局 */
  .card-header {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-number {
    font-size: 1.2rem;
  }

  .card-header h3 {
    font-size: 1.05rem;
  }

  .note-icon,
  .highlight-icon {
    font-size: 1.5rem;
  }

  .note-card h3,
  .highlight-card h3 {
    font-size: 0.95rem;
  }

  .section-container {
    padding: 1.2rem;
  }

  .info-card,
  .highlight-card,
  .note-card {
    padding: 1.3rem 1.4rem;
  }
}

@media (max-width: 540px) {
  .database-features {
    grid-template-columns: 1fr;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .links-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Dashboard 滑动进入动画
   ========================================= */
.dashboard-page .hero-section,
.dashboard-page .content-section {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.dashboard-page .hero-section.reveal-in,
.dashboard-page .content-section.reveal-in {
    opacity: 1;
    transform: translateY(0);
}
