/* ============================================
   蓝白配色 · 五色墨蓝体系
   #0b9491(青) -> #0b7594(亮蓝) -> #0b5394(主蓝) -> #0b3194(深蓝) -> #0b0e94(墨蓝)
   ============================================ */

body {
  background-color: #f5faff;
}

a {
  color: #0b5394;
}
a:hover {
  color: #0b9491;
}

.nexmoe-post-title a,
h1, h2, h3, h4 {
  color: #0b3194;
}
.nexmoe-post-title a:hover {
  color: #0b9491;
}

.nexmoe-post,
.nexmoe-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  border: 1px solid rgba(11, 83, 148, 0.08);
}

blockquote {
  border-left-color: #0b0e94;
  background: rgba(11, 148, 145, 0.05);
}

code:not([class]) {
  background: rgba(11, 148, 145, 0.10);
  color: #0b0e94;
}

pre {
  background: rgba(11, 148, 145, 0.03);
  border: 1px solid rgba(11, 83, 148, 0.06);
}

.nexmoe-tag {
  background: rgba(11, 83, 148, 0.06);
  color: #0b5394;
  border-color: rgba(11, 83, 148, 0.15);
}
.nexmoe-tag:hover {
  background: #0b0e94;
  color: #fff;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0b9491, #0b5394, #0b0e94);
}
::selection {
  background: rgba(11, 83, 148, 0.20);
  color: #0b0e94;
}