/*
Theme Name: 觉照交易博客
Theme URI: https://juezhao.trade
Author: 觉照交易团队
Author URI: https://juezhao.trade
Description: 觉照交易理论官方博客主题，专业蓝金配色，专注于觉照交易理论体系宣传
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: juezhao
Tags: blog, finance, trading, custom-colors, custom-logo, block-patterns, block-styles, wide-alignment

觉照交易博客主题 v1.0.0 - 觉照交易理论宣传平台
*/

/* ============================================
   CSS Variables - 蓝金专业配色方案
   ============================================ */
:root {
  /* 主题色 */
  --juezhao-blue: #2563eb;
  --juezhao-blue-light: #3b82f6;
  --juezhao-blue-dark: #1d4ed8;
  --juezhao-gold: #d4af37;
  --juezhao-gold-light: #f4cf67;
  --juezhao-gold-dark: #b8960c;
  
  /* 渐变 */
  --juezhao-gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #d4af37 100%);
  --juezhao-gradient-light: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #f4cf67 100%);
  
  /* 文字颜色 */
  --juezhao-text-primary: #1f2937;
  --juezhao-text-secondary: #6b7280;
  --juezhao-text-light: #f9fafb;
  --juezhao-text-accent: #d4af37;
  
  /* 背景颜色 */
  --juezhao-bg-primary: #ffffff;
  --juezhao-bg-secondary: #f9fafb;
  --juezhao-bg-dark: #111827;
  
  /* 阴影 */
  --juezhao-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --juezhao-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --juezhao-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --juezhao-shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  
  /* 边框圆角 */
  --juezhao-radius-sm: 4px;
  --juezhao-radius: 8px;
  --juezhao-radius-lg: 12px;
  --juezhao-radius-xl: 16px;
  
  /* 过渡 */
  --juezhao-transition: all 0.3s ease;
}

/* ============================================
   基础重置
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--juezhao-text-primary);
  background: var(--juezhao-bg-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--juezhao-blue);
  text-decoration: none;
  transition: var(--juezhao-transition);
}

a:hover {
  color: var(--juezhao-gold);
}

/* ============================================
   头部导航
   ============================================ */
.site-header {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  box-shadow: var(--juezhao-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.site-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--juezhao-gold);
  border-radius: var(--juezhao-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: #1e40af;
}

.site-logo .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.site-logo .logo-tagline {
  font-size: 0.75rem;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* 主导航 */
.main-navigation ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.main-navigation a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--juezhao-radius-sm);
  transition: var(--juezhao-transition);
}

.main-navigation a:hover,
.main-navigation a.current {
  background: rgba(255, 255, 255, 0.15);
  color: var(--juezhao-gold-light);
}

/* ============================================
   Hero区域
   ============================================ */
.hero-section {
  background: var(--juezhao-gradient);
  color: white;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--juezhao-gold-light);
  letter-spacing: 1px;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  letter-spacing: 8px;
}

.hero-subtitle {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* CTA按钮 */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: var(--juezhao-radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--juezhao-transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--juezhao-gold);
  color: #1e40af;
}

.btn-primary:hover {
  background: var(--juezhao-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--juezhao-shadow-gold);
  color: #1e40af;
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.5);
  color: white;
}

/* ============================================
   通用布局
   ============================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  color: var(--juezhao-text-primary);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--juezhao-text-secondary);
  font-size: 1.1rem;
}

/* ============================================
   觉照理论体系
   ============================================ */
.theory-section {
  padding: 5rem 2rem;
  background: var(--juezhao-bg-primary);
}

.theory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.theory-card {
  background: var(--juezhao-bg-secondary);
  border-radius: var(--juezhao-radius-xl);
  padding: 2.5rem;
  box-shadow: var(--juezhao-shadow);
  transition: var(--juezhao-transition);
  border: 1px solid rgba(0,0,0,0.05);
  position: relative;
  overflow: hidden;
}

.theory-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--juezhao-gradient);
}

.theory-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--juezhao-shadow-lg);
}

.theory-icon {
  margin-bottom: 1.5rem;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--juezhao-gradient);
  color: white;
  font-size: 1.75rem;
  font-weight: 800;
  border-radius: 50%;
  box-shadow: var(--juezhao-shadow-gold);
}

.theory-card h3 {
  font-size: 1.5rem;
  color: var(--juezhao-text-primary);
  margin-bottom: 0.5rem;
}

.theory-subtitle {
  color: var(--juezhao-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.theory-list {
  list-style: none;
}

.theory-list li {
  margin-bottom: 1rem;
  padding-left: 0;
}

.theory-list li:last-child {
  margin-bottom: 0;
}

.theory-list strong {
  display: block;
  color: var(--juezhao-blue);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.theory-list span {
  display: block;
  color: var(--juezhao-text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   觉照核心理念
   ============================================ */
.spirit-section {
  padding: 5rem 2rem;
  background: var(--juezhao-bg-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.spirit-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
}

.spirit-content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.spirit-quote {
  text-align: center;
  padding: 2rem;
}

.quote-mark {
  font-size: 6rem;
  line-height: 1;
  color: var(--juezhao-gold);
  opacity: 0.5;
  font-family: Georgia, serif;
  margin-bottom: -1rem;
}

.spirit-quote blockquote {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.spirit-quote blockquote span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.spirit-manifesto h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--juezhao-gold-light);
}

.spirit-manifesto > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.spirit-list {
  list-style: none;
}

.spirit-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.spirit-list li:last-child {
  margin-bottom: 0;
}

.spirit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: var(--juezhao-radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spirit-list strong {
  display: block;
  color: white;
  margin-bottom: 0.25rem;
}

.spirit-list p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   最新文章
   ============================================ */
.posts-section {
  padding: 5rem 2rem;
  background: var(--juezhao-bg-secondary);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.post-card {
  background: var(--juezhao-bg-primary);
  border-radius: var(--juezhao-radius-lg);
  overflow: hidden;
  box-shadow: var(--juezhao-shadow);
  transition: var(--juezhao-transition);
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--juezhao-shadow-lg);
}

.post-thumbnail {
  height: 160px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.post-category {
  background: rgba(255,255,255,0.9);
  color: var(--juezhao-blue-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.post-content {
  padding: 1.5rem;
}

.post-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.post-content h3 a {
  color: var(--juezhao-text-primary);
  text-decoration: none;
}

.post-content h3 a:hover {
  color: var(--juezhao-blue);
}

.post-excerpt {
  color: var(--juezhao-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--juezhao-text-secondary);
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.post-meta a {
  color: var(--juezhao-blue);
  font-weight: 500;
}

/* ============================================
   页脚
   ============================================ */
.site-footer {
  background: var(--juezhao-bg-dark);
  color: #a1a1aa;
  padding: 3rem 2rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #a1a1aa;
  text-decoration: none;
  transition: var(--juezhao-transition);
}

.footer-section a:hover {
  color: var(--juezhao-gold-light);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 0.875rem;
}

/* ============================================
   单篇文章页面
   ============================================ */
.single-post {
    padding: 2rem 0;
}

.post-article {
    max-width: 800px;
    margin: 0 auto;
    background: var(--juezhao-bg-primary);
    border-radius: var(--juezhao-radius-lg);
    box-shadow: var(--juezhao-shadow);
    overflow: hidden;
}

.post-header {
    background: linear-gradient(135deg, var(--juezhao-blue-dark) 0%, var(--juezhao-blue) 100%);
    color: white;
}

.post-header-inner {
    padding: 2.5rem 2rem;
    text-align: center;
}

.post-category {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.post-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.single-post .post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.single-post .post-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.post-featured-image {
    margin: 0;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post .post-content {
    padding: 2.5rem 2rem;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--juezhao-text-primary);
}

.single-post .post-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--juezhao-blue-dark);
}

.single-post .post-content h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.single-post .post-content p {
    margin-bottom: 1.25rem;
}

.single-post .post-content a {
    color: var(--juezhao-blue);
    text-decoration: underline;
}

.single-post .post-content a:hover {
    color: var(--juezhao-gold);
}

.single-post .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--juezhao-radius);
    margin: 1.5rem 0;
}

.single-post .post-content blockquote {
    border-left: 4px solid var(--juezhao-gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: #fafafa;
    font-style: italic;
    color: var(--juezhao-text-secondary);
}

.post-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid #eee;
}

.post-tags {
    margin-bottom: 1.5rem;
}

.post-tags .tag-label {
    font-weight: 600;
    margin-right: 0.5rem;
}

.post-tags a {
    display: inline-block;
    background: #f3f4f6;
    color: var(--juezhao-text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin: 0.25rem;
    text-decoration: none;
    transition: var(--juezhao-transition);
}

.post-tags a:hover {
    background: var(--juezhao-blue);
    color: white;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.nav-post {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: #f9fafb;
    border-radius: var(--juezhao-radius);
    text-decoration: none;
    transition: var(--juezhao-transition);
}

.nav-post:hover {
    background: #f3f4f6;
}

.nav-post.next {
    text-align: right;
}

.nav-label {
    font-size: 0.8rem;
    color: var(--juezhao-text-secondary);
    margin-bottom: 0.25rem;
}

.nav-title {
    font-weight: 600;
    color: var(--juezhao-blue-dark);
    font-size: 0.95rem;
}

/* ============================================
   页面模板
   ============================================ */
.page-content {
    padding: 2rem 0;
}

.page-header {
    background: linear-gradient(135deg, var(--juezhao-blue-dark) 0%, var(--juezhao-blue) 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
}

.page-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
}

.page-wrapper {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--juezhao-bg-primary);
    border-radius: var(--juezhao-radius-lg);
    box-shadow: var(--juezhao-shadow);
}

.page-content .page-featured-image {
    margin: 0 0 1.5rem;
}

.page-content .page-featured-image img {
    width: 100%;
    height: auto;
    border-radius: var(--juezhao-radius);
}

.page-content {
    font-size: 1.05rem;
    line-height: 1.85;
}

.page-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--juezhao-blue-dark);
}

.page-content p {
    margin-bottom: 1.25rem;
}

/* ============================================
   归档页面
   ============================================ */
.archive-page,
.search-page {
    padding: 2rem 0;
}

.archive-header,
.search-header {
    background: linear-gradient(135deg, var(--juezhao-blue-dark) 0%, var(--juezhao-blue) 100%);
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.archive-title,
.search-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.archive-description,
.search-count {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.archive-content,
.search-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.list-post-item {
    background: var(--juezhao-bg-primary);
    padding: 2rem;
    border-radius: var(--juezhao-radius-lg);
    box-shadow: var(--juezhao-shadow);
    transition: var(--juezhao-transition);
}

.list-post-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--juezhao-shadow-lg);
}

.list-post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--juezhao-text-secondary);
}

.list-post-date {
    color: var(--juezhao-blue);
    font-weight: 500;
}

.list-post-item .post-category {
    background: transparent;
    padding: 0;
    color: var(--juezhao-gold);
    font-weight: 600;
}

.list-post-title {
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
}

.list-post-title a {
    color: var(--juezhao-text-primary);
    text-decoration: none;
    transition: var(--juezhao-transition);
}

.list-post-title a:hover {
    color: var(--juezhao-blue);
}

.list-post-excerpt {
    color: var(--juezhao-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.list-post-readmore {
    display: inline-block;
    color: var(--juezhao-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.list-post-readmore:hover {
    color: var(--juezhao-gold);
}

/* ============================================
   搜索无结果
   ============================================ */
.no-posts {
    text-align: center;
    padding: 4rem 2rem;
}

.no-posts h2 {
    font-size: 1.75rem;
    color: var(--juezhao-text-primary);
    margin-bottom: 1rem;
}

.no-posts p {
    color: var(--juezhao-text-secondary);
    margin-bottom: 2rem;
}

.search-form-box {
    max-width: 400px;
    margin: 0 auto;
}

.search-form-box .search-field {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: var(--juezhao-radius);
    font-size: 1rem;
    transition: var(--juezhao-transition);
}

.search-form-box .search-field:focus {
    outline: none;
    border-color: var(--juezhao-blue);
}

.search-form-box .search-submit {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.875rem;
    background: var(--juezhao-blue);
    color: white;
    border: none;
    border-radius: var(--juezhao-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--juezhao-transition);
}

.search-form-box .search-submit:hover {
    background: var(--juezhao-blue-dark);
}

/* ============================================
   404页面
   ============================================ */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.error-container {
    text-align: center;
    max-width: 500px;
}

.error-visual {
    position: relative;
    margin-bottom: 2rem;
}

.error-number {
    font-size: 7rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--juezhao-blue) 0%, var(--juezhao-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.error-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.error-title {
    font-size: 2rem;
    color: var(--juezhao-text-primary);
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.1rem;
    color: var(--juezhao-text-secondary);
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ============================================
   分页
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--juezhao-bg-primary);
    border: 1px solid #e5e7eb;
    border-radius: var(--juezhao-radius);
    font-size: 0.95rem;
    color: var(--juezhao-text-primary);
    text-decoration: none;
    transition: var(--juezhao-transition);
}

.pagination .page-numbers:hover {
    background: var(--juezhao-blue);
    border-color: var(--juezhao-blue);
    color: white;
}

.pagination .page-numbers.current {
    background: var(--juezhao-blue-dark);
    border-color: var(--juezhao-blue-dark);
    color: white;
    font-weight: 600;
}

.pagination .prev,
.pagination .next {
    padding: 0 1rem;
}
