:root {
  --bk-surface-page:        #f8f8fd;
  --bk-surface-secondary:   #eeeefa;
  --bk-surface-tertiary:    #f5f5fb;
  --bk-surface-card:        #ffffff;
  --bk-border:              #e0e0ee;
  --bk-border-light:        #ebebf5;
  --bk-text-primary:        #1a1a1a;
  --bk-text-secondary:      #3a3e48;
  --bk-text-tertiary:       #5a6070;
  --bk-text-muted:          #7a8090;
  --bk-text-faint:          #9aa0b0;
  --bk-text-divider:        #c4c8d2;
  --bk-accent-blue:         #1a4fb8;
  --bk-accent-blue-bg:      #eff3ff;
  --bk-accent-green:        #1f7a45;
  --bk-accent-green-bg:     #e8f5ee;
  --bk-accent-amber:        #f5a623;
  --bk-accent-red:          #a32d2d;
  --bk-accent-red-bg:       #fceaea;
  --bk-promo-bg:            #fff7e6;
  --bk-promo-color:         #995900;
  --bk-promo-border:        #f0d9a3;
  --bk-badge-home-bg:       #eaf3de;
  --bk-badge-home-color:    #3b6d11;
  --bk-badge-away-bg:       #fceaea;
  --bk-badge-away-color:    #a32d2d;
  --bk-cta-blue:            linear-gradient(90deg, #4F91FF 0%, #3D36B9 100%);
  --bk-cta-blue-border:     #468AFD;
  --bk-cta-green:           linear-gradient(90deg, #10B981 0%, #059669 100%);
}

/* ===== Match meta line (league badge + date) ===== */
.bk-match-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 10px;
  font-family: inherit;
}
.bk-match-meta__league {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--bk-accent-blue-bg, #eff3ff);
  color: var(--bk-accent-blue, #1a4fb8);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}
.bk-match-meta__date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--bk-text-tertiary, #5a6070);
}
.bk-match-meta__date svg {
  color: var(--bk-text-faint, #9aa0b0);
}

/* ===== H1 ===== */
.bk-match-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 18px;
  color: var(--bk-text-primary, #1a1a1a);
}

/* ===== Match card ===== */
.bk-match-card {
  border: 1px solid var(--bk-border, #e0e0ee);
  border-radius: 12px;
  overflow: hidden;
  margin: 0 0 22px;
  background: #fff;
  font-family: inherit;
}

/* Teams row */
.bk-match-card__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 22px 18px;
}
.bk-match-team {
  text-align: center;
}
.bk-match-team__logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bk-surface-secondary, #eeeefa);
  border: 1px solid var(--bk-border, #e0e0ee);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  overflow: hidden;
}
.bk-match-team__logo img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}
.bk-match-team__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--bk-text-primary, #1a1a1a);
}
.bk-match-team__country {
  font-size: 12px;
  color: var(--bk-text-muted, #7a8090);
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bk-match-team__side {
  padding: 1px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.bk-match-team__side--home {
  background: var(--bk-badge-home-bg, #eaf3de);
  color: var(--bk-badge-home-color, #3b6d11);
}
.bk-match-team__side--away {
  background: var(--bk-accent-red-bg, #fceaea);
  color: var(--bk-accent-red, #a32d2d);
}
.bk-match-card__vs {
  font-size: 13px;
  font-weight: 600;
  color: var(--bk-text-muted, #7a8090);
  letter-spacing: 1px;
}

/* Venue */
.bk-match-card__venue {
  padding: 10px 18px;
  background: var(--bk-surface-tertiary, #f5f5fb);
  border-top: 1px solid var(--bk-border, #e0e0ee);
  font-size: 12px;
  color: var(--bk-text-tertiary, #5a6070);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.bk-match-card__venue svg {
  color: var(--bk-text-faint, #9aa0b0);
}

/* Pick row */
.bk-match-card__pick {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bk-surface-secondary, #eeeefa);
  border-top: 1px solid var(--bk-border, #e0e0ee);
  flex-wrap: wrap;
}
.bk-match-pick__info {
  flex: 1;
  min-width: 160px;
}
.bk-match-pick__label {
  font-size: 11px;
  color: var(--bk-text-muted, #7a8090);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 500;
  margin-bottom: 2px;
}
.bk-match-pick__bet {
  font-size: 15px;
  font-weight: 600;
  color: var(--bk-text-primary, #1a1a1a);
}
.bk-match-pick__odds {
  text-align: center;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--bk-border, #e0e0ee);
  border-radius: 8px;
}
.bk-match-pick__odds-label {
  font-size: 10px;
  color: var(--bk-text-muted, #7a8090);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 500;
}
.bk-match-pick__odds-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--bk-accent-blue, #1a4fb8);
  line-height: 1;
}
.bk-match-pick__cta {
  padding: 10px 18px;
  background: var(--bk-cta-blue, linear-gradient(90deg, #4F91FF 0%, #3D36B9 100%));
  border: 1px solid var(--bk-cta-blue-border, #468AFD);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.15s ease;
}
.bk-match-pick__cta:hover { opacity: 0.9; text-decoration:none; color:#fff; }

/* ===== Responsive ===== */
@media (max-width: 600px) {
  .bk-match-title { font-size: 22px; }
  .bk-match-card__teams{ padding: 18px 14px; gap: 8px; }
  .bk-match-team__logo { width: 60px; height: 60px; }
  .bk-match-team__name { font-size: 14px; }
  .bk-match-team__country { font-size: 11px; flex-direction: column; gap: 4px; }
  .bk-match-card__pick { padding: 14px; flex-wrap: wrap; }
  .bk-match-pick__cta  { width: 100%; text-align: center; padding: 12px; }
}