@charset "utf-8";

/* ===== 电竞风格主题 - Esports Theme ===== */
:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a1f2e;
  --bg-card-hover: #1f2640;
  --bg-input: #0f1420;
  --neon-cyan: #00f0ff;
  --neon-red: #ff0040;
  --neon-gold: #ffd700;
  --neon-purple: #aa00ff;
  --neon-green: #00ff88;
  --text-primary: #e8e8f0;
  --text-secondary: #8899aa;
  --text-muted: #5a6a7a;
  --border-color: #1e2a3a;
  --border-glow: rgba(0, 240, 255, 0.3);
  --glow-cyan: rgba(0, 240, 255, 0.15);
  --glow-red: rgba(255, 0, 64, 0.15);
  --glow-gold: rgba(255, 215, 0, 0.15);
  --card-radius: 6px;
  --transition-speed: 0.25s;
}

* { box-sizing: border-box; }

body {
  font-family: "Montserrat", -apple-system, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", sans-serif;
  font-size: 16px; line-height: 1.8;
  color: var(--text-primary);
  background: var(--bg-primary);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(0, 240, 255, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 0, 64, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(170, 0, 255, 0.03) 0%, transparent 50%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle grid overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

a { text-decoration: none; color: var(--text-secondary); transition: color var(--transition-speed) ease; }
a:hover { color: var(--neon-cyan); text-shadow: 0 0 8px var(--glow-cyan); }

/* ===== TOP BAR (esports scoreboard style) ===== */
.top-bar {
  background: linear-gradient(90deg, #0a0e17 0%, #111827 50%, #0a0e17 100%);
  border-bottom: 1px solid var(--border-color);
  padding: 6px 0;
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.top-bar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.5;
}

/* ===== PAPER ===== */
.paper {
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.paper-main {
  width: 100%; max-width: 960px;
  margin: 20px auto;
  padding: 36px 40px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-top: 2px solid var(--neon-cyan);
  box-shadow:
    0 0 30px rgba(0, 240, 255, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.03);
  position: relative;
}
.paper-main::before {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  width: 100px; height: 2px;
  background: linear-gradient(90deg, var(--neon-red), var(--neon-cyan));
}

/* ===== HEADER ===== */
.header {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.header-avatar { margin-bottom: 12px; }
.header-avatar img {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  transition: all 0.4s ease;
}
.header-avatar img:hover {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 40px rgba(0, 240, 255, 0.4);
}
.logo {
  font-family: 'Orbitron', 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.15);
}
.logo:hover { color: var(--neon-cyan); }
.subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  letter-spacing: 1px;
}
.nav { margin: 0; padding: 0; display: flex; gap: 4px; justify-content: center; flex-wrap: wrap; }
.nav li { list-style: none; }
.nav li a {
  color: var(--text-secondary);
  padding: 7px 20px;
  border: 1px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.25s ease;
  position: relative;
}
.nav li a:hover {
  color: var(--neon-cyan);
  border-color: var(--border-glow);
  background: rgba(0, 240, 255, 0.05);
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}
.nav li a.active {
  color: var(--neon-cyan);
  border-bottom: 2px solid var(--neon-cyan);
}

/* ===== SOCIAL ===== */
.social-links { display: flex; gap: 8px; margin-top: 8px; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-speed) ease;
}
.social-link:hover {
  background: var(--neon-cyan);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 0 16px rgba(0, 240, 255, 0.3);
  border-color: var(--neon-cyan);
}

/* ===== POST HEADER ===== */
.post-header {
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post-header .logo { font-size: 1.2rem; }

/* ===== POST LIST ===== */
.post-list { display: flex; flex-direction: column; gap: 16px; }
.post {
  padding: 24px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-left: 3px solid var(--neon-cyan);
  transition: all var(--transition-speed) ease;
  position: relative;
}
.post:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 20px var(--glow-cyan);
}
.post-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 6px;
  color: var(--text-primary);
  transition: color var(--transition-speed) ease;
  display: inline-block;
}
.post-title:hover { color: var(--neon-cyan); text-shadow: 0 0 10px var(--glow-cyan); }
.post-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.post-meta span { display: inline-flex; align-items: center; gap: 4px; }
.post-meta i { font-size: 0.75rem; }
.post-meta a { color: var(--text-muted); }
.post-meta a:hover { color: var(--neon-cyan); }
.post-except { margin-bottom: 10px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.7; }
.read-more {
  color: var(--neon-cyan);
  font-weight: 600;
  font-size: 0.85rem;
  position: relative;
}
.read-more:after { content: ' →'; transition: transform var(--transition-speed) ease; display: inline-block; }
.read-more:hover:after { transform: translateX(4px); }

/* ===== TAGS ===== */
.post-tags { margin-top: 8px; display: flex; flex-wrap: wrap; align-items: center; gap: 5px; }
.post-tags span { font-size: 0.8rem; color: var(--text-muted); }
.tag {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.72rem;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  transition: all var(--transition-speed) ease;
  font-weight: 500;
}
.tag:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
}

/* ===== PAGINATION ===== */
.paginator {
  font-size: 0.82rem;
  width: 100%;
  margin: 28px 0 12px;
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap;
}
.paginator * {
  display: block;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--transition-speed) ease;
  color: var(--text-secondary);
}
.paginator .space { border: none; background: transparent; }
.paginator a:hover {
  color: var(--neon-cyan);
  border-color: var(--border-glow);
  box-shadow: 0 0 12px var(--glow-cyan);
}
.paginator .current {
  color: var(--bg-primary);
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px var(--glow-cyan);
}

/* ===== FOOTER ===== */
.footer {
  padding: 24px 0 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--border-color);
  margin-top: 16px;
}
.footer-social { display: flex; gap: 8px; margin-bottom: 4px; }
.footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.8rem;
  transition: all var(--transition-speed) ease;
}
.footer-social a:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 12px var(--glow-cyan);
}
.footer span { text-align: center; }
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--neon-cyan); }

/* ===== POST DETAIL ===== */
.post-main { display: flex; flex-direction: column; margin-bottom: 16px; }
.post-main-title {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-primary);
  letter-spacing: 1px;
}
.post-main .post-meta { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); }

/* ===== TABLES ===== */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 14px 0;
  font-size: 0.88rem;
  border: 1px solid var(--border-color);
}
thead th {
  background: var(--bg-card);
  color: var(--neon-cyan);
  padding: 10px 14px;
  font-weight: 600;
  text-align: left;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid var(--neon-cyan);
}
tbody td { padding: 9px 14px; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); }
tbody tr:last-child td { border-bottom: none; }
tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }
tbody tr:hover { background: rgba(0, 240, 255, 0.05); }

/* ===== ESPORTS LINEUP BOXES ===== */
.esports-lineup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.esports-lineup-single {
  grid-template-columns: 1fr;
  max-width: 600px;
}
.lineup-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
}
.lineup-box.attack {
  border-top: 2px solid var(--neon-cyan);
}
.lineup-box.attack::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--neon-cyan), transparent);
}
.lineup-box.defense {
  border-top: 2px solid var(--neon-red);
}
.lineup-box.defense::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--neon-red), transparent);
}
.lineup-box-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.lineup-box.attack .lineup-box-title { color: var(--neon-cyan); }
.lineup-box.defense .lineup-box-title { color: var(--neon-red); }
.lineup-role {
  margin-bottom: 6px;
}
.lineup-role-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  min-width: 48px;
}
.lineup-role-heroes {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
}
.lineup-analysis {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border-color);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.lineup-analysis strong {
  color: var(--neon-gold);
}

/* ===== LINEUP TABLE (for control maps) ===== */
.lineup-table-wrap { margin: 20px 0; }
.lineup-table-wrap table { margin: 0; }

/* ===== MARKDOWN CONTENT ===== */
.post-md { width: 100%; font-size: 0.92rem; line-height: 1.8; color: var(--text-secondary); }
.post-md h1 {
  font-size: 1.7rem; margin: 22px 0 10px;
  color: var(--text-primary);
  font-weight: 800;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--neon-cyan);
  letter-spacing: 1px;
}
.post-md h2 {
  font-size: 1.3rem; margin: 24px 0 8px;
  color: var(--text-primary);
  font-weight: 700;
  padding-left: 10px;
  border-left: 3px solid var(--neon-cyan);
  letter-spacing: 0.5px;
}
.post-md h3 {
  font-size: 1.1rem; margin: 18px 0 6px;
  color: var(--text-primary);
  font-weight: 600;
}
.post-md h4 { font-size: 1rem; margin: 14px 0 6px; font-weight: 600; color: var(--text-primary); }
.post-md p { margin: 8px 0; }
.post-md a { color: var(--neon-cyan); box-shadow: 0 1px 0 var(--neon-cyan); }
.post-md a:hover { box-shadow: 0 2px 0 var(--neon-cyan); text-shadow: 0 0 8px var(--glow-cyan); }
.post-md strong { font-weight: 700; color: var(--text-primary); }
.post-md em { font-style: italic; color: var(--neon-gold); }
.post-md img {
  max-width: 100%;
  height: auto;
  margin: 14px 0;
  border: 1px solid var(--border-color);
}
.post-md hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  margin: 28px 0;
  opacity: 0.5;
}
.post-md blockquote {
  border-left: 3px solid var(--neon-purple);
  padding: 12px 16px;
  margin: 14px 0;
  background: rgba(170, 0, 255, 0.05);
  color: var(--text-secondary);
}
.post-md ul, .post-md ol { padding-left: 22px; margin: 6px 0; }
.post-md li { margin: 3px 0; }
.post-md code {
  background: #1a1f2e;
  color: var(--neon-cyan);
  padding: 2px 6px;
  font-size: 0.85rem;
  font-family: 'Fira Code', 'SF Mono', monospace;
  border: 1px solid var(--border-color);
}
.post-md pre {
  background: #0f1420;
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  overflow-x: auto;
  margin: 14px 0;
}
.post-md pre code { background: none; padding: 0; border: none; }
.post-md table { width: 100%; margin: 14px 0; }

/* ===== HERO GRID ===== */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}
.hero-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 4px 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.hero-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--neon-cyan);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.hero-card:hover::after { transform: scaleX(1); }
.hero-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 16px var(--glow-cyan);
}
.hero-card img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 4px;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.hero-card:hover img { border-color: var(--neon-cyan); box-shadow: 0 0 12px var(--glow-cyan); }
.hero-name { font-size: 0.72rem; font-weight: 600; color: var(--text-primary); text-align: center; line-height: 1.2; }
.hero-diff { font-size: 0.58rem; color: var(--text-muted); margin-top: 1px; }
@media (max-width: 500px) { .hero-grid { grid-template-columns: repeat(4, 1fr); gap: 5px; } .hero-card img { width: 42px; height: 42px; } .hero-name { font-size: 0.62rem; } }

/* ===== MAP CARDS ===== */
.map-section { margin-bottom: 24px; }
.map-section h2 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border-color);
}
.map-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px; }
.map-card-sm {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.25s ease;
  padding: 8px;
  text-align: center;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}
.map-card-sm::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(0, 240, 255, 0.05));
  pointer-events: none;
}
.map-card-sm:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 16px var(--glow-cyan);
}
.map-card-sm:hover .map-name { color: var(--neon-cyan); text-shadow: 0 0 10px var(--glow-cyan); }
.map-name { position: relative; z-index: 1; transition: all 0.25s ease; }
@media (max-width: 500px) { .map-grid { grid-template-columns: repeat(3, 1fr); gap: 5px; } .map-card-sm { height: 56px; font-size: 0.75rem; } }

/* ===== NEWS ===== */
.news-item { padding: 16px 0; border-bottom: 1px solid var(--border-color); }
.news-item:last-child { border-bottom: none; }
.news-date { font-size: 0.75rem; color: var(--text-muted); margin-right: 8px; }
.news-tag {
  display: inline-block;
  padding: 1px 8px;
  font-size: 0.65rem;
  font-weight: 600;
  margin-right: 6px;
  color: var(--bg-primary);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.news-tag.patch { background: var(--neon-cyan); }
.news-tag.new { background: var(--neon-green); }
.news-tag.balance { background: var(--neon-gold); color: var(--bg-primary); }
.news-tag.map { background: var(--neon-purple); }
.news-tag.event { background: var(--neon-red); }
.news-tag.season { background: #ff8800; }
.news-item strong {
  display: block;
  font-size: 1rem;
  margin: 4px 0 2px;
  color: var(--text-primary);
}
.news-item p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== ESPORTS BADGE ===== */
.esports-badge {
  display: inline-block;
  padding: 2px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
}
.esports-badge.red { border-color: var(--neon-red); color: var(--neon-red); background: rgba(255, 0, 64, 0.08); }
.esports-badge.gold { border-color: var(--neon-gold); color: var(--neon-gold); background: rgba(255, 215, 0, 0.08); }
.esports-badge.purple { border-color: var(--neon-purple); color: var(--neon-purple); background: rgba(170, 0, 255, 0.08); }

/* ===== LANGUAGE DROPDOWN ===== */
.lang-dropdown-wrap { position: relative; display: inline-block; margin-top: 6px; }
.lang-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lang-dropdown-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 12px var(--glow-cyan);
}
.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  min-width: 130px;
  z-index: 1000;
  overflow: hidden;
}
.lang-dropdown-menu.show { display: block; }
.lang-item {
  padding: 8px 16px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s;
  color: var(--text-secondary);
  white-space: nowrap;
}
.lang-item:hover { background: rgba(0, 240, 255, 0.08); color: var(--neon-cyan); }
.lang-item.active { background: var(--neon-cyan); color: var(--bg-primary); font-weight: 600; }
.lang-filter-empty { text-align: center; padding: 40px 0; color: var(--text-muted); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 40px; height: 40px;
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 0 16px var(--glow-cyan);
  transition: all var(--transition-speed) ease;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.back-to-top:hover {
  background: var(--neon-cyan);
  color: var(--bg-primary);
  transform: translateY(-4px);
  box-shadow: 0 0 24px rgba(0, 240, 255, 0.4);
}

/* ===== SEARCH ===== */
.search-container { max-width: 650px; margin: 0 auto; }
#search-input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  font-size: 0.9rem;
  border: 1px solid var(--border-color);
  outline: none;
  background: var(--bg-input);
  color: var(--text-primary);
  transition: all var(--transition-speed) ease;
}
#search-input:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 12px var(--glow-cyan);
}
.search-results { display: flex; flex-direction: column; gap: 8px; }
.search-item {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: all var(--transition-speed) ease;
}
.search-item:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 12px var(--glow-cyan);
  transform: translateY(-2px);
}
.search-item-title { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.search-item-date { font-size: 0.78rem; color: var(--text-muted); }
.search-empty { text-align: center; padding: 40px 0; color: var(--text-muted); }

/* ===== ARCHIVE ===== */
.archive { display: flex; flex-direction: column; }
.archive li {
  display: flex;
  padding: 10px 14px;
  transition: all 0.2s ease;
  list-style: none;
  gap: 10px;
  align-items: baseline;
  border-left: 2px solid transparent;
}
.archive li:hover { border-left-color: var(--neon-cyan); background: rgba(0, 240, 255, 0.03); }
.archive li span:first-child { width: 100px; color: var(--text-muted); font-size: 0.82rem; flex-shrink: 0; }
.archive-main { flex: 1; }
.archive-title { color: var(--text-primary); font-weight: 600; transition: color 0.2s; }
.archive-title:hover { color: var(--neon-cyan); }

/* ===== SECTION DIVIDER ===== */
.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 20px;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color));
}
.section-divider::after {
  background: linear-gradient(90deg, var(--border-color), transparent);
}

/* ===== TOURNAMENT BRACKET DIVIDER ===== */
.bracket-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.bracket-divider::before,
.bracket-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 35%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color));
}
.bracket-divider::before { left: 0; }
.bracket-divider::after { right: 0; background: linear-gradient(90deg, var(--border-color), transparent); }
.bracket-divider span {
  background: var(--bg-secondary);
  padding: 0 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .paper-main { padding: 18px 16px; margin: 10px; }
  .post { padding: 16px; }
  .post-main-title { font-size: 1.2rem; }
  .post-md h1 { font-size: 1.3rem; }
  .post-md h2 { font-size: 1.1rem; }
  .back-to-top { bottom: 16px; right: 16px; width: 36px; height: 36px; }
  .header-avatar img { width: 56px; height: 56px; }
  .logo { font-size: 1.1rem; }
  .archive li { flex-direction: column; gap: 4px; }
  .archive li span:first-child { width: auto; }
  .esports-lineup { grid-template-columns: 1fr; gap: 12px; }
}
