.funding-view,
.guide-layout {
  gap: 20px;
}
.funding-hero,
.guide-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 34px;
  border-radius: 24px;
  background: linear-gradient(135deg, #102b50, #174d7f);
  color: #fff;
  box-shadow: 0 18px 38px rgba(16, 43, 80, 0.15);
}
.funding-hero small,
.guide-hero small {
  color: #8fd0ff;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.funding-hero h2,
.guide-hero h2 {
  margin: 7px 0 8px;
  font-size: 28px;
}
.funding-hero p,
.guide-hero p {
  margin: 0;
  color: #cbd9e9;
}
.funding-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.funding-actions .secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.funding-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 20px 0;
}
.funding-metrics article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.funding-metrics span,
.funding-metrics small {
  display: block;
  color: var(--muted);
}
.funding-metrics strong {
  display: block;
  margin: 8px 0 3px;
  font-size: 28px;
}
.funding-panel {
  overflow: hidden;
}
.funding-table {
  min-width: 980px;
}
.funding-kind,
.funding-status {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
}
.funding-kind.recharge,
.funding-status {
  color: #087b5a;
  background: #e5f8f1;
}
.funding-kind.allocation {
  color: #885a00;
  background: #fff3d8;
}
.funding-empty {
  text-align: center;
  color: var(--muted);
}
.guide-search {
  width: min(420px, 45vw);
  height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.guide-search::placeholder {
  color: #cbd9e9;
}
.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.8fr);
  margin-top: 20px;
}
.manual-panel,
.platform-advice {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.guide-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}
.guide-title h3 {
  margin: 0 0 5px;
}
.guide-title small {
  color: var(--muted);
}
.manual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.manual-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  text-align: left;
}
.manual-card:hover {
  border-color: #83baff;
  box-shadow: 0 10px 24px rgba(37, 112, 202, 0.1);
  transform: translateY(-1px);
}
.manual-card i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #eaf4ff;
  color: #0877e8;
  font-style: normal;
  font-weight: 800;
}
.manual-card b,
.manual-card small {
  display: block;
}
.manual-card small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}
.guide-detail {
  margin-top: 18px;
  padding: 20px;
  border-radius: 16px;
  background: var(--soft);
}
.guide-detail h4 {
  margin: 0 0 10px;
}
.guide-detail li {
  margin: 8px 0;
  color: var(--muted);
}
.advice-feature {
  padding: 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, #edf6ff, #f7fbff);
}
.advice-feature span {
  display: flex;
  justify-content: space-between;
}
.advice-feature em {
  padding: 3px 8px;
  border-radius: 8px;
  background: #db2b39;
  color: #fff;
  font-style: normal;
  font-size: 11px;
}
.advice-feature p {
  color: var(--muted);
  line-height: 1.5;
}
.advice-feature a {
  color: #0877e8;
  font-weight: 700;
}
.advice-list {
  display: grid;
  gap: 9px;
  margin-top: 16px;
}
.advice-list button {
  display: flex;
  justify-content: space-between;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  text-align: left;
}
@media (max-width: 1000px) {
  .funding-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .guide-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .funding-hero,
  .guide-hero {
    align-items: flex-start;
    flex-direction: column;
  }
  .funding-metrics,
  .manual-grid {
    grid-template-columns: 1fr;
  }
  .guide-search {
    width: 100%;
  }
}
