/* PC 公告中心 · 黑金 */
.pc-notice-page {
  --h-bg: #080808;
  --h-card: #141414;
  --h-gold: #d4af37;
  --h-gold-light: #f5d76e;
  --h-text: #f5efe4;
  --h-muted: #8d877e;
  --h-line: rgba(255, 255, 255, 0.08);
}

body.pc-app.pc-notice-page {
  background: var(--h-bg);
  color: var(--h-text);
}

.pc-notice-page .pc-main {
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 188, 66, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 30%, rgba(212, 175, 55, 0.08), transparent 50%),
    var(--h-bg);
}

.pc-notice-page .pc-content {
  padding-top: 18px;
  padding-bottom: 28px;
}

.pc-notice-page .pc-page-header {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--h-line);
}

.pc-notice-page .pc-page-title { color: var(--h-text); }
.pc-notice-page .pc-page-sub { color: var(--h-muted); }

.pc-notice-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 顶部横幅 */
.pc-notice-hero {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 20px 20px 20px 6px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(255, 188, 66, 0.14) 0%, transparent 55%),
    linear-gradient(155deg, #1c1816 0%, #121212 48%, #101010 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.pc-notice-hero-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px 16px 16px 4px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.24);
}

.pc-notice-hero-icon .mine-svc-svg,
.pc-notice-hero-icon .pc-header-svg {
  width: 40px;
  height: 40px;
  display: block;
}

.pc-notice-hero-copy h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  color: var(--h-gold-light);
  line-height: 1.2;
}

.pc-notice-hero-copy > p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--h-muted);
}

.pc-notice-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pc-notice-hero-stats em {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 28px;
  padding: 0 12px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  color: var(--h-text);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 999px;
}

.pc-notice-hero-stats em i {
  font-size: 14px;
  color: var(--h-gold-light);
}

/* 列表面板 */
.pc-notice-panel {
  padding: 16px 18px 18px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--h-line);
  border-radius: 20px 20px 20px 6px;
}

.pc-notice-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pc-notice-panel-head h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--h-text);
}

.pc-notice-panel-head span {
  font-size: 12px;
  color: var(--h-muted);
}

.pc-notice-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-notice-card {
  padding: 16px 18px;
  background: linear-gradient(155deg, #1c1816 0%, #121212 48%, #101010 100%);
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-radius: 16px 16px 16px 4px;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.pc-notice-card:hover {
  border-color: rgba(212, 175, 55, 0.28);
  transform: translateX(2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.pc-notice-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.pc-notice-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--h-gold-light);
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.pc-notice-badge i {
  font-size: 13px;
}

.pc-notice-card-head time {
  font-size: 12px;
  color: var(--h-muted);
  white-space: nowrap;
}

.pc-notice-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--h-text);
}

.pc-notice-card-body {
  font-size: 13px;
  line-height: 1.7;
  color: #cfc8bc;
  word-break: break-word;
}

.pc-notice-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #1a1200;
  text-decoration: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe7a8, #d4af37);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.22);
  transition: transform 0.15s, box-shadow 0.15s;
}

.pc-notice-card-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.3);
}

.pc-notice-card-link i {
  font-size: 16px;
}

.pc-notice-page .pc-empty {
  padding: 56px 20px;
  color: var(--h-muted);
  background: linear-gradient(155deg, #1c1816 0%, #121212 48%, #101010 100%);
  border: 1px dashed rgba(212, 175, 55, 0.2);
  border-radius: 20px 20px 20px 6px;
}

.pc-notice-page .pc-empty i {
  color: rgba(212, 175, 55, 0.35);
}

@media (max-width: 720px) {
  .pc-notice-hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .pc-notice-card-head {
    flex-wrap: wrap;
  }
}
