/* Butterfly 自定义样式 */
/* 背景毛玻璃效果 */
#body-wrap {
  background: transparent !important;
}

/* 侧边栏卡片毛玻璃 */
.card-widget,
#aside-content .card-widget {
  background: rgba(43, 43, 43, 0.65) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* 文章卡片毛玻璃 */
.layout > div:first-child:not(.recent-posts),
.recent-posts > .recent-post-item,
#post,
#page {
  background: rgba(43, 43, 43, 0.65) !important;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

/* 亮色模式 */
@media (prefers-color-scheme: light) {
  .card-widget,
  #aside-content .card-widget,
  .layout > div:first-child:not(.recent-posts),
  .recent-posts > .recent-post-item,
  #post,
  #page {
    background: rgba(255, 255, 255, 0.72) !important;
  }
}
