/* ==================== RESET & VARIABLES ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #16a34a;
  --green-dark: #15803d;
  --green-light: #22c55e;
  --green-bg: #f0fdf4;
  --navy: #1e3a5f;
  --navy-dark: #0f1f3d;
  --amber: #f59e0b;
  --red: #ef4444;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --text: #1e293b;
  --text-light: #64748b;
  --border: #e2e8f0;
  --shadow: 0 1px 3px rgba(0,0,0,.1),0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1),0 4px 6px rgba(0,0,0,.05);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: .2s ease;
  --font: -apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Hiragino Sans GB','Microsoft YaHei',sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 15px; line-height: 1.6; color: var(--text); background: var(--gray-50); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: var(--font); }

/* ==================== LAYOUT ==================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.section { padding: 40px 0; }
.section-sm { padding: 24px 0; }
.main-wrap { display: grid; grid-template-columns: 1fr 280px; gap: 24px; align-items: start; padding: 24px 0; }
.main-content { min-width: 0; }

/* ==================== SECTION HEADER ==================== */
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; border-bottom: 2px solid var(--green); padding-bottom: 10px; }
.section-title { color: var(--gray-800); font-size: 1.15rem; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.section-title::before { content: ''; display: inline-block; width: 4px; height: 18px; background: var(--green); border-radius: 2px; }
.section-more { font-size: 13px; color: var(--green); display: flex; align-items: center; gap: 3px; }
.section-more:hover { color: var(--green-dark); }

/* ==================== HEADER ==================== */
.site-header { background: var(--navy-dark); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 12px rgba(0,0,0,.35); }
.header-inner { display: flex; align-items: center; height: 60px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 18px; color: var(--white); white-space: nowrap; flex-shrink: 0; }
.logo-emoji { font-size: 22px; }
.logo:hover { color: var(--green-light); }
.main-nav { display: flex; align-items: center; gap: 2px; flex: 1; overflow-x: auto; scrollbar-width: none; }
.main-nav::-webkit-scrollbar { display: none; }
.nav-link { color: rgba(255,255,255,.82); font-size: 13.5px; padding: 6px 9px; border-radius: 6px; white-space: nowrap; transition: all var(--transition); }
.nav-link:hover, .nav-link.active { background: var(--green); color: var(--white); }
.header-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.search-wrap { display: flex; align-items: center; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); border-radius: 20px; overflow: hidden; }
.search-wrap:focus-within { background: rgba(255,255,255,.15); border-color: var(--green-light); }
.search-input { background: none; border: none; outline: none; color: var(--white); padding: 6px 12px; font-size: 13px; width: 150px; }
.search-input::placeholder { color: rgba(255,255,255,.45); }
.search-btn { background: none; border: none; cursor: pointer; padding: 6px 10px; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1; }
.search-btn:hover { color: var(--green-light); }
.menu-btn { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: 1px solid rgba(255,255,255,.25); border-radius: 6px; cursor: pointer; padding: 8px; }
.menu-btn span { display: block; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }

/* ==================== TICKER ==================== */
.ticker-bar { background: var(--green); color: var(--white); padding: 7px 0; overflow: hidden; }
.ticker-inner { display: flex; align-items: center; gap: 14px; }
.ticker-label { background: var(--navy-dark); color: var(--green-light); font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 3px; white-space: nowrap; flex-shrink: 0; letter-spacing: .05em; }
.ticker-track { overflow: hidden; flex: 1; }
.ticker-content { display: inline-flex; gap: 0; white-space: nowrap; animation: ticker 35s linear infinite; font-size: 13px; }
.ticker-item { margin: 0 32px; }
@keyframes ticker { from { transform: translateX(100vw); } to { transform: translateX(-100%); } }

/* ==================== HERO ==================== */
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1a4a30 100%); padding: 48px 0 40px; position: relative; overflow: hidden; }
.hero::after { content: '⚽'; position: absolute; font-size: 320px; opacity: .03; right: -60px; bottom: -80px; line-height: 1; pointer-events: none; }
.hero-inner { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--green); color: var(--white); font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }
.hero h1 { color: var(--white); margin-bottom: 14px; font-size: clamp(1.6rem,4vw,2.5rem); line-height: 1.25; }
.hero-desc { color: rgba(255,255,255,.72); font-size: 15px; margin-bottom: 22px; max-width: 560px; line-height: 1.7; }
.hero-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--transition); border: none; }
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.38); }
.btn-outline:hover { background: rgba(255,255,255,.1); color: var(--white); }

/* Countdown */
.countdown { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 22px 26px; text-align: center; min-width: 210px; }
.countdown-title { color: rgba(255,255,255,.65); font-size: 12px; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em; }
.countdown-units { display: flex; gap: 6px; justify-content: center; align-items: flex-start; }
.countdown-unit { text-align: center; }
.countdown-num { display: block; font-size: 2.2rem; font-weight: 700; color: var(--white); line-height: 1; font-variant-numeric: tabular-nums; min-width: 48px; }
.countdown-lbl { display: block; font-size: 10px; color: rgba(255,255,255,.5); margin-top: 5px; }
.countdown-sep { color: rgba(255,255,255,.35); font-size: 1.8rem; font-weight: 700; padding-top: 4px; }
.countdown-date { color: var(--green-light); font-size: 12px; margin-top: 12px; }

/* ==================== NEWS CARDS ==================== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 16px; }
.news-grid-3 { grid-template-columns: repeat(3,1fr); }
.featured-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 16px; }
.featured-side { display: flex; flex-direction: column; gap: 16px; }
.news-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); display: flex; flex-direction: column; }
.news-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.news-thumb { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 44px; flex-shrink: 0; background: linear-gradient(135deg,var(--navy) 0%,var(--green-dark) 100%); }
.news-thumb.t-schedule { background: linear-gradient(135deg,#1e3a5f,#16a34a); }
.news-thumb.t-live { background: linear-gradient(135deg,#1e1e3f,#7c3aed); }
.news-thumb.t-prediction { background: linear-gradient(135deg,#1a2e4a,#d97706); }
.news-thumb.t-jingcai { background: linear-gradient(135deg,#2d1b4e,#db2777); }
.news-thumb.t-teams { background: linear-gradient(135deg,#1a3a2a,#16a34a); }
.news-thumb.t-players { background: linear-gradient(135deg,#3b1a1a,#ef4444); }
.news-thumb.t-standings { background: linear-gradient(135deg,#1a1a3b,#6366f1); }
.news-thumb.t-news { background: linear-gradient(135deg,#1a2b3a,#0ea5e9); }
.news-thumb.t-hot { background: linear-gradient(135deg,#3b2a1a,#f59e0b); }
.featured-card .news-thumb { height: 230px; font-size: 60px; }
.news-body { padding: 14px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.news-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.cat-tag { font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 3px; background: var(--green-bg); color: var(--green-dark); }
.news-date { font-size: 12px; color: var(--text-light); }
.news-card h3 { font-size: 14px; line-height: 1.5; color: var(--gray-800); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-card h3:hover { color: var(--green); }
.featured-card h3 { font-size: 17px; -webkit-line-clamp: 2; }
.news-excerpt { font-size: 12.5px; color: var(--text-light); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; line-height: 1.6; }
.news-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding-top: 10px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-light); }
.read-more { color: var(--green); font-weight: 600; font-size: 12px; }
.read-more:hover { color: var(--green-dark); }

/* List style news */
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-list-item { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.news-list-item:last-child { border-bottom: none; }
.news-list-thumb { width: 90px; height: 60px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.news-list-body { flex: 1; min-width: 0; }
.news-list-title { font-size: 14px; font-weight: 600; color: var(--gray-800); margin-bottom: 6px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-list-title:hover { color: var(--green); }
.news-list-meta { font-size: 12px; color: var(--text-light); display: flex; gap: 10px; }

/* ==================== MATCH CARDS ==================== */
.matches-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 12px; }
.match-card { background: var(--white); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow); border-left: 3px solid var(--green); transition: all var(--transition); }
.match-card:hover { box-shadow: var(--shadow-md); }
.match-top { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.match-phase-tag { background: var(--navy); color: var(--white); padding: 2px 7px; border-radius: 3px; font-size: 11px; font-weight: 600; }
.match-teams { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.match-team { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.team-flag { font-size: 28px; line-height: 1; }
.team-name { font-size: 13px; font-weight: 600; color: var(--gray-800); text-align: center; line-height: 1.3; }
.match-vs { font-size: 18px; font-weight: 700; color: var(--gray-300); }
.match-score-display { font-size: 22px; font-weight: 700; color: var(--navy-dark); text-align: center; line-height: 1; }
.match-bottom { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-light); flex-wrap: wrap; }
.match-time-val { font-weight: 600; color: var(--green); }
.live-badge { background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 3px; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.55} }

/* ==================== SCHEDULE TABLE ==================== */
.schedule-group { margin-bottom: 28px; }
.group-heading { font-size: 14px; font-weight: 700; color: var(--white); background: var(--navy); padding: 8px 14px; border-radius: var(--radius) var(--radius) 0 0; }
.schedule-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 0 0 var(--radius-lg) var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); font-size: 13.5px; }
.schedule-table th { background: var(--gray-50); color: var(--gray-600); padding: 9px 12px; text-align: left; font-size: 12px; font-weight: 600; border-bottom: 1px solid var(--border); }
.schedule-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--gray-700); }
.schedule-table tr:last-child td { border-bottom: none; }
.schedule-table tr:hover td { background: var(--gray-50); }
.time-cell { color: var(--green); font-weight: 600; white-space: nowrap; }
.teams-cell { font-weight: 600; color: var(--gray-800); }
.venue-cell { font-size: 12px; color: var(--text-light); }

/* ==================== STANDINGS TABLE ==================== */
.standings-wrap { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 20px; }
.standings-group-title { background: var(--navy); color: var(--white); padding: 8px 16px; font-size: 13px; font-weight: 700; }
.standings-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.standings-table thead th { background: var(--gray-50); color: var(--gray-600); padding: 8px 12px; text-align: left; font-size: 12px; font-weight: 600; border-bottom: 1px solid var(--border); }
.standings-table th:nth-child(n+4) { text-align: center; }
.standings-table td { padding: 9px 12px; border-bottom: 1px solid var(--border); color: var(--gray-700); }
.standings-table td:nth-child(n+4) { text-align: center; }
.standings-table tr:last-child td { border-bottom: none; }
.standings-table tr:hover td { background: var(--gray-50); }
.pos-num { font-weight: 700; color: var(--gray-800); }
.team-cell-name { display: flex; align-items: center; gap: 8px; }
.team-cell-name .flag { font-size: 18px; }
.qualify-row td:first-child { border-left: 3px solid var(--green); }
.qualify2-row td:first-child { border-left: 3px solid var(--green-light); }
.pts-cell { font-weight: 700; color: var(--navy); }

/* ==================== LIVE CARDS ==================== */
.live-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 14px; }
.live-card { background: var(--navy-dark); border-radius: var(--radius-lg); padding: 22px 18px; text-align: center; border: 1px solid rgba(255,255,255,.07); transition: all var(--transition); }
.live-card:hover { border-color: var(--green); transform: translateY(-2px); }
.live-icon { font-size: 38px; margin-bottom: 10px; }
.live-name { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.live-desc { font-size: 12px; color: rgba(255,255,255,.55); margin-bottom: 14px; line-height: 1.6; }
.live-tag { display: inline-block; font-size: 11px; padding: 3px 10px; border-radius: 12px; font-weight: 600; }
.live-tag.free { background: rgba(34,197,94,.2); color: #4ade80; }
.live-tag.paid { background: rgba(245,158,11,.2); color: #fbbf24; }

/* ==================== TEAM CARDS ==================== */
.teams-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(155px,1fr)); gap: 12px; }
.team-card { background: var(--white); border-radius: var(--radius-lg); padding: 20px 14px; text-align: center; box-shadow: var(--shadow); transition: all var(--transition); }
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.team-flag-lg { font-size: 42px; margin-bottom: 8px; }
.team-card-name { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 4px; }
.team-card-sub { font-size: 12px; color: var(--text-light); margin-bottom: 6px; }
.team-card-odds { font-size: 12px; color: var(--green-dark); font-weight: 600; background: var(--green-bg); padding: 3px 8px; border-radius: 3px; display: inline-block; }

/* ==================== PLAYER CARDS ==================== */
.players-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(175px,1fr)); gap: 12px; }
.player-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: all var(--transition); }
.player-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.player-header { background: linear-gradient(135deg,var(--navy),var(--navy-dark)); padding: 20px; text-align: center; font-size: 38px; }
.player-body { padding: 14px; }
.player-name { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 3px; }
.player-team { font-size: 12px; color: var(--text-light); margin-bottom: 10px; }
.player-stats { display: flex; gap: 6px; }
.pstat { flex: 1; text-align: center; background: var(--gray-50); border-radius: 6px; padding: 6px 4px; }
.pstat-num { font-size: 14px; font-weight: 700; color: var(--green); display: block; }
.pstat-lbl { font-size: 10px; color: var(--text-light); }

/* ==================== HOT SEARCH ==================== */
.hot-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(145px,1fr)); gap: 8px; }
.hot-tag { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); font-size: 13px; color: var(--gray-700); transition: all var(--transition); white-space: nowrap; overflow: hidden; }
.hot-tag:hover { border-color: var(--green); color: var(--green); background: var(--green-bg); }
.hot-num { font-size: 11px; font-weight: 700; color: var(--gray-400); width: 16px; text-align: center; flex-shrink: 0; }
.hot-num.top { color: var(--red); }

/* ==================== BREADCRUMB ==================== */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-light); padding: 14px 0 8px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb-sep { color: var(--gray-300); font-size: 12px; }
.breadcrumb-cur { color: var(--gray-700); }

/* ==================== PAGE HEADER ==================== */
.page-hero { background: linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 100%); padding: 32px 0; }
.page-hero h1 { color: var(--white); margin-bottom: 8px; font-size: clamp(1.4rem,3.5vw,2rem); }
.page-hero p { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.6; }
.page-hero .breadcrumb { padding: 0 0 14px; }
.page-hero .breadcrumb a { color: rgba(255,255,255,.55); }
.page-hero .breadcrumb-sep { color: rgba(255,255,255,.3); }
.page-hero .breadcrumb-cur { color: rgba(255,255,255,.85); }

/* ==================== ARTICLE ==================== */
.article-header { margin-bottom: 20px; }
.article-cats { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.article-title { color: var(--gray-900); margin-bottom: 0; line-height: 1.35; font-size: clamp(1.3rem,3vw,1.9rem); }
.article-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--text-light); flex-wrap: wrap; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 14px 0 24px; }
.article-meta-item { display: flex; align-items: center; gap: 5px; }
.article-body { font-size: 15px; line-height: 1.85; color: var(--gray-800); }
.article-body h2 { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin: 28px 0 14px; padding-left: 12px; border-left: 4px solid var(--green); }
.article-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--gray-800); margin: 22px 0 10px; }
.article-body p { color: var(--gray-700); margin-bottom: 18px; line-height: 1.9; }
.article-body ul, .article-body ol { padding-left: 20px; margin-bottom: 18px; color: var(--gray-700); }
.article-body li { margin-bottom: 7px; list-style: disc; }
.article-body a { color: var(--green); text-decoration: underline; }
.article-body strong { color: var(--gray-900); }
.article-body blockquote { background: var(--green-bg); border-left: 4px solid var(--green); padding: 14px 18px; margin: 20px 0; border-radius: 0 var(--radius) var(--radius) 0; }
.article-body blockquote p { color: var(--green-dark); margin: 0; }
.article-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0; padding: 16px 0; border-top: 1px solid var(--border); }
.a-tag { font-size: 12px; padding: 4px 10px; background: var(--gray-100); border: 1px solid var(--border); border-radius: 20px; color: var(--gray-600); transition: all var(--transition); }
.a-tag:hover { background: var(--green-bg); border-color: var(--green); color: var(--green-dark); }
.article-nav-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0; }
.article-nav-btn { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 14px; transition: all var(--transition); display: block; }
.article-nav-btn:hover { border-color: var(--green); }
.nav-btn-lbl { font-size: 11px; color: var(--text-light); margin-bottom: 5px; }
.nav-btn-title { font-size: 13px; font-weight: 600; color: var(--gray-800); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.article-nav-btn:hover .nav-btn-title { color: var(--green); }

/* Disclaimer */
.disclaimer { background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius-lg); padding: 14px 16px; margin: 20px 0; font-size: 13px; color: #92400e; line-height: 1.7; }
.disclaimer strong { color: #78350f; }

/* Related articles */
.related-section { margin: 28px 0; }
.related-title { font-size: 14px; font-weight: 700; color: var(--gray-800); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--green); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 12px; }

/* Internal link bar */
.ilinks-bar { margin: 24px 0; }
.ilinks-label { font-size: 12px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.ilinks-row { display: flex; gap: 8px; flex-wrap: wrap; }
.ilink { display: inline-flex; align-items: center; gap: 4px; padding: 6px 12px; background: var(--navy-dark); color: rgba(255,255,255,.8); border-radius: 4px; font-size: 12.5px; transition: all var(--transition); }
.ilink:hover { background: var(--green); color: var(--white); }

/* ==================== SIDEBAR ==================== */
.sidebar { display: flex; flex-direction: column; gap: 18px; }
.widget { background: var(--white); border-radius: var(--radius-lg); padding: 16px; box-shadow: var(--shadow); }
.widget-title { font-size: 13.5px; font-weight: 700; color: var(--gray-800); padding-bottom: 10px; margin-bottom: 12px; border-bottom: 2px solid var(--green); }
.widget-news { display: flex; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--gray-100); }
.widget-news:last-child { border-bottom: none; }
.wn-num { font-size: 13px; font-weight: 700; color: var(--gray-300); width: 18px; flex-shrink: 0; }
.wn-num.hot { color: var(--red); }
.wn-title { font-size: 13px; color: var(--gray-700); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wn-title:hover { color: var(--green); }
.quick-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.quick-nav-item { display: flex; align-items: center; gap: 5px; padding: 8px 10px; background: var(--gray-50); border-radius: var(--radius); font-size: 12.5px; color: var(--gray-700); border: 1px solid var(--border); transition: all var(--transition); }
.quick-nav-item:hover { background: var(--green-bg); border-color: var(--green); color: var(--green-dark); }

/* ==================== SEO TEXT ==================== */
.seo-block { background: var(--white); border-radius: var(--radius-lg); padding: 22px; margin-top: 30px; border: 1px solid var(--border); }
.seo-block h2 { font-size: 1.05rem; color: var(--gray-800); margin-bottom: 12px; }
.seo-block p { font-size: 13.5px; color: var(--gray-500); margin-bottom: 10px; line-height: 1.75; }
.seo-block p:last-child { margin-bottom: 0; }

/* ==================== FOOTER ==================== */
.site-footer { background: var(--gray-900); color: rgba(255,255,255,.65); padding: 44px 0 0; margin-top: 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: 13px; line-height: 1.75; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--green-light); }
.footer-disclaimer { background: rgba(245,158,11,.08); border: 1px solid rgba(245,158,11,.18); border-radius: var(--radius); padding: 10px 16px; margin-bottom: 14px; font-size: 12px; color: rgba(255,220,100,.75); text-align: center; line-height: 1.6; }
.footer-copy { text-align: center; font-size: 12.5px; color: rgba(255,255,255,.35); padding: 14px 0 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 16px 0 0; }

/* ==================== FORMS ==================== */
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-700); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-family: var(--font); color: var(--text); background: var(--white); transition: border-color var(--transition); outline: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(22,163,74,.1); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit { background: var(--green); color: var(--white); border: none; padding: 12px 28px; border-radius: var(--radius); font-size: 14px; font-weight: 600; cursor: pointer; transition: all var(--transition); }
.form-submit:hover { background: var(--green-dark); }

/* ==================== PAGINATION ==================== */
.pagination { display: flex; justify-content: center; gap: 6px; padding: 28px 0; }
.pg-btn { width: 36px; height: 36px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); color: var(--gray-700); font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); font-family: var(--font); }
.pg-btn:hover { border-color: var(--green); color: var(--green); }
.pg-btn.active { background: var(--green); border-color: var(--green); color: var(--white); }

/* ==================== MISC ==================== */
.badge { display: inline-block; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 3px; }
.badge-green { background: var(--green-bg); color: var(--green-dark); }
.badge-navy { background: var(--navy); color: var(--white); }
.badge-red { background: #fee2e2; color: #b91c1c; }
.badge-amber { background: #fef3c7; color: #92400e; }
.text-green { color: var(--green); }
.text-red { color: var(--red); }
.empty-state { text-align: center; padding: 40px 20px; color: var(--text-light); }
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .main-wrap { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .news-grid-3 { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: absolute; top: 60px; left: 0; right: 0; background: var(--navy-dark); flex-direction: column; padding: 8px; border-top: 1px solid rgba(255,255,255,.08); box-shadow: 0 8px 20px rgba(0,0,0,.3); gap: 0; z-index: 999; }
  .main-nav.open { display: flex; }
  .nav-link { padding: 11px 14px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,.05); font-size: 15px; }
  .menu-btn { display: flex; }
  .search-wrap { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .countdown { display: none; }
  .featured-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .matches-grid { grid-template-columns: 1fr; }
  .teams-grid { grid-template-columns: repeat(3,1fr); }
  .players-grid { grid-template-columns: repeat(2,1fr); }
  .article-nav-grid { grid-template-columns: 1fr; }
  .live-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 28px 0; }
  .news-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .teams-grid { grid-template-columns: repeat(2,1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .hot-grid { grid-template-columns: repeat(2,1fr); }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
