/* ============================================================
   Variables & Reset
   ============================================================ */
:root {
  --bg:           #f0f0f0;
  --surface:      #ffffff;
  --text:         #1a1a1a;
  --text-muted:   #6b7280;
  --green:        #27ae60;
  --green-dark:   #1e9651;
  --border:       #e5e7eb;
  --radius:       2px;
  --max-w:        1200px;
  --header-h:     72px;
  --transition:   0.18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

/* ============================================================
   Utilities
   ============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover { background: var(--green-dark); }
.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover { background: var(--green); color: #fff; }

/* ============================================================
   Header
   ============================================================ */
.header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-top: 14px;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--green); }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity 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 overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--surface);
  z-index: 199;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
  border-top: 1px solid var(--border);
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay .nav-link {
  font-size: 1.125rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 80px 0 72px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 440px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #ddd;
  aspect-ratio: 4/3;
}
.hero-image img,
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* ============================================================
   Comparison (Bot vs Group)
   ============================================================ */
.comparison { background: var(--surface); padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-desc {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 40px;
}
.comparison-card {
  background: var(--bg);
  border-radius: 8px;
  padding: 32px;
}
.comparison-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--green);
  display: inline-block;
}
.comparison-card ul { display: flex; flex-direction: column; gap: 12px; }
.comparison-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.comparison-card li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 8px;
  flex-shrink: 0;
}
.comparison-card li strong { color: var(--text); }
.comparison-cta { text-align: center; }

/* ============================================================
   How it works
   ============================================================ */
.how { padding: 72px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step { }
.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}
.step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================================
   Predictions grid
   ============================================================ */
.predictions-section { padding: 72px 0; background: var(--surface); }
.predictions-section .section-header { margin-bottom: 40px; }

.predictions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.prediction-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.prediction-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

/* Card color accent by league */
.card-league-bar {
  height: 3px;
  background: var(--green);
  flex-shrink: 0;
}

.card-teams {
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
  text-align: center;
  line-height: 1.1;
}
.vs-separator {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.card-body { padding: 16px 20px; flex: 1; display: flex; flex-direction: column; }
.card-match-title {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.card-league {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}
.card-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.card-sep { color: var(--border); }
.card-preview {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.card-result {
  font-size: 0.75rem;
  font-weight: 600;
}
.card-result.correct { color: var(--green); }
.card-result.incorrect { color: #e74c3c; }
.card-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.card-link:hover { color: var(--green-dark); }

.predictions-more { text-align: center; }

/* ============================================================
   CTA banner
   ============================================================ */
.cta-banner { padding: 80px 0; }
.cta-banner-inner {
  background: var(--green);
  border-radius: 12px;
  padding: 60px 48px;
  text-align: center;
  color: #fff;
}
.cta-banner-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta-banner-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-banner-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--text); }
.btn-white:hover { background: rgba(255,255,255,0.9); }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-ghost:hover { border-color: #fff; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand { max-width: 320px; }
.footer-logo { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.footer-tagline { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; }
.footer-links-group h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--green); }
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8125rem; color: var(--text-muted); }
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.5;
}

/* ============================================================
   Catalog page
   ============================================================ */
.page-hero { padding: 48px 0 40px; }
.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.page-hero p { font-size: 0.9375rem; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

.catalog-filters {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 100;
}
.filters-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.filter-label { font-size: 0.8125rem; font-weight: 600; color: var(--text-muted); }
.filter-select {
  font-family: inherit;
  font-size: 0.875rem;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}
.filter-select:focus { outline: 2px solid var(--green); outline-offset: 2px; }

.catalog-section { padding: 40px 0 64px; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.catalog-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
  grid-column: 1/-1;
}

/* ============================================================
   Prediction detail page
   ============================================================ */
.prediction-layout { padding: 40px 0 64px; }
.prediction-layout > .container { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.breadcrumbs a:hover { color: var(--green); }
.breadcrumbs span { color: var(--border); }

.prediction-header { margin-bottom: 32px; }
.prediction-league-date {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-league { background: rgba(39,174,96,0.12); color: var(--green); }
.badge-upcoming { background: rgba(52,152,219,0.12); color: #3498db; }
.badge-finished { background: rgba(107,114,128,0.12); color: var(--text-muted); }

.prediction-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.prediction-date {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.prediction-teams {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--surface);
  border-radius: 8px;
  margin-bottom: 32px;
}
.team-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
}
.team-name { font-size: 0.9375rem; font-weight: 700; text-align: center; }

/* Forecast pill inside VS block */
.vs-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.vs-label {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-muted);
}
.forecast-pill {
  background: var(--text);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-align: center;
  white-space: nowrap;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ============================================================
   Bot-style prediction sections
   ============================================================ */
.bot-section {
  background: var(--surface);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
}
.bot-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.bot-section-emoji { font-size: 1.125rem; flex-shrink: 0; line-height: 1; }
.bot-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.bot-section-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  white-space: pre-wrap;
}

/* Betting option cards */
.betting-options-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.bet-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition);
}
.bet-card:hover { border-color: var(--green); }
.bet-card-top {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.bet-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.bet-title {
  font-size: 0.9375rem;
  font-weight: 700;
  flex: 1;
  line-height: 1.35;
}
.bet-odds {
  background: rgba(39,174,96,0.12);
  color: var(--green);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.bet-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.bet-risk {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}
.bet-risk::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bet-risk.risk-low    { color: var(--green); }
.bet-risk.risk-low::before    { background: var(--green); }
.bet-risk.risk-medium { color: #e67e22; }
.bet-risk.risk-medium::before { background: #e67e22; }
.bet-risk.risk-high   { color: #e74c3c; }
.bet-risk.risk-high::before   { background: #e74c3c; }

/* Disclaimer */
.disclaimer-block {
  background: var(--bg);
  border-radius: 8px;
  padding: 16px 20px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 4px;
}
.disclaimer-block strong { color: var(--text); }

.result-block {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.result-block.correct { border-color: var(--green); }
.result-block.incorrect { border-color: #e74c3c; }
.result-icon { font-size: 1.5rem; flex-shrink: 0; }
.result-info { flex: 1; }
.result-label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.result-score { font-size: 1.25rem; font-weight: 800; }

/* Sidebar */
.prediction-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--surface);
  border-radius: 8px;
  padding: 24px;
}
.sidebar-card-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sidebar-cta-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
}
.sidebar-cta-btn { display: block; text-align: center; }

.related-predictions { display: flex; flex-direction: column; gap: 12px; }
.related-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color var(--transition);
}
.related-item:hover { border-color: var(--green); }
.related-item-league {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.related-item-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.35;
}
.related-item-date { font-size: 0.75rem; color: var(--text-muted); }

/* ============================================================
   404 page
   ============================================================ */
.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h) - 80px);
  text-align: center;
  padding: 60px 24px;
}
.not-found-code {
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.not-found h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.not-found p { color: var(--text-muted); margin-bottom: 32px; max-width: 360px; }

/* ============================================================
   About page
   ============================================================ */
.about-content { padding: 48px 0 80px; }
.about-content > .container { max-width: 760px; }
.about-content h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}
.about-content h2:first-child { margin-top: 0; }
.about-content p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.about-content ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; padding-left: 0; }
.about-content ul li {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 18px;
  position: relative;
}
.about-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ============================================================
   Cookie consent bar
   ============================================================ */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #1a1a1a;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 12px 24px;
  font-size: 0.8125rem;
  line-height: 1.5;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar-text { flex: 1; max-width: 720px; }
.cookie-bar-link { color: var(--green); text-decoration: underline; }
.cookie-bar-link:hover { color: var(--green-dark); }
.cookie-bar-btn {
  flex-shrink: 0;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 7px 18px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-bar-btn:hover { background: var(--green-dark); }

@media (max-width: 600px) {
  .cookie-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ============================================================
   Responsive: tablet 768px
   ============================================================ */
@media (max-width: 1024px) {
  .predictions-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .prediction-layout > .container { grid-template-columns: 1fr; }
  .prediction-sidebar { flex-direction: row; flex-wrap: wrap; }
  .prediction-sidebar .sidebar-card { flex: 1; min-width: 260px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; max-height: 300px; }
  .comparison-cards { grid-template-columns: 1fr; max-width: 400px; }
  .footer-inner { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
  .hamburger { display: flex; }
  .nav { display: none; }
  .cta-banner-inner { padding: 40px 24px; }
  .hero { padding: 48px 0 40px; }
}

@media (max-width: 640px) {
  .predictions-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .prediction-teams { flex-direction: column; gap: 12px; }
  .betting-options-grid { grid-template-columns: 1fr; }
}
