/* ===== 飞驴情报网 · 精美UI版 全局样式 ===== */
:root {
  --theme-primary: #00ffb3;
  --theme-primary-soft: rgba(0, 255, 179, 0.15);
  --theme-secondary: #00d4ff;
  --theme-accent: #ff00a6;
  --bg-0: #05060a;
  --bg-1: #0a0e1a;
  --bg-2: #10182b;
  --surface: rgba(16, 24, 43, 0.55);
  --surface-strong: rgba(16, 24, 43, 0.85);
  --border: rgba(0, 255, 179, 0.25);
  --text-0: #e7f7ff;
  --text-1: #a9c1d4;
  --text-2: #6b7d8f;
  --danger: #ff4d6d;
  --warning: #ffb800;
  --success: #23d18b;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-neon: 0 0 24px var(--theme-primary-soft), 0 0 60px rgba(0,212,255,0.08);
  --font: 'Inter', 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'Cascadia Code', Consolas, monospace;
}

/* 主题配色 */
body[data-theme="green"]  { --theme-primary:#00ffb3; --theme-secondary:#00d4ff; --theme-accent:#ff00a6; }
body[data-theme="blue"]   { --theme-primary:#4c8bff; --theme-secondary:#7ab8ff; --theme-accent:#a965ff; }
body[data-theme="purple"] { --theme-primary:#a965ff; --theme-secondary:#ff6ad5; --theme-accent:#5dd3ff; }
body[data-theme="red"]    { --theme-primary:#ff3b5c; --theme-secondary:#ff8a3b; --theme-accent:#ffd83b; }
body[data-theme="orange"] { --theme-primary:#ff8a3b; --theme-secondary:#ffd83b; --theme-accent:#ff3b5c; }
body[data-theme="pink"]   { --theme-primary:#ff6ad5; --theme-secondary:#a965ff; --theme-accent:#5dd3ff; }
body[data-theme="cyan"]   { --theme-primary:#00e5ff; --theme-secondary:#00ffb3; --theme-accent:#a965ff; }
body[data-theme="gold"]   { --theme-primary:#ffd83b; --theme-secondary:#ff8a3b; --theme-accent:#ff6ad5; }

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body {
  background: radial-gradient(1200px 600px at 10% -10%, rgba(0,212,255,.12), transparent 60%),
              radial-gradient(900px 500px at 110% 10%, rgba(255,0,166,.10), transparent 60%),
              linear-gradient(180deg, var(--bg-0), var(--bg-1) 40%, var(--bg-2));
  color: var(--text-0);
  font-family: var(--font);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* 点阵网格底层 */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  pointer-events: none; z-index: 0;
}

/* Matrix雨画布 */
#matrix-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}

a { color: var(--theme-primary); text-decoration: none; transition: .2s; }
a:hover { color: var(--theme-secondary); text-shadow: 0 0 12px var(--theme-primary-soft); }

/* ===== 顶栏 ===== */
.navbar {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(5,6,10,.85), rgba(5,6,10,.55));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 700; font-size: 18px;
  letter-spacing: 1px;
}
.logo-badge {
  width: 36px; height: 36px; border-radius: 10px;
  background: conic-gradient(from 0deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent), var(--theme-primary));
  display: grid; place-items: center;
  color: #000; font-size: 18px; font-weight: 900;
  box-shadow: var(--shadow-neon);
}
.nav-links { display: flex; gap: 6px; align-items: center; }
.nav-link {
  padding: 8px 14px; border-radius: 10px; color: var(--text-1);
  font-size: 14px; transition: .2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-0);
  background: rgba(255,255,255,0.06);
}
.nav-actions { display: flex; gap: 10px; align-items: center; }
#nav-user-area { display: flex; align-items: center; gap: 8px; }

/* ===== 按钮 ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 18px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer;
  font-weight: 600; font-size: 14px;
  transition: transform .15s, box-shadow .2s, background .2s;
  font-family: var(--font);
}
.btn-primary {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
  color: #001018;
  box-shadow: 0 10px 30px -10px var(--theme-primary);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -10px var(--theme-primary); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text-0);
  border-color: rgba(255,255,255,0.10);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--theme-primary); }
.btn-block { width: 100%; padding: 14px 18px; font-size: 15px; }
.btn-danger { background: linear-gradient(135deg, #ff4d6d, #ff8a3b); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--text-0);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); transform: translateY(-1px); }

/* ===== 通用 ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 32px 24px; position: relative; z-index: 2; }
.card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
  padding: 28px;
}
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: var(--theme-primary-soft);
  color: var(--theme-primary);
  border: 1px solid var(--border);
  font-size: 12px; font-family: var(--font-mono);
}
.divider { height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); margin: 24px 0; }
.text-muted { color: var(--text-2); }
.text-grad {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary), var(--theme-accent));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ===== 表单 ===== */
.form-group { margin-bottom: 18px; }
.form-label { display:block; margin-bottom:8px; color: var(--text-1); font-size:13px; font-family: var(--font-mono); letter-spacing:.5px; }
.form-input {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px; color: var(--text-0);
  font-size: 15px; font-family: var(--font);
  transition: .2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 4px var(--theme-primary-soft);
  background: rgba(255,255,255,0.05);
}
.form-input::placeholder { color: var(--text-2); }

/* ===== 认证容器 ===== */
.auth-wrap {
  min-height: calc(100vh - 72px);
  display: grid; place-items: center;
  padding: 40px 20px;
  position: relative; z-index: 2;
}
.auth-card {
  width: 100%; max-width: 440px;
  padding: 40px 36px;
  position: relative; overflow: hidden;
}
.auth-card::before {
  content: ""; position: absolute; inset: -2px;
  background: conic-gradient(from 90deg, transparent, var(--theme-primary), transparent 40%);
  opacity: 0.4; filter: blur(30px); z-index: -1;
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg);} }
.auth-title {
  font-size: 28px; font-weight: 800; margin: 0 0 6px;
  display: flex; align-items: center; gap: 10px;
}
.auth-subtitle { color: var(--text-2); font-size: 14px; margin-bottom: 28px; font-family: var(--font-mono); }
.auth-foot { margin-top: 20px; text-align: center; font-size: 13px; color: var(--text-2); }

/* ===== 首页 Hero ===== */
.hero {
  padding: 80px 24px 40px;
  max-width: 1280px; margin: 0 auto;
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center;
}
.hero h1 { font-size: 56px; line-height: 1.05; margin: 16px 0 20px; font-weight: 900; letter-spacing: -1px; }
.hero p.lead { color: var(--text-1); font-size: 18px; line-height: 1.7; max-width: 560px; }
.hero-actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.terminal {
  background: rgba(5,6,10,0.75);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  font-family: var(--font-mono); font-size: 13px;
  padding: 18px 22px;
  color: var(--text-1);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.7), inset 0 0 60px rgba(0,255,179,0.04);
  position: relative;
}
.terminal-head { display:flex; gap:6px; margin-bottom: 14px; }
.terminal-head span { width:12px; height:12px; border-radius:50%; background:#3a4150; }
.terminal-head span:nth-child(1){ background:#ff5f57; }
.terminal-head span:nth-child(2){ background:#febc2e; }
.terminal-head span:nth-child(3){ background:#28c840; }
.terminal .line { min-height: 20px; }
.terminal .prompt { color: var(--theme-primary); }
.terminal .cursor { display:inline-block; width:9px; height:16px; background: var(--theme-primary); vertical-align: -2px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50%{ opacity:0; } }

/* ===== 特色卡片 ===== */
.section { padding: 40px 24px; max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.section h2 { font-size: 34px; font-weight: 800; letter-spacing: -0.5px; margin: 0 0 10px; }
.section .sub { color: var(--text-2); margin-bottom: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feat {
  padding: 22px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  transition: .25s;
  position: relative; overflow: hidden;
}
.feat:hover { transform: translateY(-4px); border-color: var(--theme-primary); box-shadow: 0 20px 60px -30px var(--theme-primary); }
.feat-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display:grid; place-items:center; font-size: 22px;
  background: linear-gradient(135deg, var(--theme-primary-soft), transparent);
  border: 1px solid var(--border);
  color: var(--theme-primary);
  margin-bottom: 14px;
}
.feat h3 { margin: 0 0 6px; font-size: 17px; }
.feat p { margin: 0; color: var(--text-1); font-size: 14px; line-height: 1.6; }

/* ===== 主题切换器 ===== */
.theme-switcher {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.theme-dot {
  width: 26px; height: 26px; border-radius: 50%;
  cursor: pointer; border: 2px solid transparent;
  transition: .2s;
}
.theme-dot:hover { transform: scale(1.15); }
.theme-dot.active { border-color: #fff; box-shadow: 0 0 16px currentColor; }

/* ===== 情报卡 ===== */
.intel-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 20px; }
.intel-card {
  padding: 22px; border-radius: 18px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden;
  transition: .25s;
}
.intel-card:hover { border-color: var(--theme-primary); }
.intel-head { display:flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.intel-title { font-size: 17px; font-weight: 700; margin: 0 0 4px; }
.intel-meta { color: var(--text-2); font-size: 12px; font-family: var(--font-mono); }
.intel-body {
  color: var(--text-1); font-size: 14px; line-height: 1.7;
  filter: blur(7px); user-select: none;
  transition: .3s;
  position: relative;
}
.intel-card:hover .intel-body { filter: blur(0); user-select: text; }
.intel-lock {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,24,43,0.3), rgba(16,24,43,0.85));
  display: grid; place-items: center;
  opacity: 0; transition: .25s;
  pointer-events: none;
  font-family: var(--font-mono); color: var(--theme-primary);
  font-size: 13px; letter-spacing: 2px;
}
.intel-card:not(:hover) .intel-body + .intel-lock { opacity: 1; }
.intel-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; }
.level-tag {
  padding: 3px 10px; border-radius: 999px; font-size: 11px; font-family: var(--font-mono);
  border: 1px solid currentColor;
}
.level-free   { color: #7ab8ff; }
.level-vip    { color: #00ffb3; }
.level-svip   { color: #ff6ad5; }
.level-year   { color: #ffd83b; }

/* 水印 */
.watermark-layer {
  position: fixed; inset: 0; pointer-events: none; z-index: 5;
  background-repeat: repeat;
  opacity: 0.18;
}

/* ===== 会员卡 ===== */
.plan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.plan {
  padding: 28px 24px; border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; transition: .25s;
}
.plan:hover { transform: translateY(-6px); border-color: var(--theme-primary); }
.plan.featured {
  border-color: var(--theme-primary);
  background: linear-gradient(180deg, var(--theme-primary-soft), var(--surface) 40%);
  box-shadow: 0 30px 80px -30px var(--theme-primary);
}
.plan-name { font-size: 14px; color: var(--text-2); font-family: var(--font-mono); letter-spacing: 2px; text-transform: uppercase; }
.plan-price { font-size: 40px; font-weight: 900; margin: 10px 0 4px; }
.plan-price small { font-size: 14px; color: var(--text-2); font-weight: 500; }
.plan ul { list-style: none; padding: 0; margin: 20px 0 24px; }
.plan ul li { padding: 8px 0; color: var(--text-1); font-size: 14px; display:flex; align-items:center; gap:8px; border-bottom: 1px dashed rgba(255,255,255,0.06); }
.plan ul li::before { content: "✓"; color: var(--theme-primary); font-weight: 900; }

/* ===== 页脚 ===== */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 30px 24px;
  text-align: center;
  color: var(--text-2);
  font-size: 13px;
  font-family: var(--font-mono);
  position: relative; z-index: 2;
  margin-top: 60px;
  background: rgba(5,6,10,0.4);
}
.footer a { margin: 0 8px; }

/* ===== Dashboard 顶栏 ===== */
.user-pill {
  display:flex; align-items: center; gap: 10px;
  padding: 6px 12px 6px 6px; border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-accent));
  display:grid; place-items:center; color:#001018; font-weight: 900; font-size: 13px;
}
.dash-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.filter-bar { display:flex; gap: 8px; flex-wrap: wrap; }
.filter-chip {
  padding: 6px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.04); color: var(--text-1);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer; font-size: 13px; transition: .2s;
}
.filter-chip:hover { color: var(--text-0); }
.filter-chip.active { background: var(--theme-primary-soft); color: var(--theme-primary); border-color: var(--theme-primary); }

/* 统计卡 */
.stat-grid { display:grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 26px; }
.stat {
  padding: 18px; border-radius: 16px;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.08);
}
.stat .label { font-family: var(--font-mono); font-size: 12px; color: var(--text-2); letter-spacing:1px; }
.stat .value { font-size: 28px; font-weight: 800; margin-top: 4px; }
.stat .value small { font-size: 14px; color: var(--theme-primary); font-weight: 600; margin-left: 4px; }

/* Toast */
.toast-wrap { position: fixed; top: 24px; right: 24px; z-index: 999; display:flex; flex-direction:column; gap:10px; }
.toast {
  padding: 12px 16px; border-radius: 12px;
  background: var(--surface-strong); backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  color: var(--text-0); font-size: 14px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.6);
  animation: slideIn .3s ease;
}
.toast.error { border-color: var(--danger); color: var(--danger); }
.toast.success { border-color: var(--success); color: var(--success); }
@keyframes slideIn { from{transform:translateX(30px); opacity:0;} to{transform:translateX(0); opacity:1;} }

/* 模态 */
.modal-backdrop {
  position: fixed; inset:0; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px);
  display:none; align-items:center; justify-content:center; z-index: 100;
}
.modal-backdrop.show { display:flex; }
.modal { width: 92%; max-width: 480px; padding: 28px; border-radius: 20px;
  background: var(--surface-strong); border: 1px solid var(--border); }

/* 响应式 */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 40px 20px; }
  .hero h1 { font-size: 40px; }
  .grid-3, .plan-grid { grid-template-columns: 1fr 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 560px) {
  .grid-3, .plan-grid, .stat-grid, .grid-2 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .auth-card { padding: 28px 22px; }
}

/* ===== 预警消息面板 ===== */
.notice-trigger {
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 10px;
  color: var(--text-1); font-size: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer; transition: .2s;
  font-family: var(--font);
}
.notice-trigger:hover {
  color: var(--text-0);
  background: rgba(255,255,255,0.08);
  border-color: var(--theme-primary);
}
.notice-trigger.has-alert {
  border-color: var(--warning);
  box-shadow: 0 0 12px rgba(255,184,0,.15);
}
.notice-badge {
  display: none;
  min-width: 18px; height: 18px; border-radius: 9px;
  background: var(--danger); color: #fff;
  font-size: 10px; font-weight: 700;
  text-align: center; line-height: 18px; padding: 0 5px;
  box-shadow: 0 2px 8px rgba(255,77,109,.4);
}
.notice-trigger.has-alert .notice-badge { display: inline-block; }

/* 预警下拉面板 */
.notice-panel {
  display: none;
  position: absolute; top: calc(100% + 10px); right: 0;
  width: 380px; max-height: 480px;
  background: var(--surface-strong);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  box-shadow: 0 24px 64px -20px rgba(0,0,0,.7), 0 0 40px -10px var(--theme-primary-soft);
  z-index: 200;
  overflow: hidden;
  flex-direction: column;
}
.notice-panel.show { display: flex; }
.notice-panel-head {
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
}
.notice-panel-head h3 {
  margin: 0; font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
}
.notice-panel-head .source-tag {
  font-size: 10px; font-family: var(--font-mono);
  color: var(--text-2);
  padding: 2px 8px; border-radius: 999px;
  background: rgba(255,255,255,0.05);
}
.notice-panel-body {
  flex: 1; overflow-y: auto; padding: 8px 0;
  max-height: 360px;
}
.notice-panel-body::-webkit-scrollbar { width: 4px; }
.notice-panel-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 2px; }

.notice-item {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  cursor: pointer; transition: .15s;
}
.notice-item:last-child { border-bottom: none; }
.notice-item:hover { background: rgba(255,255,255,0.04); }
.notice-item .ni-head {
  display: flex; align-items: flex-start; gap: 8px;
  margin-bottom: 4px;
}
.notice-item .ni-dot {
  width: 8px; height: 8px; border-radius: 50%; margin-top: 5px; flex-shrink: 0;
}
.notice-item .ni-dot.danger { background: var(--danger); box-shadow: 0 0 8px var(--danger); }
.notice-item .ni-dot.warning { background: var(--warning); box-shadow: 0 0 8px var(--warning); }
.notice-item .ni-dot.info { background: var(--theme-primary); }
.notice-item .ni-title {
  font-size: 13px; font-weight: 600; color: var(--text-0);
  flex: 1; line-height: 1.4;
}
.notice-item .ni-time {
  font-size: 11px; color: var(--text-2); font-family: var(--font-mono);
  margin-left: auto; white-space: nowrap;
}
.notice-item .ni-content {
  font-size: 12px; color: var(--text-1);
  line-height: 1.5; margin-left: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.notice-item .ni-tag {
  display: inline-block;
  font-size: 10px; font-family: var(--font-mono);
  padding: 1px 6px; border-radius: 4px;
  margin-left: 16px; margin-top: 4px;
}
.notice-item .ni-tag.alert { background: rgba(255,77,109,.15); color: var(--danger); }
.notice-item .ni-tag.update { background: rgba(0,255,179,.12); color: var(--theme-primary); }
.notice-item .ni-tag.system { background: rgba(169,101,255,.12); color: #a965ff; }

.notice-panel-foot {
  padding: 10px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.notice-panel-foot a {
  font-size: 12px; color: var(--text-2); font-family: var(--font-mono);
  transition: .2s;
}
.notice-panel-foot a:hover { color: var(--theme-primary); }

.notice-empty {
  padding: 40px 20px; text-align: center;
  color: var(--text-2); font-family: var(--font-mono); font-size: 13px;
}
.notice-panel-loading {
  padding: 20px; text-align: center;
  color: var(--text-2); font-family: var(--font-mono); font-size: 12px;
}

/* 手机端预警面板适配 */
@media (max-width: 768px) {
  .notice-panel {
    position: fixed; top: 60px; left: 12px; right: 12px;
    width: auto; max-height: 60vh;
    border-radius: 18px;
  }
  .notice-trigger { padding: 6px 10px; font-size: 13px; }
}

/* 动画 */
.fade-up { animation: fadeUp .6s ease both; }
@keyframes fadeUp { from{ opacity:0; transform: translateY(20px);} to{ opacity:1; transform: translateY(0);} }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
