@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@500;700&display=swap');

:root {
  --bg: #0a0e14;
  --bg-2: #11161e;
  --bg-3: #1a212c;
  --paper: #ffffff;
  --ink: #0a0e14;
  --text: #f5f7fa;
  --text-2: #b8c0cc;
  --muted: #6b7785;
  --line: #232b38;
  --accent: #00ff85;
  --accent-2: #ffeb3b;
  --red: #ff3050;
  --blue: #2196f3;
  --orange: #ff8c00;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.55; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
.oswald { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: -0.5px; }
.mono { font-family: 'JetBrains Mono', monospace; }

.score-ticker { background: var(--bg-2); border-bottom: 1px solid var(--line); overflow: hidden; padding: 10px 0; position: relative; }
.score-ticker::before, .score-ticker::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.score-ticker::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.score-ticker::after { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.score-ticker-track { display: flex; gap: 32px; white-space: nowrap; animation: scroll 40s linear infinite; }
.score-item { display: inline-flex; align-items: center; gap: 12px; font-family: 'JetBrains Mono', monospace; font-size: 13px; padding-right: 32px; border-right: 1px solid var(--line); }
.score-item:last-child { border-right: 0; }
.score-item .live { color: var(--red); font-weight: 700; font-size: 11px; padding: 2px 6px; background: rgba(255,48,80,0.15); border-radius: 3px; animation: blink 1.5s infinite; }
.score-item .teams { color: var(--text-2); }
.score-item .score { color: var(--text); font-weight: 700; font-size: 14px; }
.score-item .score em { color: var(--accent); font-style: normal; }
.score-item .min { color: var(--muted); font-size: 11px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.header { background: var(--bg); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.header-inner { max-width: 1320px; margin: 0 auto; padding: 16px 32px; display: flex; align-items: center; gap: 40px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 44px; height: 44px; background: var(--accent); display: grid; place-items: center; color: var(--ink); font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 700; clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%); transform: skewX(-8deg); }
.logo-mark span { display: inline-block; transform: skewX(8deg); }
.logo-name { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 26px; line-height: 1; letter-spacing: -0.5px; text-transform: uppercase; }
.logo-name em { font-style: normal; color: var(--accent); }
.logo-sub { display: block; font-family: 'JetBrains Mono', monospace; font-size: 9px; color: var(--muted); margin-top: 4px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }
.header-nav { display: flex; gap: 28px; margin-left: auto; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Oswald', sans-serif; }
.header-nav a { color: var(--text-2); padding: 8px 0; transition: all 0.15s; position: relative; }
.header-nav a:hover, .header-nav a.active { color: var(--accent); }
.header-nav a.active::after { content: ''; position: absolute; bottom: -17px; left: 0; right: 0; height: 3px; background: var(--accent); }
.header-search { display: flex; align-items: center; background: var(--bg-2); border: 1px solid var(--line); border-radius: 6px; padding: 8px 14px; gap: 10px; min-width: 200px; }
.header-search input { background: none; border: 0; color: var(--text); font-family: 'Inter', sans-serif; font-size: 13px; outline: 0; width: 100%; }
.header-search input::placeholder { color: var(--muted); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 14px; border: 0; cursor: pointer; transition: all 0.15s; text-transform: uppercase; letter-spacing: 0.5px; clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%); }
.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--accent-2); }
.btn-red { background: var(--red); color: var(--paper); }
.btn-red:hover { background: var(--accent); color: var(--ink); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--line); clip-path: none; border-radius: 6px; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero { padding: 50px 0 70px; position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.hero::before { content: ''; position: absolute; top: 0; right: -100px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(0,255,133,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }

.featured-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; position: relative; min-height: 480px; display: flex; flex-direction: column; }
.featured-img { aspect-ratio: 16/9; background: var(--bg-3); position: relative; overflow: hidden; }
.featured-img svg { width: 100%; height: 100%; }
.featured-tag { position: absolute; top: 16px; left: 16px; padding: 6px 14px; background: var(--red); color: var(--paper); font-family: 'Oswald', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%); }
.featured-tag.live::before { content: '●'; margin-right: 6px; animation: blink 1.5s infinite; }
.featured-meta { position: absolute; top: 16px; right: 16px; padding: 5px 12px; background: rgba(0,0,0,0.7); color: var(--text); font-family: 'JetBrains Mono', monospace; font-size: 11px; border-radius: 4px; backdrop-filter: blur(8px); }
.featured-content { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.featured-cat { display: inline-flex; align-items: center; gap: 8px; font-family: 'Oswald', sans-serif; font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 14px; }
.featured-cat::before { content: ''; width: 24px; height: 2px; background: var(--accent); }
.featured-content h2 { font-family: 'Oswald', sans-serif; font-size: 42px; font-weight: 700; line-height: 1.05; letter-spacing: -1px; text-transform: uppercase; margin-bottom: 14px; }
.featured-content h2 a:hover { color: var(--accent); }
.featured-content p { font-size: 15px; color: var(--text-2); line-height: 1.65; margin-bottom: 18px; }
.featured-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid var(--line); margin-top: auto; }
.featured-author { display: flex; gap: 12px; align-items: center; }
.author-avatar { width: 36px; height: 36px; background: var(--bg-3); border-radius: 50%; display: grid; place-items: center; font-family: 'Oswald', sans-serif; font-size: 15px; font-weight: 700; color: var(--accent); }
.author-name { font-size: 13px; font-weight: 600; }
.author-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); margin-top: 2px; }
.featured-stats { display: flex; gap: 16px; font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); }
.featured-stats span::before { margin-right: 4px; color: var(--accent); }
.featured-stats span:nth-child(1)::before { content: '◉'; }
.featured-stats span:nth-child(2)::before { content: '✦'; }

.side-stack { display: flex; flex-direction: column; gap: 16px; }
.side-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 22px; transition: all 0.15s; cursor: pointer; }
.side-card:hover { border-color: var(--accent); transform: translateX(4px); }
.side-card-cat { font-family: 'Oswald', sans-serif; font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.side-card h3 { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; line-height: 1.15; text-transform: uppercase; letter-spacing: -0.3px; margin-bottom: 10px; }
.side-card-meta { display: flex; gap: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }

.live-section { padding: 70px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 32px; padding-bottom: 18px; border-bottom: 2px solid var(--accent); }
.section-head h2 { font-family: 'Oswald', sans-serif; font-size: 44px; font-weight: 700; line-height: 1; letter-spacing: -1px; text-transform: uppercase; }
.section-head h2 em { font-style: normal; color: var(--accent); }
.section-head .head-link { font-family: 'Oswald', sans-serif; font-size: 13px; color: var(--text-2); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.section-head .head-link:hover { color: var(--accent); }
.section-head .head-link::after { content: ' →'; }

.live-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.match-card { background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 22px; transition: all 0.2s; cursor: pointer; position: relative; overflow: hidden; }
.match-card:hover { border-color: var(--accent); }
.match-card.live::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 4px; background: var(--red); }
.match-league { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; }
.match-status { font-family: 'Oswald', sans-serif; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 3px; }
.match-status.live { background: var(--red); color: var(--paper); animation: blink 1.5s infinite; }
.match-status.scheduled { background: var(--bg-3); color: var(--text-2); }
.match-status.finished { background: rgba(0,255,133,0.15); color: var(--accent); }
.match-teams { display: grid; gap: 16px; margin-bottom: 16px; }
.team-row { display: flex; justify-content: space-between; align-items: center; }
.team-info { display: flex; align-items: center; gap: 12px; }
.team-flag { width: 32px; height: 32px; border-radius: 4px; display: grid; place-items: center; font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; color: var(--paper); }
.team-name { font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: -0.3px; }
.team-score { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; color: var(--accent); line-height: 1; }
.team-score.scheduled { color: var(--muted); font-size: 14px; }
.team-score.lost { color: var(--text-2); }
.match-foot { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--line); font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }

.section { padding: 80px 0; }
.section-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

.news-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.news-main { display: grid; gap: 24px; }
.news-item { display: grid; grid-template-columns: 280px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); transition: all 0.15s; }
.news-item:hover { border-color: var(--accent); }
.news-item:last-child { border-bottom: 0; }
.news-img { aspect-ratio: 16/10; background: var(--bg-3); border-radius: 8px; overflow: hidden; position: relative; }
.news-img svg { width: 100%; height: 100%; }
.news-img-tag { position: absolute; top: 10px; left: 10px; padding: 4px 10px; background: rgba(0,0,0,0.75); color: var(--accent); font-family: 'Oswald', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 3px; }
.news-cat { font-family: 'Oswald', sans-serif; font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.news-content h3 { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 600; line-height: 1.1; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 10px; }
.news-content h3 a:hover { color: var(--accent); }
.news-content p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 12px; }
.news-meta { display: flex; gap: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }
.news-meta span::before { margin-right: 4px; opacity: 0.7; }
.news-meta span:nth-child(1)::before { content: '⏱'; }
.news-meta span:nth-child(2)::before { content: '◉'; color: var(--accent); }
.news-meta span:nth-child(3)::before { content: '✦'; color: var(--accent); }

.news-side { display: flex; flex-direction: column; gap: 24px; }
.side-block { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 24px; }
.side-block h4 { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: -0.3px; margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); display: flex; align-items: center; gap: 10px; }
.side-block h4::before { content: '▮'; color: var(--accent); font-size: 16px; }
.top-list { display: grid; gap: 14px; }
.top-item { display: grid; grid-template-columns: 32px 1fr auto; gap: 12px; align-items: center; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.top-item:last-child { border-bottom: 0; padding-bottom: 0; }
.top-item-num { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; color: var(--accent); line-height: 1; }
.top-item-info h5 { font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: -0.2px; line-height: 1.2; }
.top-item-info span { font-size: 11px; color: var(--muted); margin-top: 2px; display: block; }
.top-item-stat { font-family: 'Oswald', sans-serif; font-size: 18px; color: var(--accent); font-weight: 700; }

.standings-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.standings-table thead { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.standings-table th { padding: 8px 6px; text-align: left; font-weight: 500; }
.standings-table th:not(:first-child):not(:nth-child(2)) { text-align: center; }
.standings-table td { padding: 10px 6px; border-bottom: 1px solid var(--line); }
.standings-table td:not(:first-child):not(:nth-child(2)) { text-align: center; font-family: 'JetBrains Mono', monospace; color: var(--text-2); font-size: 12px; }
.standings-table tr.top td:nth-child(1) { color: var(--accent); font-weight: 700; }
.standings-table tr td:nth-child(2) { font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; font-size: 14px; }
.standings-table td:last-child { color: var(--accent); font-weight: 700; }

.galleries-section { padding: 70px 0; background: var(--bg-2); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-card { aspect-ratio: 3/4; background: var(--bg); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; position: relative; cursor: pointer; transition: all 0.2s; }
.gallery-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.gallery-img { position: absolute; inset: 0; }
.gallery-img svg { width: 100%; height: 100%; }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,14,20,0.95) 100%); display: flex; flex-direction: column; justify-content: end; padding: 22px; }
.gallery-cat { font-family: 'Oswald', sans-serif; font-size: 10px; color: var(--accent); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.gallery-card h4 { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; line-height: 1.15; text-transform: uppercase; letter-spacing: -0.3px; }
.gallery-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-2); margin-top: 8px; }
.gallery-meta::before { content: '✦ '; color: var(--accent); }

.opinion-section { padding: 70px 0; }
.opinion-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.opinion-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 30px; transition: all 0.2s; position: relative; overflow: hidden; }
.opinion-card:hover { border-color: var(--accent); }
.opinion-card::before { content: '"'; position: absolute; top: -10px; right: 14px; font-family: 'Oswald', sans-serif; font-size: 130px; color: var(--accent); opacity: 0.08; line-height: 1; font-weight: 700; }
.opinion-author { display: flex; gap: 14px; align-items: center; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); position: relative; }
.opinion-avatar { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 700; color: var(--ink); flex-shrink: 0; }
.opinion-author-name { font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 600; text-transform: uppercase; letter-spacing: -0.3px; }
.opinion-author-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); margin-top: 2px; }
.opinion-cat { font-family: 'Oswald', sans-serif; font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; position: relative; }
.opinion-card h3 { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; line-height: 1.15; text-transform: uppercase; letter-spacing: -0.3px; margin-bottom: 12px; position: relative; }
.opinion-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; position: relative; }

.cta-section { padding: 80px 0; background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-card { background: var(--bg); border: 2px solid var(--accent); border-radius: 14px; padding: 60px; text-align: center; position: relative; overflow: hidden; }
.cta-card::before { content: '✦'; position: absolute; top: -40px; right: -10px; font-size: 280px; color: var(--accent); opacity: 0.05; line-height: 1; }
.cta-card h2 { font-family: 'Oswald', sans-serif; font-size: 56px; font-weight: 700; line-height: 1; letter-spacing: -1.5px; text-transform: uppercase; margin-bottom: 18px; position: relative; }
.cta-card h2 em { font-style: normal; color: var(--accent); }
.cta-card p { font-size: 17px; color: var(--text-2); max-width: 580px; margin: 0 auto 32px; line-height: 1.6; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

.footer { background: var(--bg-2); padding: 70px 0 30px; border-top: 1px solid var(--line); }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px; }
.footer-brand p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin: 22px 0 24px; max-width: 380px; }
.footer-app { display: flex; gap: 10px; }
.footer-app-btn { padding: 10px 16px; background: var(--bg); border: 1px solid var(--line); border-radius: 6px; font-family: 'Oswald', sans-serif; font-size: 12px; color: var(--text-2); display: flex; align-items: center; gap: 8px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; }
.footer-app-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer h5 { font-family: 'Oswald', sans-serif; font-size: 12px; color: var(--accent); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; font-size: 13px; color: var(--text-2); }
.footer a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }

.page-header { padding: 50px 0 40px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.page-header::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 50%; background: radial-gradient(circle at right center, rgba(0,255,133,0.08), transparent 70%); pointer-events: none; }
.page-header .crumbs { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1.5px; }
.page-header .crumbs::before { content: '◉ '; color: var(--accent); }
.page-header h1 { font-family: 'Oswald', sans-serif; font-size: 84px; font-weight: 700; line-height: 0.95; text-transform: uppercase; letter-spacing: -2px; }
.page-header h1 em { font-style: normal; color: var(--accent); }
.page-header .h1-sub { font-size: 17px; color: var(--text-2); margin-top: 16px; max-width: 600px; line-height: 1.55; }

.tags-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.tag { padding: 7px 14px; background: var(--bg-2); border: 1px solid var(--line); font-family: 'Oswald', sans-serif; font-size: 12px; color: var(--text-2); cursor: pointer; transition: all 0.15s; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%); padding-left: 18px; padding-right: 18px; }
.tag:hover, .tag.active { background: var(--accent); color: var(--ink); border-color: var(--accent); }

.contacts-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; padding: 50px 0 80px; }
.contact-block { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 28px; margin-bottom: 16px; }
.contact-block h3 { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 600; line-height: 1.1; text-transform: uppercase; letter-spacing: -0.3px; margin-bottom: 6px; }
.contact-block h3 em { font-style: normal; color: var(--accent); }
.contact-block .cb-sub { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px; font-weight: 600; }
.contact-list { display: grid; gap: 14px; }
.contact-row { display: flex; gap: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-icon { width: 40px; height: 40px; background: var(--bg); border: 1px solid var(--line); display: grid; place-items: center; color: var(--accent); flex-shrink: 0; clip-path: polygon(0 0, 100% 0, 88% 100%, 12% 100%); }
.contact-text strong { display: block; font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: -0.2px; }
.contact-text span { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted); }

.contact-form { background: var(--bg-2); border: 1px solid var(--line); border-radius: 10px; padding: 36px; }
.contact-form h3 { font-family: 'Oswald', sans-serif; font-size: 32px; font-weight: 700; line-height: 1; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 4px; }
.contact-form h3 em { font-style: normal; color: var(--accent); }
.contact-form .cf-sub { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: 'Oswald', sans-serif; font-size: 11px; color: var(--accent); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 16px; background: var(--bg); border: 1px solid var(--line); font-family: 'Inter', sans-serif; font-size: 14px; color: var(--text); outline: 0; transition: all 0.15s; border-radius: 6px; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); }
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .btn { width: 100%; justify-content: center; padding: 16px; font-size: 15px; }

@media (max-width: 1024px) {
  .header-inner { flex-wrap: wrap; gap: 16px; }
  .header-nav { order: 3; width: 100%; gap: 16px; padding-top: 14px; border-top: 1px solid var(--line); margin-left: 0; flex-wrap: wrap; }
  .header-search { order: 2; }
  .hero-grid { grid-template-columns: 1fr; }
  .featured-content h2 { font-size: 32px; }
  .live-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 200px 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .opinion-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .page-header h1 { font-size: 56px; }
  .contacts-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 40px 26px; }
  .cta-card h2 { font-size: 40px; }
}
@media (max-width: 720px) {
  .header-inner { padding: 14px 20px; }
  .section, .live-section, .galleries-section, .opinion-section, .cta-section { padding: 50px 0; }
  .section-inner, .footer-inner { padding: 0 20px; }
  .hero { padding: 30px 0 50px; }
  .featured-content { padding: 22px; }
  .featured-content h2 { font-size: 24px; }
  .live-grid { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; }
  .news-img { aspect-ratio: 16/9; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 38px; }
  .section-head h2 { font-size: 28px; }
  .field-row { grid-template-columns: 1fr; }
  .standings-table th:nth-child(3), .standings-table td:nth-child(3),
  .standings-table th:nth-child(4), .standings-table td:nth-child(4) { display: none; }
  .header-search { display: none; }
}
