/* ============================================
   一亩诗田 A POEM · Redefine 主题品牌定制
   暗色系 / 冰蓝辉光 / 细腻质感
   ============================================ */

:root {
  --ic-brand: #7ec8ff;
  --ic-brand-glow: rgba(126, 200, 255, 0.35);
  --ic-bg: #0a1220;
}

/* ---------- 1. 全局背景与文字 ---------- */
body {
  background: var(--ic-bg) !important;
}

/* ---------- 2. 首页 Banner 标题辉光 ---------- */
.banner-title, .hero-title, h1.banner-title {
  text-shadow: 0 0 30px rgba(126, 200, 255, 0.45), 0 0 60px rgba(90, 60, 160, 0.30) !important;
  letter-spacing: 0.03em !important;
}

/* Banner 副标题 */
.banner-subtitle, .hero-subtitle {
  text-shadow: 0 0 18px rgba(126, 200, 255, 0.30) !important;
  opacity: 0.92 !important;
}

/* ---------- 3. 卡片悬浮辉光 ---------- */
/* 文章卡片 */
.post-entry, .article-card, .post-item,
.recent-post, .card {
  transition: all 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) !important;
}

.post-entry:hover, .article-card:hover,
.recent-post:hover, .card:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 0 0 1px rgba(126, 200, 255, 0.20),
    0 12px 40px rgba(60, 130, 220, 0.18) !important;
}

/* ---------- 4. 链接与强调色 ---------- */
a {
  transition: color 0.2s ease, text-shadow 0.2s ease !important;
}
a:hover {
  color: var(--ic-brand) !important;
  text-shadow: 0 0 12px var(--ic-brand-glow) !important;
}

/* 品牌主色覆盖（配合主题 primary 配置） */
::selection {
  background: rgba(126, 200, 255, 0.30) !important;
  color: #fff !important;
}

/* ---------- 5. 引用块：古诗风 ---------- */
blockquote {
  border-left: 3px solid var(--ic-brand) !important;
  background: linear-gradient(135deg, rgba(61, 110, 165, 0.15), rgba(90, 60, 160, 0.10)) !important;
  border-radius: 0 10px 10px 0 !important;
  padding: 1em 1.4em !important;
}

/* ---------- 6. 滚动条 ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #3d6ea5, #5a3ca0) !important;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: var(--ic-bg) !important;
}

/* ---------- 7. 代码块 ---------- */
pre, code {
  border-radius: 10px !important;
}

/* ---------- 8. 页脚 ---------- */
footer, .footer {
  color: rgba(139, 163, 189, 0.9) !important;
}
footer a, .footer a {
  color: var(--ic-brand) !important;
}

/* ---------- 9. 阅读进度条 ---------- */
.scroll-progress, .progress-bar {
  background: linear-gradient(90deg, #7ec8ff, #5a3ca0) !important;
}
