/* ===== ROOT ===== */
:root {
  --red:        #dc2626;
  --red-d:      #b91c1c;
  --red-dd:     #991b1b;
  --red-ddd:    #7f1d1d;
  --red-pale:   #fee2e2;
  --red-ghost:  #fff5f5;
  --yellow:     #eab308;
  --yellow-d:   #ca8a04;
  --yellow-l:   #fde047;
  --yellow-pale:#fefce8;
  --yellow-ghost:#fffbeb;
  --dark:       #1c0a00;
  --dark2:      #431407;
  --dark3:      #78350f;
  --gray:       #6b7280;
  --border:     #fde68a;
  --white:      #ffffff;
  --bg:         #fffbeb;
  --radius:     10px;
  --radius-lg:  16px;
  --sh-sm:      0 1px 6px rgba(185,28,28,.07);
  --sh:         0 4px 18px rgba(185,28,28,.11);
  --sh-lg:      0 8px 30px rgba(185,28,28,.17);
}

/* ===== RESET ===== */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
body { font-family:-apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Microsoft YaHei',sans-serif; background:var(--bg); color:var(--dark); line-height:1.6; }
a { color:var(--red-d); text-decoration:none; }
a:hover { color:var(--red); }
.wrap { max-width:1240px; margin:0 auto; padding:0 1.25rem; }

/* ===== BREAKING BAR ===== */
.breaking-bar {
  background:var(--red);
  display:flex;
  align-items:center;
  height:32px;
  overflow:hidden;
}
.breaking-label {
  background:var(--red-ddd);
  color:#fff;
  font-size:.72rem;
  font-weight:800;
  padding:0 .85rem;
  height:100%;
  display:flex;
  align-items:center;
  gap:.35rem;
  white-space:nowrap;
  flex-shrink:0;
  letter-spacing:.5px;
}
.breaking-dot {
  width:7px;
  height:7px;
  border-radius:50%;
  background:#fde047;
  animation:blink-dot 1s infinite;
  flex-shrink:0;
}
@keyframes blink-dot { 0%,100%{opacity:1} 50%{opacity:.2} }
.breaking-scroll { flex:1; overflow:hidden; height:100%; display:flex; align-items:center; }
.breaking-inner {
  display:flex;
  white-space:nowrap;
  animation:breaking-move 40s linear infinite;
  color:#fff;
  font-size:.8rem;
}
.breaking-item { padding:0 2.5rem; }
.breaking-item::before { content:'●'; margin-right:.6rem; color:var(--yellow-l); }
@keyframes breaking-move { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ===== TOP BAR ===== */
.topbar {
  background:var(--dark);
  color:rgba(255,255,255,.6);
  font-size:.75rem;
  padding:.28rem 0;
}
.topbar .wrap { display:flex; justify-content:space-between; align-items:center; }
.topbar-date { display:flex; align-items:center; gap:.5rem; }
.topbar-date span { color:var(--yellow-l); font-weight:600; }
.topbar-links { display:flex; gap:1.25rem; }
.topbar-links a { color:rgba(255,255,255,.55); transition:color .2s; }
.topbar-links a:hover { color:var(--yellow-l); }

/* ===== NAVBAR ===== */
.navbar {
  background:var(--white);
  border-bottom:3px solid var(--red);
  position:sticky;
  top:0;
  z-index:200;
  box-shadow:var(--sh-sm);
  transition:box-shadow .3s;
}
.navbar.scrolled { box-shadow:var(--sh); }
.navbar .wrap { display:flex; align-items:center; height:62px; gap:1rem; }
.nav-links { display:flex; gap:.2rem; margin-left:auto; align-items:center; }
.nav-links a {
  color:var(--dark2);
  font-size:.88rem;
  font-weight:600;
  padding:.38rem .8rem;
  border-radius:6px;
  transition:background .2s, color .2s;
}
.nav-links a:hover { background:var(--red-ghost); color:var(--red-d); }
.nav-cta {
  background:linear-gradient(135deg,var(--red-dd),var(--red)) !important;
  color:#fff !important;
  padding:.4rem 1.1rem !important;
  border-radius:20px !important;
  font-weight:700 !important;
  margin-left:.5rem;
  box-shadow:0 2px 10px rgba(185,28,28,.3);
  transition:transform .2s, box-shadow .2s !important;
}
.nav-cta:hover { transform:translateY(-1px); box-shadow:0 4px 14px rgba(185,28,28,.4); }
.nav-toggle { display:none; background:none; border:2px solid var(--red-pale); border-radius:6px; padding:.3rem .52rem; cursor:pointer; color:var(--red-d); font-size:1.1rem; margin-left:auto; }

/* ===== CATEGORY NAV ===== */
.cat-nav {
  background:var(--red-ddd);
  position:sticky;
  top:62px;
  z-index:199;
  overflow-x:auto;
  scrollbar-width:none;
}
.cat-nav::-webkit-scrollbar { display:none; }
.cat-tabs { display:flex; white-space:nowrap; }
.cat-tab {
  color:rgba(255,255,255,.7);
  font-size:.86rem;
  font-weight:600;
  padding:.55rem 1.15rem;
  border-bottom:3px solid transparent;
  cursor:pointer;
  transition:all .2s;
  display:block;
  flex-shrink:0;
}
.cat-tab:hover { color:var(--yellow-l); background:rgba(255,255,255,.06); text-decoration:none; }
.cat-tab.active { color:var(--yellow-l); border-bottom-color:var(--yellow-l); }

/* ===== HERO ===== */
.hero-section {
  background:linear-gradient(145deg,var(--dark) 0%,var(--dark2) 55%,var(--red-ddd) 100%);
  min-height:400px;
  display:flex;
  align-items:flex-end;
  position:relative;
  overflow:hidden;
}
.hero-section::before {
  content:'⚽';
  position:absolute;
  right:-3rem;
  top:50%;
  transform:translateY(-50%);
  font-size:22rem;
  opacity:.04;
  pointer-events:none;
  user-select:none;
}
.hero-section::after {
  content:'2026';
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  font-size:12rem;
  font-weight:900;
  color:rgba(255,255,255,.02);
  pointer-events:none;
  user-select:none;
  letter-spacing:-0.05em;
}
.hero-inner { padding:2.5rem 1.25rem; max-width:1240px; margin:0 auto; width:100%; position:relative; z-index:1; display:grid; grid-template-columns:1fr 360px; gap:2rem; align-items:end; }
.hero-left {}
.hero-cat-badge { display:inline-flex; align-items:center; gap:.35rem; background:var(--red); color:#fff; font-size:.72rem; font-weight:800; padding:.2rem .7rem; border-radius:12px; margin-bottom:.85rem; letter-spacing:.5px; }
.hero-title { font-size:2rem; font-weight:900; color:#fff; line-height:1.22; margin-bottom:.75rem; }
.hero-title span { color:var(--yellow-l); }
.hero-excerpt { font-size:.92rem; color:rgba(255,255,255,.72); line-height:1.7; margin-bottom:1.25rem; max-width:580px; }
.hero-meta-row { display:flex; align-items:center; gap:1.25rem; flex-wrap:wrap; }
.hero-meta-item { font-size:.78rem; color:rgba(255,255,255,.55); display:flex; align-items:center; gap:.3rem; }
.hero-read-btn {
  background:var(--yellow);
  color:var(--dark);
  padding:.6rem 1.35rem;
  border-radius:8px;
  font-weight:800;
  font-size:.9rem;
  box-shadow:0 3px 12px rgba(234,179,8,.4);
  transition:transform .2s, box-shadow .2s;
  display:inline-block;
}
.hero-read-btn:hover { transform:translateY(-2px); box-shadow:0 5px 18px rgba(234,179,8,.5); color:var(--dark); }
.hero-side { display:flex; flex-direction:column; gap:.82rem; }
.hero-side-card {
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  border-radius:var(--radius);
  padding:.9rem 1rem;
  cursor:pointer;
  transition:background .2s;
  display:flex;
  gap:.75rem;
  align-items:flex-start;
}
.hero-side-card:hover { background:rgba(255,255,255,.17); }
.hero-side-num { font-size:1.5rem; font-weight:900; color:rgba(255,255,255,.12); line-height:1; flex-shrink:0; width:28px; }
.hero-side-title { font-size:.85rem; font-weight:700; color:rgba(255,255,255,.85); line-height:1.38; }
.hero-side-meta { font-size:.7rem; color:rgba(255,255,255,.45); margin-top:.28rem; }

/* ===== CONTENT GRID ===== */
.content-area { padding:2rem 0 3rem; }
.content-grid { display:grid; grid-template-columns:1fr 310px; gap:2rem; align-items:start; }

/* ===== SECTION BLOCK ===== */
.content-block { margin-bottom:2.25rem; }
.block-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:1.25rem; }
.block-title {
  font-size:1.2rem;
  font-weight:900;
  color:var(--dark2);
  display:flex;
  align-items:center;
  gap:.55rem;
  border-left:4px solid var(--red);
  padding-left:.75rem;
}
.block-more { font-size:.82rem; color:var(--red-d); font-weight:600; }
.block-more:hover { color:var(--red); }

/* ===== FIXTURE CARDS ===== */
.fixture-scroll { display:flex; gap:1rem; overflow-x:auto; padding-bottom:.5rem; scrollbar-width:none; }
.fixture-scroll::-webkit-scrollbar { display:none; }
.fixture-card {
  flex-shrink:0;
  width:220px;
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:1.15rem;
  box-shadow:var(--sh-sm);
  border:1px solid var(--border);
  transition:box-shadow .2s, transform .2s;
  position:relative;
  overflow:hidden;
}
.fixture-card:hover { box-shadow:var(--sh); transform:translateY(-2px); }
.fixture-card::before { content:''; position:absolute; top:0; left:0; width:100%; height:3px; background:linear-gradient(90deg,var(--red),var(--yellow)); }
.fixture-badge { font-size:.68rem; font-weight:700; padding:.1rem .45rem; border-radius:8px; display:inline-block; margin-bottom:.65rem; }
.badge-wc { background:#fee2e2; color:var(--red-d); }
.badge-preview { background:var(--yellow-pale); color:var(--yellow-d); }
.fixture-teams { text-align:center; margin:.35rem 0 .65rem; }
.fixture-team { font-size:.88rem; font-weight:800; color:var(--dark); }
.fixture-vs { color:var(--red); font-weight:900; font-size:.82rem; margin:.3rem 0; }
.fixture-date { text-align:center; font-size:.72rem; color:var(--dark3); margin-bottom:.75rem; }
.fixture-preview { font-size:.73rem; color:var(--gray); line-height:1.5; border-top:1px solid var(--border); padding-top:.65rem; }

/* ===== NEWS FEED ===== */
.news-feed { display:flex; flex-direction:column; gap:1rem; }
.news-card {
  background:var(--white);
  border-radius:var(--radius-lg);
  box-shadow:var(--sh-sm);
  display:grid;
  grid-template-columns:90px 1fr;
  overflow:hidden;
  border:1px solid transparent;
  transition:box-shadow .2s, border-color .2s;
  cursor:pointer;
}
.news-card:hover { box-shadow:var(--sh); border-color:var(--border); }
.news-card-img {
  background:linear-gradient(135deg,var(--red-dd),var(--red));
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2.2rem;
  flex-shrink:0;
}
.news-card-body { padding:.9rem 1rem; }
.news-card-tags { display:flex; gap:.35rem; margin-bottom:.4rem; flex-wrap:wrap; }
.news-tag { font-size:.65rem; font-weight:700; padding:.08rem .42rem; border-radius:8px; }
.tag-wc  { background:#fee2e2; color:var(--red-d); }
.tag-analysis { background:var(--yellow-pale); color:var(--yellow-d); }
.tag-news { background:#dbeafe; color:#1d4ed8; }
.tag-team { background:#dcfce7; color:#15803d; }
.tag-hot { background:#fef3c7; color:#d97706; }
.news-card-title { font-size:.92rem; font-weight:800; color:var(--dark); line-height:1.38; margin-bottom:.4rem; }
.news-card-excerpt { font-size:.75rem; color:var(--gray); line-height:1.55; margin-bottom:.5rem; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.news-card-meta { display:flex; align-items:center; gap:.85rem; font-size:.7rem; color:#9ca3af; }
.news-card-meta-item { display:flex; align-items:center; gap:.25rem; }

/* ===== ANALYSIS GRID ===== */
.analysis-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.analysis-card {
  background:var(--white);
  border-radius:var(--radius-lg);
  padding:1.25rem;
  box-shadow:var(--sh-sm);
  border:1px solid var(--border);
  transition:box-shadow .2s, transform .2s;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}
.analysis-card:hover { box-shadow:var(--sh); transform:translateY(-2px); }
.analysis-card::after { content:attr(data-emoji); position:absolute; bottom:-1rem; right:-.5rem; font-size:4.5rem; opacity:.06; pointer-events:none; }
.analysis-icon { font-size:1.8rem; margin-bottom:.7rem; }
.analysis-cat { font-size:.7rem; font-weight:700; color:var(--red-d); text-transform:uppercase; letter-spacing:.5px; margin-bottom:.35rem; }
.analysis-title { font-size:.92rem; font-weight:800; color:var(--dark); line-height:1.38; margin-bottom:.45rem; }
.analysis-meta { font-size:.72rem; color:var(--gray); display:flex; gap:.7rem; }
.analysis-card.featured { background:linear-gradient(135deg,var(--red-ddd),var(--red-dd)); color:#fff; grid-column:span 2; }
.analysis-card.featured .analysis-cat { color:var(--yellow-l); }
.analysis-card.featured .analysis-title { color:#fff; font-size:1.05rem; }
.analysis-card.featured .analysis-meta { color:rgba(255,255,255,.6); }

/* ===== SIDEBAR ===== */
.sidebar-col { display:flex; flex-direction:column; gap:1.25rem; }
.sw { background:var(--white); border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--sh-sm); }
.sw-header {
  padding:.75rem 1.1rem;
  font-size:.92rem;
  font-weight:800;
  color:var(--dark2);
  background:var(--yellow-pale);
  border-bottom:2px solid var(--yellow);
  display:flex;
  align-items:center;
  gap:.45rem;
}
.sw-header .sw-icon { font-size:1rem; }
.sw-body { padding:1rem 1.1rem; }

/* Hot Today */
.hot-list { display:flex; flex-direction:column; gap:.7rem; }
.hot-item { display:flex; gap:.7rem; align-items:flex-start; cursor:pointer; }
.hot-num {
  width:22px;
  height:22px;
  border-radius:5px;
  font-size:.72rem;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  margin-top:.1rem;
}
.hot-num.top3 { background:var(--red); color:#fff; }
.hot-num.rest { background:var(--yellow-pale); color:var(--yellow-d); }
.hot-title { font-size:.83rem; font-weight:700; color:var(--dark); line-height:1.38; }
.hot-title:hover { color:var(--red-d); }
.hot-meta { font-size:.68rem; color:var(--gray); margin-top:.15rem; }

/* Expert Pick */
.expert-pick-card {
  background:linear-gradient(135deg,var(--red-ddd),var(--red-dd));
  border-radius:10px;
  padding:1rem;
  color:#fff;
  margin-bottom:.75rem;
}
.ep-league { font-size:.7rem; opacity:.7; margin-bottom:.4rem; }
.ep-teams { font-size:.95rem; font-weight:800; margin-bottom:.35rem; }
.ep-rec { display:flex; align-items:center; justify-content:space-between; }
.ep-rec-val { font-size:.9rem; font-weight:800; color:var(--yellow-l); }
.ep-conf { color:var(--yellow-l); font-size:.75rem; }
.ep-note { font-size:.72rem; opacity:.72; margin-top:.4rem; line-height:1.5; }
.ep-free-badge { display:inline-block; background:rgba(255,255,255,.15); color:rgba(255,255,255,.85); font-size:.65rem; font-weight:700; padding:.08rem .42rem; border-radius:8px; margin-bottom:.35rem; }

/* WC Standings */
.standings-mini {}
.standings-group-label { font-size:.72rem; font-weight:800; color:var(--red-d); letter-spacing:.5px; margin-bottom:.5rem; }
.standings-table { width:100%; border-collapse:collapse; font-size:.76rem; }
.standings-table th { font-weight:700; color:var(--dark3); padding:.25rem .35rem; border-bottom:1px solid var(--border); text-align:center; font-size:.68rem; }
.standings-table th:first-child { text-align:left; }
.standings-table td { padding:.3rem .35rem; border-bottom:1px solid #fef9c3; text-align:center; color:var(--dark); }
.standings-table td:first-child { text-align:left; font-weight:600; }
.standings-table tr:last-child td { border-bottom:none; }
.standings-table tr:hover td { background:var(--yellow-pale); }
.qualify-bar { width:3px; height:14px; border-radius:2px; display:inline-block; margin-right:.35rem; vertical-align:middle; }
.q-yes { background:var(--red); }
.q-maybe { background:var(--yellow); }

/* Tag Cloud */
.tag-cloud { display:flex; flex-wrap:wrap; gap:.42rem; }
.tag-pill {
  background:var(--yellow-pale);
  border:1px solid var(--border);
  color:var(--yellow-d);
  padding:.22rem .65rem;
  border-radius:20px;
  font-size:.78rem;
  font-weight:600;
  cursor:pointer;
  transition:all .2s;
}
.tag-pill:hover { background:var(--yellow); color:var(--dark); border-color:var(--yellow); text-decoration:none; }
.tag-pill.sm { font-size:.72rem; padding:.18rem .55rem; }
.tag-pill.lg { font-size:.85rem; padding:.28rem .75rem; font-weight:700; }

/* ===== GUIDE SECTION ===== */
.guide-section { padding:2.5rem 0; background:var(--white); }
.guide-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(180px,1fr)); gap:.72rem; }
.guide-item {
  background:var(--bg);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:.82rem .95rem;
  font-size:.82rem;
  font-weight:700;
  color:var(--red-d);
  display:flex;
  align-items:center;
  gap:.42rem;
  transition:all .2s;
  box-shadow:var(--sh-sm);
}
.guide-item::before { content:'›'; color:var(--red); font-size:1.1rem; flex-shrink:0; }
.guide-item:hover { background:var(--red-pale); border-color:var(--red); transform:translateY(-1px); box-shadow:var(--sh); }

/* ===== FOOTER ===== */
footer { background:var(--dark); color:rgba(255,255,255,.58); padding:2.5rem 0 1.5rem; margin-top:2rem; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:2rem; margin-bottom:1.75rem; }
.footer-brand-logo { display:inline-block; background:linear-gradient(135deg,var(--red-dd),var(--yellow-d)); padding:.25rem .85rem; border-radius:6px; font-size:1rem; font-weight:900; color:#fff; margin-bottom:.75rem; }
.footer-brand p { font-size:.8rem; line-height:1.75; max-width:255px; }
.footer-col h4 { color:rgba(255,255,255,.88); font-size:.88rem; font-weight:700; margin-bottom:.82rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.42rem; }
.footer-col ul a { color:rgba(255,255,255,.5); font-size:.8rem; transition:color .2s; }
.footer-col ul a:hover { color:var(--yellow-l); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:1.2rem; text-align:center; font-size:.78rem; }
.footer-bottom strong { color:rgba(255,255,255,.85); }

/* ===== PAGINATION DOTS ===== */
.load-more {
  display:block;
  text-align:center;
  background:var(--white);
  border:2px solid var(--border);
  border-radius:var(--radius);
  padding:.72rem;
  font-weight:700;
  font-size:.88rem;
  color:var(--red-d);
  margin-top:1rem;
  transition:all .2s;
  box-shadow:var(--sh-sm);
}
.load-more:hover { background:var(--red); color:#fff; border-color:var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width:1060px) {
  .content-grid { grid-template-columns:1fr; }
  .sidebar-col { display:grid; grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .hero-inner { grid-template-columns:1fr; }
  .hero-side { display:none; }
}
@media (max-width:768px) {
  .nav-links { display:none; flex-direction:column; position:absolute; top:62px; left:0; right:0; background:#fff; padding:1rem; box-shadow:var(--sh); gap:.2rem; z-index:199; }
  .nav-links.open { display:flex; }
  .nav-toggle { display:flex; }
  .topbar-links { display:none; }
  .analysis-grid { grid-template-columns:1fr; }
  .analysis-card.featured { grid-column:span 1; }
  .sidebar-col { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:1.25rem; }
  .hero-title { font-size:1.45rem; }
  .hero-section { min-height:300px; }
  .news-card { grid-template-columns:70px 1fr; }
  .guide-grid { grid-template-columns:repeat(auto-fill,minmax(145px,1fr)); }
}
