/* ===== 顶部状态栏 ===== */
#blog-statusbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  background: rgba(26,26,46,0.92);
  backdrop-filter: blur(8px);
  color: #e2e8f0;
  font-size: 12px;
  padding: 4px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 28px;
}
#blog-statusbar .sb-sep { color: #4a5568; user-select: none; }
#sb-time { font-family: "JetBrains Mono", monospace; color: #a0aec0; }
#sb-weather { color: #68d391; }
#sb-github { color: #76e4f7; }

/* Push navbar down */
#nav { top: 28px !important; }

/* ===== 每日名言浮窗 ===== */
#daily-quote-widget {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 9999;
  max-width: 320px;
}
.dq-inner {
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 8px 32px rgba(52,81,178,0.15);
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.dq-text { flex: 1; }
.dq-quote { color: #1a1a2e; font-size: 13px; line-height: 1.6; margin: 0 0 6px; cursor: pointer; }
.dq-author { color: #3451b2; font-size: 12px; font-weight: 600; }
.dq-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none;
  font-size: 18px; color: #9ca3af; cursor: pointer; line-height: 1; padding: 0;
}
.dq-quote a {
  color: #1a1a2e;
  text-decoration: none;
}
.dq-quote a:hover { color: #3451b2; }
