/* ── Variables ── */
:root {
  --primary: #0a0e1a; --secondary: #111827; --accent: #e8232a; --accent2: #ff6b35;
  --text: #f0f2f5; --text-muted: #8b95a9; --border: rgba(255,255,255,0.08);
  --card-bg: #161d2e; --live-color: #22c55e;
}

/* ── Reset ── */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--primary); color: var(--text); font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.6; min-height: 100vh; display: flex; flex-direction: column; }
a { text-decoration: none; color: inherit; }

/* ── Header — .header-inner (SPA) and .hdr (SEO pages) ── */
header { background: var(--secondary); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner, .hdr { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 12px; }
.logo { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 700; letter-spacing: 1px; white-space: nowrap; }
.logo span { color: var(--accent); }
nav { display: flex; gap: 2px; flex-wrap: wrap; }
nav a { color: var(--text-muted); padding: 6px 12px; border-radius: 6px; font-size: 14px; font-weight: 500; transition: all 0.2s; white-space: nowrap; }
nav a:hover, nav a.active { color: var(--text); background: rgba(255,255,255,0.07); }

/* ── Keyframes ── */
@keyframes pulse-badge { 0%,100%{opacity:1} 50%{opacity:.6} }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Hero (listing pages) ── */
.hero { background: linear-gradient(135deg, #0d1420 0%, #1a0a0a 100%); border-bottom: 1px solid var(--border); }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 40px 20px; }
.hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(26px,4vw,48px); font-weight: 700; line-height: 1.2; margin-bottom: 10px; }
.hero h1 span { color: var(--accent); }
.hero p { color: var(--text-muted); font-size: 15px; max-width: 580px; }
.sport-tabs { display: flex; gap: 8px; margin-top: 20px; flex-wrap: wrap; }
.sport-tab { background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--text-muted); padding: 7px 18px; border-radius: 100px; font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s; }
.sport-tab:hover, .sport-tab.active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ── Layout containers ── */
.container { max-width: 1280px; margin: 0 auto; padding: 28px 20px; display: grid; grid-template-columns: 1fr 300px; gap: 24px; }
.main { max-width: 1280px; margin: 0 auto; padding: 32px 20px; }
.main-wrap { max-width: 1280px; margin: 0 auto; padding: 24px 20px; display: grid; grid-template-columns: 1fr 280px; gap: 20px; }
@media (max-width: 900px) { .container { grid-template-columns: 1fr; } .main-wrap { grid-template-columns: 1fr; } }

/* ── Section titles ── */
.section-title { font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.section-title::before { content: ''; display: block; width: 4px; height: 18px; background: var(--accent); border-radius: 2px; }
h1 { font-family: 'Oswald', sans-serif; font-size: clamp(1.6rem,3.5vw,2.4rem); font-weight: 700; margin-bottom: 12px; }

/* ── Match list (SPA) ── */
.matches-grid { display: flex; flex-direction: column; gap: 8px; }
.match-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 12px; color: var(--text); transition: all 0.2s; cursor: pointer; overflow: hidden; }
.match-card:hover { border-color: rgba(232,35,42,0.4); background: #1c2438; }
.match-teams-row { display: flex; align-items: center; gap: 10px; min-width: 0; }
.team-logo-sm { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.team-logo-sm-fallback { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.match-teams-names { font-weight: 600; font-size: 14px; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.match-vs { color: var(--text-muted); font-size: 11px; margin: 0 3px; }
.match-meta { color: var(--text-muted); font-size: 12px; margin-top: 3px; }
.match-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.match-status { text-align: right; }
.status-live { color: var(--live-color); font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 5px; }
.status-live::before { content: ''; width: 7px; height: 7px; background: var(--live-color); border-radius: 50%; animation: pulse-badge 1.5s infinite; }
.status-soon { color: var(--text-muted); font-size: 12px; line-height: 1.4; text-align: right; }
.status-time { color: var(--text); font-size: 13px; font-weight: 600; display: block; }
.watch-btn { background: var(--accent); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 6px; white-space: nowrap; border: none; cursor: pointer; transition: background 0.2s; flex-shrink: 0; }
.watch-btn:hover { background: #c91920; }
.empty-msg { color: var(--text-muted); font-size: 14px; padding: 10px 0; }

/* ── Match list (SEO pages) ── */
.match-teams { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 600; }
.match-teams a { color: var(--text); }
.match-teams a:hover { color: var(--accent); }
.match-role { font-size: 11px; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.match-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-watch { background: var(--accent); color: white; font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 8px; white-space: nowrap; }
.btn-watch:hover { background: #c81e24; }

/* ── Sidebar ── */
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.widget { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 18px; }
.widget-title { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; margin-bottom: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.schedule-item { display: flex; justify-content: space-between; align-items: flex-start; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.schedule-item:last-child { border-bottom: none; padding-bottom: 0; }
.schedule-teams { font-weight: 500; line-height: 1.4; }
.schedule-time { color: var(--text-muted); font-size: 11px; white-space: nowrap; margin-left: 8px; text-align: right; }
.match-item { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.match-item:last-child { border-bottom: none; }
.match-item a { color: var(--text); font-weight: 500; }
.match-item a:hover { color: var(--accent); }
.match-time { color: var(--text-muted); font-size: 12px; margin-top: 3px; }
.next-match { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.next-match:last-child { border-bottom: none; }
.next-match a { color: var(--text); font-weight: 500; transition: color 0.2s; }
.next-match a:hover { color: var(--accent); }
.next-time { color: var(--text-muted); font-size: 11px; margin-top: 2px; }

/* ── SEO text blocks ── */
.seo-section { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 24px; margin-top: 24px; }
.seo-section h2 { font-family: 'Oswald', sans-serif; font-size: 19px; font-weight: 600; margin-bottom: 12px; }
.seo-section p { color: var(--text-muted); font-size: 13px; line-height: 1.8; margin-bottom: 10px; }
.seo-section p:last-child { margin-bottom: 0; }
.seo-links { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.seo-link { background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-muted); font-size: 12px; padding: 5px 11px; border-radius: 6px; transition: all 0.2s; }
.seo-link:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.seo-text { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 24px; margin-top: 24px; }
.seo-text h2 { font-family: 'Oswald', sans-serif; font-size: 1.1rem; margin-bottom: 12px; }
.seo-text p { color: var(--text-muted); font-size: 14px; line-height: 1.8; }
.seo-block { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 22px; margin-bottom: 16px; }
.seo-block h2 { font-family: 'Oswald', sans-serif; font-size: 18px; margin-bottom: 12px; }
.seo-block h3 { font-family: 'Oswald', sans-serif; font-size: 15px; margin: 14px 0 8px; color: var(--text-muted); }
.seo-block p { color: var(--text-muted); font-size: 13px; line-height: 1.8; margin-bottom: 8px; }
.seo-block strong { color: var(--text); }
.key-queries { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.key-query { background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-muted); font-size: 12px; padding: 4px 10px; border-radius: 20px; }

/* ── Match hero (detail page) ── */
.match-hero { background: linear-gradient(135deg, #0d1420 0%, #1a0505 100%); padding: 28px 20px; border-bottom: 1px solid var(--border); }
.match-hero-inner { max-width: 1280px; margin: 0 auto; }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb span { margin: 0 5px; }
.match-league-badge, .league-badge, .team-badge { display: inline-block; background: rgba(232,35,42,0.15); border: 1px solid rgba(232,35,42,0.3); color: #ff6b6b; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-bottom: 18px; }
.match-header { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.team { text-align: center; min-width: 120px; }
.team-name { font-family: 'Oswald', sans-serif; font-size: clamp(17px,3vw,30px); font-weight: 700; }
.team-logo-lg { width: 72px; height: 72px; object-fit: contain; display: block; margin: 0 auto 10px; }
.team-logo-lg-fallback { font-size: 52px; display: block; margin-bottom: 7px; }
.team-logo { width: 72px; height: 72px; object-fit: contain; display: block; margin: 0 auto 10px; }
.team-flag { font-size: 40px; display: block; margin-bottom: 8px; }
.vs-block { text-align: center; }
.vs-text { font-family: 'Oswald', sans-serif; font-size: 20px; color: var(--text-muted); }
.match-date-display { font-size: 13px; color: var(--text-muted); margin-top: 5px; }
.live-indicator { display: flex; align-items: center; gap: 6px; justify-content: center; margin-top: 7px; }
.live-dot { width: 8px; height: 8px; background: var(--live-color); border-radius: 50%; animation: pulse-badge 1.5s infinite; }
.live-text { color: var(--live-color); font-size: 13px; font-weight: 600; letter-spacing: 1px; }

/* ── Player ── */
.player-section { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 16px; }
.player-tabs { display: flex; border-bottom: 1px solid var(--border); }
.player-tab { padding: 11px 18px; font-size: 13px; font-weight: 500; color: var(--text-muted); cursor: pointer; border-bottom: 2px solid transparent; transition: all 0.2s; }
.player-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.player-tab:hover { color: var(--text); }
.player-wrap { width: 100%; background: #000; }
.player-video { position: relative; padding-bottom: 56.25%; }
.player-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }
.player-blocked { display: flex; flex-direction: column; align-items: center; justify-content: center; background: radial-gradient(ellipse at center, #1a1a2e 0%, #000 100%); text-align: center; padding: 40px 20px; min-height: 420px; }
.block-icon { font-size: 46px; margin-bottom: 14px; opacity: 0.6; }
.block-title { font-family: 'Oswald', sans-serif; font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.block-msg { color: var(--text-muted); font-size: 13px; line-height: 1.6; max-width: 360px; margin-bottom: 24px; }
.vpn-buttons { display: flex; flex-direction: column; gap: 10px; align-items: center; width: 100%; max-width: 300px; }
.vpn-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 12px 20px; border-radius: 10px; font-size: 14px; font-weight: 600; transition: all 0.2s; }
.vpn-btn-android { background: #22c55e; color: #fff; }
.vpn-btn-android:hover { background: #16a34a; }
.vpn-btn-ios { background: rgba(255,255,255,0.1); color: var(--text); border: 1px solid rgba(255,255,255,0.2); }
.vpn-btn-ios:hover { background: rgba(255,255,255,0.16); }
.vpn-btn-pc { background: rgba(255,255,255,0.06); color: var(--text-muted); border: 1px solid var(--border); }
.vpn-btn-pc:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.vpn-note { color: var(--text-muted); font-size: 12px; margin-top: 10px; line-height: 1.5; }

/* ── Payment screen ── */
.pay-screen { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; background: radial-gradient(ellipse at center, #0d1f0d 0%, #000 100%); min-height: 420px; width: 100%; }
.pay-icon { font-size: 48px; margin-bottom: 14px; }
.pay-title { font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 600; margin-bottom: 6px; color: #4ade80; }
.pay-sub { color: var(--text-muted); font-size: 13px; margin-bottom: 20px; max-width: 320px; line-height: 1.5; }
.pay-price { font-size: 42px; font-weight: 800; color: #fff; margin-bottom: 20px; letter-spacing: -1px; }
.pay-btn { background: #22c55e; color: #000; border: none; border-radius: 10px; padding: 14px 36px; font-size: 16px; font-weight: 700; cursor: pointer; width: 100%; max-width: 280px; transition: background 0.2s; }
.pay-btn:hover { background: #4ade80; }
.pay-note { color: var(--text-muted); font-size: 11px; margin-top: 12px; }

/* ── Stats (match detail) ── */
.stats-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 13px; }
.stats-row:last-child { border-bottom: none; }
.stat-home { text-align: right; color: var(--text); font-weight: 600; }
.stat-label { color: var(--text-muted); font-size: 11px; text-align: center; white-space: nowrap; padding: 0 8px; }
.stat-away { text-align: left; color: var(--text); font-weight: 600; }
.stat-fav { color: var(--live-color); }
.h2h-item { font-size: 13px; color: var(--text-muted); padding: 4px 0; border-bottom: 1px solid var(--border); }
.h2h-item:last-child { border-bottom: none; }
.odds-chip { display: inline-block; background: rgba(232,35,42,0.12); border: 1px solid rgba(232,35,42,0.25); color: #ff8080; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 100px; margin-right: 6px; }

/* ── FAQ / variant blocks (SEO pages) ── */
.variant-block { background: rgba(232,35,42,0.06); border: 1px solid rgba(232,35,42,0.2); border-radius: 8px; padding: 16px; margin: 16px 0; }
.variant-block p { color: var(--text); margin: 0; }
.faq-section { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 24px; margin-bottom: 20px; }
.faq-section h2 { font-family: 'Oswald', sans-serif; font-size: 1.1rem; margin-bottom: 16px; }
details { border: 1px solid var(--border); border-radius: 8px; padding: 12px 16px; margin-bottom: 8px; }
details summary { font-weight: 600; cursor: pointer; color: var(--text); list-style: none; }
details summary::before { content: '+ '; color: var(--accent); }
details[open] summary::before { content: '− '; color: var(--accent); }
details p { color: var(--text-muted); margin-top: 8px; font-size: 14px; }
.related-links { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 20px; margin-bottom: 20px; }
.related-links h3 { font-family: 'Oswald', sans-serif; font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-muted); font-size: 12px; padding: 5px 12px; border-radius: 20px; transition: all 0.2s; }
.tag:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

/* ── Share / social ── */
.share-block { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 14px; }
.share-btn { background: rgba(255,255,255,0.06); border: 1px solid var(--border); color: var(--text-muted); font-size: 12px; padding: 5px 12px; border-radius: 6px; cursor: pointer; transition: all 0.2s; }
.share-btn:hover { color: var(--text); }

/* ── Search (SPA) ── */
.search-wrap { position: relative; flex: 1; max-width: 280px; }
.search-input { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid var(--border); color: var(--text); font-size: 14px; padding: 7px 36px 7px 14px; border-radius: 8px; outline: none; transition: border-color 0.2s; font-family: 'Inter', sans-serif; }
.search-input::placeholder { color: var(--text-muted); }
.search-input:focus { border-color: rgba(232,35,42,0.5); }
.search-clear { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); color: var(--text-muted); cursor: pointer; font-size: 16px; display: none; line-height: 1; background: none; border: none; padding: 0; }
.search-clear.visible { display: block; }
.search-results { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: var(--secondary); border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,0.5); z-index: 200; max-height: 380px; overflow-y: auto; display: none; }
.search-results.open { display: block; }
.search-item { display: flex; align-items: center; gap: 10px; padding: 10px 14px; cursor: pointer; border-bottom: 1px solid var(--border); transition: background 0.15s; text-decoration: none; color: var(--text); }
.search-item:last-child { border-bottom: none; }
.search-item:hover { background: rgba(255,255,255,0.05); }
.search-item-logos { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.search-item-logos img { width: 22px; height: 22px; object-fit: contain; }
.search-item-info { min-width: 0; }
.search-item-teams { font-weight: 600; font-size: 13px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-item-meta { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.search-empty { padding: 16px 14px; color: var(--text-muted); font-size: 13px; text-align: center; }

/* ── Not found / loading (SPA) ── */
.not-found { text-align: center; padding: 80px 20px; }
.not-found-icon { font-size: 64px; margin-bottom: 16px; }
.not-found h1 { font-family: 'Oswald', sans-serif; font-size: 26px; margin-bottom: 10px; }
.not-found p { color: var(--text-muted); max-width: 380px; margin: 0 auto 24px; }
.btn-primary { display: inline-block; background: var(--accent); color: #fff; padding: 11px 26px; border-radius: 8px; font-weight: 600; font-size: 14px; transition: background 0.2s; }
.btn-primary:hover { background: #c91920; }
.loading { color: var(--text-muted); font-size: 14px; padding: 10px 0; display: flex; align-items: center; gap: 8px; }
.loading::before { content: ''; width: 16px; height: 16px; border: 2px solid var(--border); border-top-color: var(--accent); border-radius: 50%; animation: spin 0.8s linear infinite; flex-shrink: 0; }

/* ── Footer ── */
footer { background: var(--secondary); border-top: 1px solid var(--border); margin-top: auto; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 36px 20px; display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 28px; }
.footer-col h3 { font-family: 'Oswald', sans-serif; font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.footer-col a { display: block; color: var(--text-muted); font-size: 13px; margin-bottom: 7px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding: 18px 20px; text-align: center; color: var(--text-muted); font-size: 12px; max-width: 1280px; margin: 0 auto; }

/* ── Mobile 768px ── */
@media (max-width: 768px) {
  .header-inner, .hdr { flex-wrap: wrap; height: auto; padding: 10px 14px 0; gap: 0; justify-content: flex-start; }
  .logo { order: 1; font-size: 22px; line-height: 1; flex-shrink: 0; }
  .search-wrap { order: 2; width: 100%; max-width: none; min-width: 0; margin: 8px 0 0; }
  nav { order: 3; width: 100%; margin: 6px 0 0; overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap; padding: 6px 0 8px; gap: 2px; border-top: 1px solid var(--border); scrollbar-width: none; }
  nav::-webkit-scrollbar { display: none; }
  nav a { flex-shrink: 0; white-space: nowrap; font-size: 13px; padding: 6px 10px; }
  .hero-inner { padding: 18px 14px; }
  .hero p { font-size: 13px; }
  .sport-tabs { gap: 6px; }
  .sport-tab { font-size: 13px; padding: 6px 12px; }
  .container { padding: 12px 14px; gap: 12px; }
  .main { padding: 12px 14px; }
  .main-wrap { padding: 12px 14px; gap: 12px; }
  .match-card { padding: 10px 12px; gap: 8px; }
  .seo-section { padding: 16px; }
  .seo-block { padding: 16px; margin-bottom: 14px; }
  .seo-text { padding: 16px; margin-top: 14px; }
  .faq-section { padding: 16px; margin-bottom: 14px; }
  .related-links { padding: 14px; margin-bottom: 14px; }
  .widget { padding: 14px; }
  .match-hero { padding: 16px 14px; }
  .breadcrumb { font-size: 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .match-header { gap: 14px; }
  .footer-inner { padding: 20px 14px; gap: 16px; }
  .footer-bottom { padding: 14px; }
}

/* ── Mobile 480px ── */
@media (max-width: 480px) {
  .match-right { flex-direction: column; align-items: flex-end; gap: 4px; }
  .match-card { grid-template-columns: 1fr; }
  .match-actions { width: 100%; }
  .watch-btn { font-size: 11px; padding: 5px 10px; }
  .match-teams-names { font-size: 13px; }
  .match-teams { font-size: 1rem; }
  .team { min-width: 75px; }
  .team-logo-lg, .team-logo-lg-fallback { width: 48px; height: 48px; font-size: 34px; }
  .team-logo { width: 48px; height: 48px; }
  .team-flag { font-size: 30px; }
  .team-name { font-size: clamp(13px, 4vw, 20px); }
  .vs-text { font-size: 15px; }
  .block-icon { font-size: 30px; margin-bottom: 8px; }
  .block-title { font-size: 15px; }
  .block-msg { font-size: 12px; margin-bottom: 14px; }
  .vpn-btn { font-size: 12px; padding: 10px 14px; }
  .vpn-buttons { max-width: 260px; gap: 8px; }
  .pay-price { font-size: 34px; }
  .pay-btn { font-size: 14px; padding: 12px 24px; }
  .stats-row { font-size: 12px; gap: 4px; }
  .stat-label { font-size: 10px; padding: 0 4px; white-space: normal; }
  .player-tab { padding: 9px 12px; font-size: 12px; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .match-hero { padding: 12px; }
  .match-header { gap: 10px; }
  .tag { font-size: 11px; padding: 4px 10px; }
  details { padding: 10px 12px; }
  .widget { padding: 12px; }
  h1 { font-size: 1.3rem; }
}
