:root {
  --bg: #040f1a;
  --bg2: #071726;
  --card-bg: #0b2233;
  --primary: #00c8d4;
  --accent: #00e5b0;
  --blue: #0ea5e9;
  --navy: #e0f7fa;
  --red: #f43f5e;
  --gold: #fbbf24;
  --green: #00e5b0;
  --text: #cde8ed;
  --text2: #6ab8c4;
  --border: rgba(0,200,212,0.18);
  --shadow: 0 4px 24px rgba(0,200,212,0.08);
  --radius: 12px;
  --transition: all 0.2s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'Noto Sans SC', 'PingFang SC', sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(4,15,26,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,200,212,0.12); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 1.5rem; height: 60px; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; font-weight: 900; color: var(--primary); font-family: 'Oswald', sans-serif; font-size: 1.15rem; letter-spacing: 0.04em; }
.nav-logo span.dot { color: var(--accent); }
.nav-links { display: flex; gap: 1.2rem; align-items: center; }
.nav-links a { font-size: 0.85rem; color: var(--text2); text-decoration: none; transition: var(--transition); }
.nav-links a:hover { color: var(--primary); }
.nav-live-btn { background: linear-gradient(90deg, var(--red), #ff6b8a); color: #fff !important; padding: 0.38rem 0.9rem; border-radius: 6px; font-size: 0.82rem; font-weight: 700; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
@media(max-width:700px) {
  .nav-toggle { display: flex; }
  .nav-links { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--bg2); flex-direction: column; align-items: flex-start; padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); gap: 0.8rem; }
  .nav-links.open { display: flex; }
  .hide-sm { display: none !important; }
}

/* ===== TICKER ===== */
.ticker-bar { background: linear-gradient(90deg, var(--primary), var(--accent)); overflow: hidden; height: 36px; display: flex; align-items: center; margin-top: 60px; }
.ticker-inner { display: flex; gap: 3rem; animation: ticker-scroll 35s linear infinite; white-space: nowrap; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { font-size: 0.8rem; font-weight: 700; color: #040f1a; display: flex; align-items: center; gap: 0.4rem; }
.ticker-tag { background: rgba(4,15,26,0.2); border-radius: 4px; padding: 1px 6px; font-size: 0.72rem; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #040f1a 0%, #062035 50%, #071c2e 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,200,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(0,200,212,0.1); border: 1px solid rgba(0,200,212,0.3); border-radius: 20px; padding: 0.3rem 0.9rem; font-size: 0.78rem; color: var(--primary); font-weight: 600; margin-bottom: 1.2rem; }
.hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(2rem,6vw,3.5rem); font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 0.8rem; }
.hero h1 em { color: var(--primary); font-style: normal; }
.hero-sub { font-size: clamp(0.95rem,2vw,1.1rem); color: var(--text2); max-width: 560px; margin: 0 auto 2rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(90deg, var(--primary), var(--accent)); color: #040f1a; font-weight: 800; padding: 0.75rem 2rem; border-radius: 8px; text-decoration: none; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.4rem; transition: var(--transition); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,200,212,0.35); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); font-weight: 700; padding: 0.73rem 1.8rem; border-radius: 8px; text-decoration: none; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 0.4rem; transition: var(--transition); }
.btn-outline:hover { background: rgba(0,200,212,0.1); }
.hero-stats { display: flex; gap: 2.5rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--primary); }
.hero-stat-label { font-size: 0.78rem; color: var(--text2); margin-top: 0.15rem; }

/* ===== SECTIONS ===== */
.section { padding: 4rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.8rem; flex-wrap: wrap; gap: 0.8rem; }
.section-title { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 0.5rem; }
.section-title::before { content: ''; display: inline-block; width: 4px; height: 1.2em; background: var(--primary); border-radius: 2px; }
.section-more { font-size: 0.82rem; color: var(--primary); text-decoration: none; display: flex; align-items: center; gap: 0.2rem; }
.section-more:hover { color: var(--accent); }

/* ===== PICKS GRID ===== */
.picks-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.pick-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pick-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--primary), var(--accent)); }
.pick-card:hover { border-color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow); }
.pick-league { font-size: 0.72rem; color: var(--text2); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.6rem; }
.pick-teams { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; margin-bottom: 0.8rem; }
.pick-team { font-size: 0.9rem; font-weight: 700; color: #fff; text-align: center; flex: 1; }
.pick-vs { font-size: 0.75rem; color: var(--text2); font-weight: 600; }
.pick-time { font-size: 0.72rem; color: var(--text2); margin-bottom: 0.8rem; }
.pick-rec { background: rgba(0,200,212,0.1); border: 1px solid rgba(0,200,212,0.25); border-radius: 6px; padding: 0.5rem 0.7rem; display: flex; justify-content: space-between; align-items: center; }
.pick-rec-label { font-size: 0.78rem; color: var(--text2); }
.pick-rec-val { font-size: 0.88rem; font-weight: 800; color: var(--primary); }
.pick-badge { display: inline-block; font-size: 0.68rem; font-weight: 700; border-radius: 4px; padding: 2px 6px; margin-top: 0.5rem; }
.pick-badge.free { background: rgba(0,229,176,0.15); color: var(--accent); }
.pick-badge.vip { background: rgba(251,191,36,0.15); color: var(--gold); }

/* ===== LIVE GRID ===== */
.live-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.live-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: var(--transition);
  cursor: pointer;
}
.live-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.live-card-top { display: flex; justify-content: space-between; align-items: center; }
.live-label { display: flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; font-weight: 700; color: var(--red); text-transform: uppercase; }
.live-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.live-sport { font-size: 0.72rem; color: var(--text2); }
.live-teams { display: flex; align-items: center; gap: 0.6rem; }
.live-team { flex: 1; }
.live-team-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.live-team-score { font-family: 'Oswald', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); }
.live-sep { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--text2); }
.live-meta { font-size: 0.73rem; color: var(--text2); display: flex; gap: 0.8rem; }
.live-watch-btn { background: linear-gradient(90deg, var(--primary), var(--accent)); color: #040f1a; font-weight: 700; border: none; border-radius: 6px; padding: 0.45rem 1rem; font-size: 0.82rem; cursor: pointer; width: 100%; text-align: center; text-decoration: none; display: block; }

/* ===== NEWS GRID ===== */
.news-layout { display: grid; grid-template-columns: 1fr 340px; gap: 1.5rem; }
.news-featured {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news-featured-tag { display: inline-block; background: rgba(0,200,212,0.12); color: var(--primary); font-size: 0.72rem; font-weight: 700; border-radius: 4px; padding: 2px 8px; border: 1px solid rgba(0,200,212,0.3); }
.news-featured-title { font-size: 1.2rem; font-weight: 800; color: #fff; line-height: 1.4; }
.news-featured-desc { font-size: 0.88rem; color: var(--text2); line-height: 1.7; }
.news-featured-meta { font-size: 0.75rem; color: var(--text2); }
.news-read-btn { align-self: flex-start; background: rgba(0,200,212,0.1); border: 1px solid var(--primary); color: var(--primary); border-radius: 6px; padding: 0.4rem 1rem; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: var(--transition); }
.news-read-btn:hover { background: rgba(0,200,212,0.2); }
.news-list { display: flex; flex-direction: column; gap: 0.7rem; }
.news-item {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}
.news-item:hover { border-color: var(--primary); transform: translateX(3px); }
.news-item-tag { font-size: 0.68rem; color: var(--accent); font-weight: 700; margin-bottom: 0.3rem; }
.news-item-title { font-size: 0.88rem; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 0.3rem; }
.news-item-meta { font-size: 0.72rem; color: var(--text2); }

/* ===== STANDINGS ===== */
.standings-tabs { display: flex; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.standings-tab { background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; padding: 0.35rem 0.9rem; font-size: 0.82rem; color: var(--text2); cursor: pointer; transition: var(--transition); }
.standings-tab.active { background: var(--primary); color: #040f1a; font-weight: 700; border-color: var(--primary); }
.standings-table { width: 100%; border-collapse: collapse; }
.standings-table th { font-size: 0.72rem; color: var(--text2); font-weight: 600; padding: 0.5rem 0.8rem; text-align: left; border-bottom: 1px solid var(--border); }
.standings-table td { font-size: 0.83rem; color: var(--text); padding: 0.55rem 0.8rem; border-bottom: 1px solid rgba(0,200,212,0.06); }
.standings-table tr:hover td { background: rgba(0,200,212,0.04); }
.standings-table td.rank { font-family: 'Oswald', sans-serif; font-weight: 700; color: var(--primary); width: 30px; }
.standings-table td.team-name { font-weight: 700; color: #fff; }
.standings-table td.pts { font-family: 'Oswald', sans-serif; font-weight: 700; color: var(--primary); }
.cl-zone td.rank { color: var(--accent); }
.rel-zone td.rank { color: var(--red); }
.standings-wrap { background: var(--card-bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.2rem; }

/* ===== WORLD CUP SECTION ===== */
.wc-banner {
  background: linear-gradient(135deg, #071c30 0%, #0a2840 50%, #071c30 100%);
  border: 1.5px solid rgba(0,200,212,0.25);
  border-radius: var(--radius);
  padding: 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.wc-banner::before {
  content: '🏆';
  position: absolute;
  right: -20px; top: -30px;
  font-size: 8rem;
  opacity: 0.05;
  line-height: 1;
}
.wc-info h2 { font-family: 'Oswald', sans-serif; font-size: 1.6rem; color: #fff; margin-bottom: 0.5rem; }
.wc-info h2 em { color: var(--primary); font-style: normal; }
.wc-info p { font-size: 0.9rem; color: var(--text2); line-height: 1.7; }
.wc-picks { display: flex; flex-direction: column; gap: 0.6rem; }
.wc-pick { background: rgba(0,200,212,0.06); border: 1px solid rgba(0,200,212,0.15); border-radius: 8px; padding: 0.7rem 1rem; display: flex; justify-content: space-between; align-items: center; }
.wc-pick-match { font-size: 0.88rem; font-weight: 700; color: #fff; }
.wc-pick-rec { font-size: 0.82rem; color: var(--primary); font-weight: 700; }
.wc-pick-conf { font-size: 0.72rem; color: var(--text2); }

/* ===== FAQ ===== */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item { border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--card-bg); }
.faq-item[open] { border-color: var(--primary); }
.faq-q { padding: 0.9rem 1.1rem; cursor: pointer; font-weight: 600; color: #fff; font-size: 0.92rem; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '＋'; color: var(--text2); font-size: 1rem; flex-shrink: 0; }
.faq-item[open] .faq-q::after { content: '－'; color: var(--primary); }
.faq-a { padding: 0 1.1rem 1rem; font-size: 0.87rem; color: var(--text2); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 0.8rem; }

/* ===== GUIDE NAV ===== */
.guide-nav { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.8rem; }
.guide-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: var(--transition);
}
.guide-card:hover { border-color: var(--primary); background: rgba(0,200,212,0.05); transform: translateY(-2px); }
.guide-card strong { font-size: 0.88rem; color: #fff; }
.guide-card span { font-size: 0.75rem; color: var(--text2); }

/* ===== FOOTER ===== */
.footer { background: #020c16; border-top: 1px solid var(--border); padding: 3rem 1.5rem 2rem; margin-top: 3rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand-name { font-family: 'Oswald', sans-serif; font-size: 1.2rem; color: var(--primary); font-weight: 700; margin-bottom: 0.5rem; }
.footer-brand-desc { font-size: 0.82rem; color: var(--text2); line-height: 1.7; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 0.8rem; }
.footer-col a { display: block; font-size: 0.8rem; color: var(--text2); text-decoration: none; margin-bottom: 0.4rem; transition: var(--transition); }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { max-width: 1200px; margin: 2rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--text2); }

/* ===== ARTICLE PAGES ===== */
.art-wrap { max-width: 960px; margin: 0 auto; padding: 80px 1.5rem 80px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text2); margin-bottom: 20px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text2); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.bc-sep { color: var(--text2); }
.art-hero-box {
  background: linear-gradient(135deg, #051c30 0%, #083347 100%);
  border: 1.5px solid rgba(0,200,212,0.25);
  padding: 2.5rem 2rem; border-radius: var(--radius); margin-bottom: 2.5rem;
  position: relative; overflow: hidden;
}
.art-hero-box::after { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(0,200,212,0.15), transparent); pointer-events: none; }
.art-eyebrow { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 0.5rem; font-weight: 700; }
.art-h1 { font-size: clamp(1.4rem,3.5vw,2rem); font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 0.7rem; font-family: 'Oswald', sans-serif; }
.art-desc { font-size: 0.95rem; color: var(--text2); line-height: 1.7; max-width: 680px; }
.art-cta-btn { display: inline-block; margin-top: 1.2rem; background: linear-gradient(90deg, var(--primary), var(--accent)); color: #040f1a; font-weight: 800; padding: 0.65rem 1.4rem; border-radius: 8px; text-decoration: none; font-size: 0.9rem; }
.art-body { display: flex; flex-direction: column; gap: 2rem; }
.art-section { background: var(--card-bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); }
.art-h2 { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--primary); font-family: 'Oswald', sans-serif; }
.art-lead { color: var(--text2); font-size: 0.9rem; margin: 0.5rem 0 1.2rem; line-height: 1.7; }
.art-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; margin-top: 1rem; }
.art-card { background: var(--bg2); border: 1.5px solid var(--border); border-radius: 8px; padding: 1rem; }
.art-h3 { font-size: 0.92rem; font-weight: 700; color: var(--primary); margin-bottom: 0.4rem; }
.art-card p { font-size: 0.84rem; color: var(--text2); line-height: 1.6; margin-top: 0.25rem; }
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 0.8rem; }
.related-card { border: 1.5px solid var(--border); border-radius: 8px; padding: 0.9rem; text-decoration: none; color: inherit; display: block; transition: var(--transition); background: var(--card-bg); }
.related-card:hover { border-color: var(--primary); background: rgba(0,200,212,0.05); }
.related-card strong { display: block; font-size: 0.88rem; color: #fff; margin-bottom: 0.2rem; }
.related-card span { font-size: 0.75rem; color: var(--text2); }

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  .news-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .wc-banner { grid-template-columns: 1fr; }
  .wc-banner::before { display: none; }
}
@media(max-width:640px) {
  .hero { padding: 4rem 1rem 3rem; }
  .picks-grid, .live-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .guide-nav { grid-template-columns: repeat(2, 1fr); }
  .art-cards, .related-grid { grid-template-columns: 1fr; }
  .art-hero-box { padding: 1.5rem 1rem; }
  .art-section { padding: 1.2rem; }
  .hero-stats { gap: 1.5rem; }
}
