
/* ===== 赛博朋克风格 v3：全站统一 ===== */
:root {
  --cyber-bg-1: #0a0a14;
  --cyber-bg-2: #14142e;
  --cyber-accent: #ff6600;
  --cyber-glow: #ffaa00;
  --card-bg: rgba(18, 18, 40, 0.9);
  --card-border: rgba(255,102,0,0.4);
}

/* 全局深色背景 */
body {
  background: linear-gradient(160deg, var(--cyber-bg-1) 0%, var(--cyber-bg-2) 100%) !important;
  background-attachment: fixed !important;
  color: #e0e0e8 !important;
}

/* 网格 + 霓虹 */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,102,0,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,102,0,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

/* 全站内容卡片：深色半透明 */
.site-content .ast-container,
body .site-content .ast-container {
  background: var(--card-bg) !important;
  color: #e0e0e8 !important;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  box-shadow: 0 0 35px rgba(255,102,0,0.18), inset 0 0 50px rgba(255,102,0,0.05);
}

.ast-article, .entry-content, .post-content,
#primary, .site-content {
  background: transparent !important;
  color: #e0e0e8 !important;
}

.entry-content p, .entry-content li, .entry-content,
.comment-body, .widget, .widget p {
  color: #d0d0dc !important;
}

/* 站点标题霓虹 */
.site-title a, .site-branding h1, .ast-site-title-wrap .site-title,
.logo, .site-title {
  color: var(--cyber-accent) !important;
  text-shadow: 0 0 12px var(--cyber-glow), 0 0 30px rgba(255,102,0,0.5);
}

/* 文章标题 */
.entry-title, .entry-title a, h1.entry-title,
h1, h2, h3, h4, h5, h6 {
  color: var(--cyber-glow) !important;
  text-shadow: 0 0 8px rgba(255,170,0,0.35);
}
.entry-title a:hover, h1 a:hover, h2 a:hover, h3 a:hover {
  color: #ffffff !important;
  text-shadow: 0 0 12px var(--cyber-accent);
}

/* 导航 */
.main-header-menu a, .ast-nav-menu a, .ast-header-custom-item a {
  color: #ffcc99 !important;
}
.main-header-menu a:hover, .ast-nav-menu a:hover {
  color: #ffffff !important;
  text-shadow: 0 0 8px var(--cyber-accent);
}

/* 链接 */
a, a:visited {
  color: var(--cyber-accent) !important;
}
a:hover {
  color: var(--cyber-glow) !important;
  text-shadow: 0 0 6px rgba(255,170,0,0.4);
}

/* 按钮（赛博风） */
.ast-button, .wp-block-button__link, button, input[type="submit"] {
  background: linear-gradient(135deg, var(--cyber-accent), var(--cyber-glow)) !important;
  color: #0a0a14 !important;
  border: none !important;
  box-shadow: 0 0 18px rgba(255,102,0,0.4);
}
.ast-button:hover, .wp-block-button__link:hover {
  box-shadow: 0 0 28px rgba(255,102,0,0.7);
}

/* 页脚 */
.site-footer {
  background: rgba(10,10,20,0.92) !important;
  color: #999 !important;
  border-top: 1px solid var(--card-border);
}
.site-footer a {
  color: var(--cyber-glow) !important;
}

/* 表单输入（暗色） */
input[type="text"], input[type="email"], textarea, select {
  background: #12122c !important;
  color: #e0e0e8 !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 6px;
}

/* 首页评测卡片网格 */
.cyber-hero { text-align: center; padding: 3rem 1rem 1.5rem; }
.cyber-hero-title { font-size: 2.2rem; color: var(--cyber-accent) !important; text-shadow: 0 0 18px var(--cyber-glow), 0 0 40px rgba(255,102,0,0.5); margin-bottom: .5rem; }
.cyber-hero-sub { color: #b0b0c8 !important; font-size: 1.05rem; }
.cyber-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; padding: 1rem 0 2rem; }
.cyber-card { display: block; background: rgba(18,18,40,0.92); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; text-decoration: none !important; transition: transform .2s, box-shadow .2s; }
.cyber-card:hover { transform: translateY(-4px); box-shadow: 0 0 30px rgba(255,102,0,0.4); }
.cyber-card-thumb img { width: 100%; height: 150px; object-fit: cover; }
.cyber-card-body { padding: 1rem 1.1rem; }
.cyber-card-title { color: var(--cyber-glow) !important; font-size: 1.1rem; margin: 0 0 .4rem; }
.cyber-card-excerpt { color: #c0c0d0 !important; font-size: .9rem; margin: 0 0 .6rem; line-height: 1.4; }
.cyber-card-link { color: var(--cyber-accent) !important; font-weight: 600; font-size: .9rem; }
