@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  --bg:           #0b0f1a;
  --bg-2:         #111827;
  --bg-card:      #161d2e;
  --bg-card-2:    #1c2438;
  --border:       rgba(255,255,255,0.07);
  --border-light: rgba(255,255,255,0.12);
  --accent:       #00e5c8;
  --accent-dim:   rgba(0,229,200,0.12);
  --accent-glow:  rgba(0,229,200,0.25);
  --text:         #e8ecf4;
  --text-muted:   #8a95a8;
  --text-faint:   #4e5a6e;
  --white:        #ffffff;
  --danger:       #ff4d6a;
  --warn:         #ffb830;
  --success:      #3dd68c;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-card:  0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow:  0 0 32px rgba(0,229,200,0.15);
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --max-w:        1200px;
  --header-h:     70px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-card-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { font-size: 1rem; color: var(--text-muted); line-height: 1.75; }
.lead { font-size: 1.15rem; color: var(--text); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.w-full { width: 100%; }

.accent { color: var(--accent); }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(0,229,200,0.2);
}
.badge-live { background: rgba(255,77,106,0.12); color: var(--danger); border-color: rgba(255,77,106,0.25); }
.badge-warn { background: rgba(255,184,48,0.12); color: var(--warn); border-color: rgba(255,184,48,0.25); }
.badge-ok { background: rgba(61,214,140,0.12); color: var(--success); border-color: rgba(61,214,140,0.25); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  border: none; transition: var(--transition);
}
.btn-primary {
  background: var(--accent); color: #0b0f1a;
}
.btn-primary:hover { background: #00f5d4; box-shadow: 0 0 24px rgba(0,229,200,0.4); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1px solid rgba(0,229,200,0.4);
}
.btn-outline:hover { background: var(--accent-dim); box-shadow: var(--shadow-glow); }
.btn-ghost { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--bg-card-2); border-color: var(--border-light); }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.card:hover { border-color: var(--border-light); box-shadow: var(--shadow-card); transform: translateY(-2px); }
.card-accent { border-top: 2px solid var(--accent); }

.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--accent);
}
.section-heading { margin-bottom: 16px; }
.section-heading span { color: var(--accent); }
.section-intro { max-width: 580px; }

.divider { height: 1px; background: var(--border); margin: 48px 0; }

#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(11,15,26,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#header.scrolled { background: rgba(11,15,26,0.97); }
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
  color: var(--white); white-space: nowrap;
}
.logo img { width: 36px; height: 36px; object-fit: contain; border-radius: 6px; }
.logo-icon-fallback {
  width: 36px; height: 36px; border-radius: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, #00a896 100%);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo span.accent { color: var(--accent); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
}
.nav a:hover, .nav a.active { color: var(--white); background: var(--bg-card); }
.nav a.active { color: var(--accent); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0 0; z-index: 999;
  background: rgba(11,15,26,0.98); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: var(--text-muted); padding: 14px 32px;
  border-radius: var(--radius-md); transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--accent); background: var(--accent-dim); }

.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--header-h); position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0b0f1a 0%, #0d1526 50%, #0b1a1e 100%);
}
.hero-bg-img {
  position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%;
  opacity: 0.12;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,229,200,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,200,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px;
  border-radius: 50%; filter: blur(120px);
  background: radial-gradient(circle, rgba(0,229,200,0.12) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-content .section-label { margin-bottom: 20px; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero-title em { font-style: normal; color: var(--accent); }
.hero-desc { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-val {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--white);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  background: var(--accent-dim); border: 1px solid rgba(0,229,200,0.2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--accent); font-size: 1.4rem;
}
.feature-icon ph-icon, .feature-icon i { font-size: 24px; }

.stats-band {
  background: var(--bg-card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stats-band-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
  divide-x: 1px solid var(--border);
}
.stat-item { text-align: center; padding: 16px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-val { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--accent); }
.stat-lbl { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; }

.match-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 20px;
  transition: var(--transition);
}
.match-card:hover { border-color: var(--border-light); box-shadow: var(--shadow-card); }
.match-teams { flex: 1; display: flex; align-items: center; gap: 16px; }
.match-team { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem; }
.match-team-logo {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  font-size: 0.6rem; font-weight: 700; color: var(--text-muted);
}
.match-team-logo img { width: 100%; height: 100%; object-fit: cover; }
.match-vs {
  font-family: var(--font-display); font-size: 0.75rem; font-weight: 700;
  color: var(--text-faint); padding: 4px 8px;
  background: var(--bg-card-2); border-radius: 4px;
}
.match-score {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--white); min-width: 64px; text-align: center;
}
.match-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.match-game { font-size: 0.78rem; color: var(--text-muted); }
.match-time { font-size: 0.78rem; color: var(--text-faint); }

.progress-wrap { margin-bottom: 16px; }
.progress-label { display: flex; justify-content: space-between; margin-bottom: 6px; font-size: 0.82rem; }
.progress-bar {
  height: 6px; background: var(--bg-card-2); border-radius: 3px; overflow: hidden;
}
.progress-fill { height: 100%; border-radius: 3px; background: var(--accent); transition: width 1s ease; }
.progress-fill.warn { background: var(--warn); }
.progress-fill.danger { background: var(--danger); }
.progress-fill.success { background: var(--success); }

.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-faint);
  padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--border); background: var(--bg-card);
}
.data-table td {
  padding: 14px 16px; font-size: 0.88rem;
  border-bottom: 1px solid var(--border); color: var(--text);
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }
.table-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--text); margin-bottom: 8px; }
.form-control {
  width: 100%; padding: 12px 16px;
  background: var(--bg-card-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text); font-size: 0.9rem;
  transition: var(--transition); outline: none;
}
.form-control::placeholder { color: var(--text-faint); }
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-dim); }
textarea.form-control { resize: vertical; min-height: 120px; }

#cookie-banner {
  position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 9999;
  max-width: 580px; margin: 0 auto;
  background: var(--bg-card-2); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 24px 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  display: none; align-items: flex-start; gap: 20px;
}
#cookie-banner.show { display: flex; }
.cookie-icon { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.cookie-text h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 6px; }
.cookie-text p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

#footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.88rem; color: var(--text-muted);
  padding: 5px 0; transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 0.82rem; color: var(--text-faint); flex-wrap: wrap;
}
.footer-bottom a { color: var(--text-faint); transition: var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

.page-hero {
  padding: calc(var(--header-h) + 64px) 0 64px;
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,229,200,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,200,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; max-width: 560px; }

.about-img-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); position: relative;
}
.about-img-wrap img { width: 100%; height: 400px; object-fit: cover; }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,15,26,0.8) 100%);
}
.value-item { display: flex; gap: 16px; margin-bottom: 28px; }
.value-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 800;
  color: var(--accent); opacity: 0.3; line-height: 1; flex-shrink: 0; width: 40px;
}
.team-card { text-align: center; }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-dim), var(--bg-card-2));
  border: 2px solid var(--border); margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
  color: var(--accent); overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-role { font-size: 0.8rem; color: var(--text-faint); margin-top: 4px; }

.filter-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px;
}
.filter-tab {
  padding: 8px 18px; border-radius: 100px;
  font-size: 0.82rem; font-weight: 600;
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); transition: var(--transition); cursor: pointer;
}
.filter-tab.active, .filter-tab:hover {
  background: var(--accent-dim); border-color: rgba(0,229,200,0.3); color: var(--accent);
}
.matches-list { display: flex; flex-direction: column; gap: 12px; }
.match-expanded {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden; transition: var(--transition);
}
.match-expanded:hover { border-color: var(--border-light); }
.match-expanded-header {
  padding: 20px 24px; display: flex; align-items: center; gap: 20px; cursor: pointer;
  border-bottom: 1px solid var(--border);
}
.match-expanded-header:hover { background: rgba(255,255,255,0.02); }
.match-expanded-body { padding: 24px; display: none; }
.match-expanded-body.open { display: block; }
.match-map-score { display: flex; gap: 8px; flex-wrap: wrap; }
.map-result {
  background: var(--bg-card-2); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 8px 14px; text-align: center; min-width: 80px;
}
.map-result .map-name { font-size: 0.72rem; color: var(--text-faint); }
.map-result .map-score { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.map-result.win { border-color: rgba(61,214,140,0.3); }
.map-result.loss { border-color: rgba(255,77,106,0.3); }

.team-row {
  display: flex; align-items: center; gap: 16px; padding: 16px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); margin-bottom: 10px; transition: var(--transition);
}
.team-row:hover { border-color: var(--border-light); box-shadow: var(--shadow-card); }
.team-rank {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
  color: var(--text-faint); width: 32px; text-align: center;
}
.team-info { flex: 1; }
.team-name { font-weight: 600; font-size: 0.95rem; }
.team-region { font-size: 0.78rem; color: var(--text-faint); }
.team-stats-row { display: flex; gap: 24px; }
.team-stat { text-align: center; }
.team-stat-val { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); }
.team-stat-key { font-size: 0.72rem; color: var(--text-faint); }
.winrate-bar {
  width: 80px; height: 6px; background: var(--bg-card-2);
  border-radius: 3px; overflow: hidden; margin-top: 6px;
}
.winrate-fill { height: 100%; background: var(--accent); border-radius: 3px; }

.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 16px;
}
.contact-icon {
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  background: var(--accent-dim); border: 1px solid rgba(0,229,200,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.contact-info-text h5 { font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.contact-info-text p { font-size: 0.85rem; color: var(--text-muted); }
.contact-info-text a { color: var(--accent); }

.legal-content h2 { font-size: 1.3rem; margin: 36px 0 12px; color: var(--white); }
.legal-content h3 { font-size: 1.05rem; margin: 24px 0 8px; color: var(--text); }
.legal-content p { margin-bottom: 14px; }
.legal-content ul { padding-left: 20px; margin-bottom: 14px; list-style: disc; }
.legal-content ul li { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; margin-bottom: 6px; }
.legal-content a { color: var(--accent); }
.legal-toc {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px; margin-bottom: 40px;
}
.legal-toc h4 { margin-bottom: 12px; font-size: 0.9rem; }
.legal-toc ol { padding-left: 18px; }
.legal-toc ol li { margin-bottom: 6px; }
.legal-toc a { color: var(--accent); font-size: 0.88rem; }

.prediction-widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px;
}
.prediction-teams { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.pred-team { text-align: center; }
.pred-team-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.pred-percent { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; }
.pred-percent.high { color: var(--accent); }
.pred-percent.low { color: var(--text-muted); }
.pred-bar {
  height: 8px; background: var(--bg-card-2); border-radius: 4px;
  overflow: hidden; display: flex;
}
.pred-fill-a { background: var(--accent); border-radius: 4px 0 0 4px; }
.pred-fill-b { background: var(--text-faint); border-radius: 0 4px 4px 0; }
.pred-factors { margin-top: 20px; }
.pred-factor { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.82rem; }
.pred-factor:last-child { border-bottom: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes glow {
  0%,100% { box-shadow: 0 0 8px rgba(0,229,200,0.3); }
  50% { box-shadow: 0 0 24px rgba(0,229,200,0.6); }
}

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

.live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--danger); animation: pulse 1.5s infinite;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .stats-band-inner { grid-template-columns: repeat(2,1fr); }
  .stats-band-inner .stat-item:nth-child(2) { border-right: none; }
  .stats-band-inner .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stats-band-inner { grid-template-columns: repeat(2,1fr); }
  .match-card { flex-direction: column; align-items: flex-start; }
  .match-meta { align-items: flex-start; }
  .team-stats-row { gap: 12px; }
  #cookie-banner { left: 16px; right: 16px; bottom: 16px; flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section { padding: 56px 0; }
  .page-hero { padding: calc(var(--header-h) + 40px) 0 40px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-band-inner { grid-template-columns: repeat(2,1fr); }
  .match-expanded-header { flex-wrap: wrap; }
  .filter-tabs { gap: 6px; }
  .filter-tab { font-size: 0.75rem; padding: 6px 14px; }
}
