/* Ball Pwal — public website (design mockup) */
:root {
  --bp-layout-min: 1280px;
  --bp-navy: #0a1e3f;
  --bp-navy-mid: #122a52;
  --bp-navy-deep: #061428;
  --bp-navy-light: #1e4080;
  --bp-gold: #e4b41a;
  --bp-gold-hover: #f5c832;
  --bp-page-bg: #f0f2f6;
  --bp-card: #fff;
  --bp-text: #1a1a2e;
  --bp-muted: #6b7280;
  --bp-border: #e2e6ed;
  --bp-live: #e31e24;
  --bp-sidebar-w: 230px;
  --bp-right-w: 310px;
  --bp-header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Inter, "Noto Sans Myanmar", system-ui, sans-serif;
  background: var(--bp-page-bg);
  color: var(--bp-text);
  margin: 0;
  overflow-x: hidden;
}

.bp-shell {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bp-page-bg);
}

a { color: inherit; }

.bp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.bp-brand-logo { width: 44px; height: 44px; object-fit: contain; }
.bp-brand-wordmark {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
}
.bp-brand-ball { color: var(--bp-navy); }
.bp-brand-pwal { color: var(--bp-gold); }
.bp-brand--footer .bp-brand-ball { color: #fff; }

.bp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--bp-header-h);
  padding: 0 28px;
  background: #fff;
  border-bottom: 1px solid var(--bp-border);
  box-shadow: 0 2px 12px rgba(10, 30, 63, 0.06);
}

.bp-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.bp-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--bp-muted);
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 6px;
  position: relative;
}
.bp-nav a:hover { color: var(--bp-navy); }
.bp-nav a.active { color: var(--bp-navy); }
.bp-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--bp-gold);
  border-radius: 2px;
}

.bp-header-actions { display: flex; align-items: center; gap: 8px; }

.bp-app-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 18px 0 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--bp-navy) 0%, #152f5c 55%, var(--bp-navy-deep) 100%);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid rgba(228, 180, 26, 0.35);
  box-shadow: 0 4px 16px rgba(10, 30, 63, 0.18);
  position: relative;
  overflow: hidden;
}
.bp-app-dl-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(228, 180, 26, 0.12) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: bpDlShine 2.8s ease-in-out infinite;
}
@keyframes bpDlShine {
  0%, 55% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
.bp-app-dl-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 800;
  color: var(--bp-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bp-app-dl-live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e31e24;
  box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.55);
  animation: bpLivePulse 1.4s ease-out infinite;
}
@keyframes bpLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(227, 30, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(227, 30, 36, 0); }
}
.bp-app-dl-text { position: relative; z-index: 1; }

.bp-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--bp-border);
  background: #fff;
  color: var(--bp-navy);
  font-size: 20px;
  cursor: pointer;
}

.bp-mobile-nav {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(300px, 88vw);
  z-index: 200;
  background: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 8px 0 32px rgba(10, 30, 63, 0.15);
  transform: translateX(-105%);
  transition: transform 0.22s ease;
}
.bp-mobile-nav.is-open { transform: translateX(0); }
.bp-mobile-nav[hidden] { display: flex; }
.bp-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bp-border);
}
.bp-mobile-nav-close {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 8px;
  background: var(--bp-page-bg);
  font-size: 18px;
  cursor: pointer;
}
.bp-mobile-link {
  display: block;
  padding: 14px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--bp-muted);
}
.bp-mobile-link:hover,
.bp-mobile-link.active {
  background: rgba(228, 180, 26, 0.12);
  color: var(--bp-navy);
}
.bp-mobile-cta {
  margin-top: auto;
  justify-content: center;
  height: 48px;
  font-size: 15px;
}
.bp-mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(6, 20, 40, 0.45);
  backdrop-filter: blur(2px);
}
.bp-mobile-backdrop[hidden] { display: none; }

.bp-vip-card--mobile { display: none; margin-top: 0; }
.bp-promo--mobile { display: none; }
.bp-sidebar-mobile { display: none; }
.bp-vip-ico { font-size: 32px; margin-bottom: 4px; }
.bp-icon-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--bp-border);
  background: #fff;
  color: var(--bp-navy);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.bp-btn-outline {
  height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  border: 2px solid var(--bp-navy);
  background: #fff;
  color: var(--bp-navy);
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.bp-btn-gold {
  height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  border: none;
  background: var(--bp-gold);
  color: var(--bp-navy-deep);
  font-size: 13px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.bp-btn-gold:hover { background: var(--bp-gold-hover); }

.bp-body {
  display: grid;
  grid-template-columns: var(--bp-sidebar-w) 1fr var(--bp-right-w);
  flex: 1;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.bp-sidebar-left {
  background: #fff;
  border-right: 1px solid var(--bp-border);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: var(--bp-header-h);
  height: calc(100vh - var(--bp-header-h));
  overflow-y: auto;
}
.bp-side-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  color: var(--bp-muted);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.bp-side-link:hover { background: var(--bp-page-bg); color: var(--bp-navy); }
.bp-side-link.active {
  background: linear-gradient(90deg, rgba(228, 180, 26, 0.15), transparent);
  color: var(--bp-navy);
  border-left: 3px solid var(--bp-gold);
  padding-left: 11px;
}
.bp-side-ico { width: 18px; text-align: center; opacity: 0.75; }

.bp-vip-card {
  margin-top: auto;
  padding: 20px 16px;
  border-radius: 14px;
  background: linear-gradient(160deg, #dceaf8, #b8d0ef);
  color: var(--bp-navy);
  text-align: center;
  border: 1px solid rgba(30, 64, 128, 0.1);
}
.bp-vip-card h4 { font-size: 15px; font-weight: 800; margin: 8px 0 10px; }
.bp-vip-list { list-style: none; text-align: left; font-size: 12px; line-height: 1.9; margin-bottom: 14px; }
.bp-vip-list li::before { content: "✓ "; color: var(--bp-gold); font-weight: 800; }

.bp-main { padding: 20px; min-width: 0; }
.bp-home { display: flex; flex-direction: column; gap: 18px; }

/* Hero */
.bp-hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 168px;
  box-shadow: 0 8px 32px rgba(10, 30, 63, 0.18);
  background: linear-gradient(105deg, var(--bp-navy-deep) 0%, var(--bp-navy) 45%, #1a3d7a 100%);
}
.bp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 88% 50%, rgba(30, 64, 128, 0.45), transparent 55%),
    linear-gradient(105deg, var(--bp-navy-deep) 0%, var(--bp-navy) 45%, #1a3d7a 100%);
}
.bp-hero-content {
  position: relative;
  z-index: 2;
  padding: 22px 28px;
  max-width: 50%;
}
.bp-hero-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 4px;
  background: var(--bp-gold);
  color: var(--bp-navy-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.bp-hero h1 {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 8px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}
.bp-hero p { font-size: 13px; color: rgba(255,255,255,0.85); margin-bottom: 14px; }
.bp-hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.bp-hero-btn {
  height: 38px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.bp-hero-btn--gold { background: var(--bp-gold); color: var(--bp-navy-deep); box-shadow: 0 4px 16px rgba(228,180,26,0.35); }
.bp-hero-btn--outline { background: transparent; color: #fff; border: 2px solid var(--bp-gold); }

.bp-hero-players {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 54%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.bp-hero-player {
  height: 118%;
  max-height: 210px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.45));
}
.bp-hero-player--l { z-index: 1; margin-right: -30px; transform: scale(0.9); }
.bp-hero-player--c { z-index: 3; max-height: 220px; }
.bp-hero-player--r { z-index: 2; margin-left: -30px; transform: scale(0.88); }

.bp-hero-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}
.bp-hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  cursor: pointer;
}
.bp-hero-dot.active { background: var(--bp-gold); width: 20px; border-radius: 4px; }

/* Cards */
.bp-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--bp-border);
  box-shadow: 0 2px 8px rgba(11, 29, 58, 0.04);
  overflow: hidden;
}
.bp-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px;
}
.bp-card-head h3 { font-size: 16px; font-weight: 800; color: var(--bp-navy); }
.bp-card-head a { font-size: 13px; font-weight: 600; color: #c99a12; text-decoration: none; }
.bp-card-link {
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: #c99a12;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}

.bp-live-row {
  display: flex;
  gap: 12px;
  padding: 0 16px 16px;
  overflow-x: auto;
}
.bp-live-card {
  flex: 0 0 calc(33.333% - 8px);
  min-width: 200px;
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  padding: 14px;
  background: #fafbfc;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.bp-live-card:hover { border-color: var(--bp-gold); box-shadow: 0 4px 16px rgba(11,29,58,0.08); }
.bp-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--bp-live);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}
.bp-live-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.bp-live-card-top { display: flex; justify-content: space-between; margin-bottom: 10px; }
.bp-live-league { font-size: 11px; color: var(--bp-muted); font-weight: 600; }
.bp-live-teams { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 10px; }
.bp-live-team { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; min-width: 0; }
.bp-live-team img { width: 36px; height: 36px; object-fit: contain; }
.bp-live-team span { font-size: 11px; font-weight: 600; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; }
.bp-live-score { font-size: 20px; font-weight: 900; color: var(--bp-navy); }
.bp-live-time { font-size: 11px; color: var(--bp-muted); text-align: center; margin-bottom: 10px; }
.bp-live-watch {
  width: 100%; height: 36px;
  border: none; border-radius: 8px;
  background: var(--bp-navy); color: #fff;
  font-size: 12px; font-weight: 700;
  font-family: inherit; cursor: pointer;
}

.bp-home-bottom {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}
#bpTodayCard {
  min-height: 420px;
}
.bp-home-bottom:has(#bpTodayCard.is-hidden) {
  grid-template-columns: 1fr;
}
.bp-card.is-hidden { display: none !important; }

.bp-today-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.bp-today-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--bp-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--bp-border);
  background: #f8f9fb;
}
.bp-today-table td { padding: 12px 16px; border-bottom: 1px solid var(--bp-border); vertical-align: middle; }
.bp-today-team { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.bp-today-team img { width: 24px; height: 24px; object-fit: contain; }
.bp-today-vs { color: var(--bp-muted); text-align: center; font-size: 12px; }
.bp-today-watch {
  height: 32px; padding: 0 14px;
  border: none; border-radius: 8px;
  background: var(--bp-navy); color: #fff;
  font-size: 12px; font-weight: 700;
  font-family: inherit; cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.bp-scorer-list { padding: 4px 16px 16px; }
.bp-scorer-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--bp-border);
}
.bp-scorer-row:last-child { border-bottom: none; }
.bp-scorer-rank { width: 24px; font-weight: 800; color: #c99a12; text-align: center; }
.bp-scorer-photo { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; background: #eee; }
.bp-scorer-info { flex: 1; }
.bp-scorer-name { font-size: 14px; font-weight: 700; color: var(--bp-navy); }
.bp-scorer-club { font-size: 12px; color: var(--bp-muted); }
.bp-scorer-goals { font-size: 18px; font-weight: 900; color: var(--bp-navy); }

/* Right sidebar */
.bp-sidebar-right {
  background: #fff;
  border-left: 1px solid var(--bp-border);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: var(--bp-header-h);
  height: calc(100vh - var(--bp-header-h));
  overflow-y: auto;
}
.bp-rscore-item {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-bottom: 1px solid var(--bp-border);
  background: none;
  border-left: none; border-right: none; border-top: none;
  font-family: inherit;
  text-align: left;
  width: 100%;
  cursor: pointer;
  color: inherit;
}
.bp-rscore-min { font-size: 12px; font-weight: 700; color: var(--bp-live); }
.bp-rscore-teams { font-size: 12px; line-height: 1.4; }
.bp-rscore-val { font-size: 14px; font-weight: 800; color: var(--bp-navy); }

.bp-promo {
  border-radius: 14px;
  background: linear-gradient(155deg, var(--bp-navy), #152f5c, var(--bp-navy-deep));
  color: #fff;
  padding: 22px 18px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.bp-promo h4 { font-size: 15px; font-weight: 800; margin-bottom: 10px; }
.bp-promo-list { list-style: none; font-size: 12px; line-height: 1.8; margin-bottom: 14px; text-align: left; padding: 0 8px; }
.bp-promo-list li::before { content: "✓ "; color: var(--bp-gold); }

.bp-hl-item {
  display: flex; gap: 10px;
  background: none; border: none;
  font-family: inherit; text-align: left;
  cursor: pointer; color: inherit;
  padding: 4px; width: 100%;
  text-decoration: none;
}
.bp-hl-thumb {
  position: relative;
  width: 80px; height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bp-navy);
}
.bp-hl-thumb img { width: 100%; height: 100%; object-fit: cover; }
.bp-hl-play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.35); color: #fff;
}
.bp-hl-title { font-size: 12px; font-weight: 600; line-height: 1.4; }

.bp-trust {
  background: #fff;
  border-top: 1px solid var(--bp-border);
  padding: 22px 28px;
}
.bp-trust-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}
.bp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bp-navy);
}
.bp-trust-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(228,180,26,0.15);
  display: grid;
  place-items: center;
  font-size: 18px;
}

.bp-footer {
  background: var(--bp-navy);
  color: rgba(255,255,255,0.85);
  padding: 44px 28px 28px;
}
.bp-footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 28px;
}
.bp-footer h5 { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 14px; }
.bp-footer ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.bp-footer a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 13px; }
.bp-footer a:hover { color: var(--bp-gold); }
.bp-footer-brand p { font-size: 13px; line-height: 1.65; opacity: 0.72; margin-top: 8px; }
.bp-social { display: flex; gap: 10px; margin-bottom: 16px; }
.bp-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
}
.bp-app-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 8px;
}
.bp-footer-copy {
  max-width: 1600px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

.bp-empty { padding: 24px; text-align: center; color: var(--bp-muted); font-size: 13px; }

.bp-section { display: none; }
.bp-section.active { display: block; }

.bp-page[hidden] { display: none !important; }

.bp-match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  padding: 0 16px 16px;
}

.bp-filter-tabs {
  display: flex;
  gap: 6px;
}
.bp-filter-tab {
  height: 32px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid var(--bp-border);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  color: var(--bp-muted);
  cursor: pointer;
  font-family: inherit;
}
.bp-filter-tab.active {
  background: var(--bp-navy);
  border-color: var(--bp-navy);
  color: #fff;
}

.bp-hl-page {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 12px 16px;
}
.bp-hl-item--btn {
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.bp-vip-page { padding: 4px 0; }
.bp-vip-page-hero { margin: 0; }

/* Telegram join promo — site.css so it paints before deferred fotmob CSS */
.bp-tg-modal {
  position: fixed;
  inset: 0;
  z-index: 15000;
  display: grid;
  place-items: center;
  padding: 16px;
}
.bp-tg-modal[hidden] { display: none !important; }
.bp-tg-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 40, 0.55);
  backdrop-filter: blur(2px);
}
.bp-tg-panel {
  position: relative;
  z-index: 2;
  width: min(380px, 100%);
  background: linear-gradient(155deg, var(--bp-navy), #152f5c);
  color: #fff;
  border-radius: 16px;
  padding: 28px 22px 22px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(10, 30, 63, 0.35);
}
.bp-tg-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}
.bp-tg-ico { font-size: 36px; margin-bottom: 8px; }
.bp-tg-panel h3 { font-size: 18px; margin-bottom: 8px; }
.bp-tg-panel p { font-size: 13px; opacity: 0.9; margin-bottom: 12px; line-height: 1.5; }
.bp-tg-list {
  list-style: none;
  text-align: left;
  font-size: 12px;
  line-height: 1.8;
  margin: 0 0 16px;
  padding: 0 8px;
}
.bp-tg-list li::before { content: "✓ "; color: var(--bp-gold); }
.bp-tg-join { width: 100%; justify-content: center; margin-bottom: 10px; }
.bp-tg-later {
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
}
body.bp-tg-open { overflow: hidden; }

.bp-player-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 16px;
}
.bp-player-modal[hidden] { display: none !important; }
.bp-player-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 40, 0.72);
  backdrop-filter: blur(4px);
}
.bp-player-panel {
  position: relative;
  z-index: 2;
  width: min(960px, 100%);
  background: #0a1628;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.08);
}
.bp-player-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(90deg, var(--bp-navy-deep), var(--bp-navy));
  color: #fff;
}
.bp-player-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--bp-gold);
  margin-bottom: 2px;
}
.bp-player-head h2 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}
.bp-player-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.bp-player-stage {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.bp-player-stage iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.bp-player-stage iframe.hidden { display: none; }
.bp-player-msg {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 600;
  padding: 24px;
  text-align: center;
}
.bp-player-msg.hidden { display: none; }
body.bp-player-open { overflow: hidden; }

html.bp-site-loading .bp-shell { visibility: visible; }
.bp-skel { animation: bp-skel-pulse 1.1s ease-in-out infinite; }
@keyframes bp-skel-pulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}
.bp-player-matches {
  display: flex;
  gap: 8px;
  padding: 10px 14px 0;
  overflow-x: auto;
  scrollbar-width: thin;
}
.bp-player-matches[hidden] { display: none !important; }
.bp-player-match-chip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
}
.bp-player-match-chip.active {
  border-color: var(--bp-gold);
  background: rgba(212,175,55,0.18);
}
.bp-player-chip-live {
  color: #ff5b5b;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.04em;
}
.bp-player-streams {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 14px 14px;
}
.bp-player-streams[hidden] { display: none !important; }
.bp-player-stream-chip {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.bp-player-stream-chip.active {
  border-color: var(--bp-gold);
  color: var(--bp-gold);
  background: rgba(212,175,55,0.12);
}

.bp-live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
  padding: 12px;
}
.bp-live-grid--compact {
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0 8px 12px;
}
.bp-wl-football-only {
  padding: 0 4px 12px;
}
.bp-wl-football-only .bp-wl-section {
  margin: 0 0 10px;
}
.bp-live-grid-hint {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}
.bp-card-sub {
  font-size: 11px;
  color: var(--bp-gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bp-ph {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bp-page-bg);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--bp-navy);
}

/* ── Tablet: 3-column like desktop ── */
@media (min-width: 768px) and (max-width: 1279px) {
  :root { --bp-sidebar-w: 200px; --bp-right-w: min(280px, 30vw); }

  .bp-body {
    grid-template-columns: var(--bp-sidebar-w) 1fr var(--bp-right-w);
    align-items: start;
  }
  .bp-sidebar-left {
    display: flex;
    padding: 12px 8px;
    position: sticky;
    top: var(--bp-header-h);
    height: auto;
    max-height: calc(100vh - var(--bp-header-h));
    overflow-y: auto;
  }
  .bp-sidebar-mobile,
  .bp-vip-card--mobile,
  .bp-promo--mobile { display: none !important; }
  .bp-sidebar-right .bp-promo { display: block; }
  .bp-nav {
    display: flex;
    flex: 1;
    min-width: 0;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .bp-nav::-webkit-scrollbar { display: none; }
  .bp-nav a {
    font-size: 12px;
    padding: 6px 10px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .bp-menu-btn { display: none; }
  .bp-side-link {
    font-size: 12px;
    padding: 8px 10px;
    gap: 8px;
  }
  .bp-side-ico { width: 16px; font-size: 13px; }
  .bp-vip-card {
    padding: 14px 10px;
    margin-top: auto;
  }
  .bp-vip-card h4 { font-size: 13px; }
  .bp-vip-list { font-size: 11px; line-height: 1.75; margin-bottom: 10px; }
  .bp-vip-card .bp-btn-gold {
    width: 100%;
    justify-content: center;
    height: 38px;
    font-size: 12px;
    padding: 0 10px;
  }
  .bp-main { padding: 14px 12px; }
  .bp-sidebar-right {
    padding: 14px 10px;
    position: sticky;
    top: var(--bp-header-h);
    height: auto;
    max-height: calc(100vh - var(--bp-header-h));
  }
  .bp-hero-content { max-width: 52%; }
  .bp-hero-players { width: 48%; }
  .bp-hero h1 { font-size: 28px; }
  .bp-home-bottom { gap: 12px; }
}

/* ── Mobile: single-column app layout ── */
@media (max-width: 767px) {
  :root {
    --bp-header-h: 56px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .bp-shell {
    min-width: 0;
    width: 100%;
  }

  .bp-header {
    padding: 0 10px;
    gap: 8px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }

  .bp-brand {
    flex-shrink: 0;
    min-width: 0;
    order: 1;
  }

  .bp-brand-logo {
    width: 34px;
    height: 34px;
  }

  .bp-brand-wordmark {
    font-size: 15px;
  }

  .bp-nav {
    display: none;
  }

  .bp-menu-btn {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    order: 3;
  }

  .bp-header-actions {
    margin-left: auto;
    flex-shrink: 0;
    gap: 6px;
    order: 2;
  }

  .bp-search-wrap,
  .bp-icon-btn {
    display: none;
  }

  .bp-app-dl-btn {
    display: inline-flex !important;
    height: 38px;
    padding: 0 10px;
    font-size: 11px;
    gap: 4px;
    flex-shrink: 0;
    border: none;
    cursor: pointer;
  }

  .bp-app-dl-text {
    display: inline;
  }

  .bp-app-dl-ver {
    display: none;
  }

  .bp-app-dl-ico {
    font-size: 14px;
  }

  .bp-body {
    display: flex;
    flex-direction: column;
    max-width: none;
    width: 100%;
  }

  .bp-sidebar-left {
    display: none !important;
  }

  .bp-main {
    padding: 12px;
    width: 100%;
    order: 1;
  }

  .bp-sidebar-right {
    display: block !important;
    position: static;
    width: 100%;
    height: auto;
    max-height: none;
    overflow: visible;
    border-left: none;
    border-top: 1px solid var(--bp-border);
    padding: 12px;
    order: 2;
  }

  .bp-sidebar-mobile,
  .bp-vip-card--mobile,
  .bp-promo--mobile {
    display: none !important;
  }

  .bp-home {
    gap: 14px;
  }

  .bp-home-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bp-agent-banner-link img {
    width: 100%;
    height: auto;
  }

  .bp-live-row {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .bp-live-card {
    flex: 0 0 min(280px, 88vw);
    min-width: min(280px, 88vw);
    padding: 12px;
  }

  .bp-live-team img {
    width: 36px;
    height: 36px;
  }

  .bp-live-team span {
    font-size: 11px;
  }

  .bp-live-score {
    font-size: 18px;
  }

  .bp-live-watch {
    height: 36px;
    font-size: 12px;
  }

  .bp-card-head h3 {
    font-size: 14px;
  }

  .bp-scorer-photo {
    width: 40px;
    height: 40px;
  }

  .bp-scorer-name {
    font-size: 12px;
  }

  .bp-scorer-goals {
    font-size: 16px;
  }

  .bp-footer {
    padding: 24px 12px 18px;
  }

  .bp-footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .bp-footer-copy {
    margin-top: 16px;
    font-size: 11px;
  }

  .bp-player-panel {
    width: min(960px, calc(100vw - 16px));
  }

  .bp-mobile-app-bar {
    display: flex;
  }

  body {
    padding-bottom: calc(52px + env(safe-area-inset-bottom, 0px));
  }
}

/* ── Desktop: full 3-column dashboard ── */
@media (min-width: 1280px) {
  .bp-body {
    grid-template-columns: var(--bp-sidebar-w) 1fr var(--bp-right-w);
  }
}

/* Watch Live widget + page */
.bp-wl-section {
  margin: 8px 0 4px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--bp-muted);
}
.bp-wl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 8px;
  border: none;
  border-radius: 10px;
  background: #f8fafc;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.15s;
}
.bp-wl-item:hover { background: #eef2ff; }
.bp-wl-ico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bp-navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
}
.bp-wl-label {
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  color: var(--bp-text);
  line-height: 1.3;
}
.bp-wl-tag {
  font-size: 10px;
  font-weight: 800;
  color: #dc2626;
  background: #fef2f2;
  padding: 3px 8px;
  border-radius: 999px;
}
.bp-wl-page-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 12px 16px;
}

/* Watch Live — YLA TV card grid */
.bp-wl-page-head {
  padding: 8px 12px 4px;
}
.bp-wl-page-head h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--bp-text);
}
.bp-wl-page-head p {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--bp-muted);
}
.bp-wl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
}
.bp-wl-grid--compact {
  gap: 8px;
  padding: 0;
}
.bp-wl-grid-empty {
  grid-column: 1 / -1;
}
.bp-wl-card {
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: #111827;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s, box-shadow 0.15s;
}
.bp-wl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.24);
}
.bp-wl-card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1e293b, #0f172a);
}
.bp-wl-card-thumb--bein {
  background: linear-gradient(135deg, #4a044e 0%, #7f1d1d 55%, #111827 100%);
}
.bp-wl-card-thumb--bbc {
  background: linear-gradient(135deg, #1d4ed8 0%, #111827 100%);
}
.bp-wl-card-thumb--itv {
  background: linear-gradient(135deg, #ea580c 0%, #7c2d12 45%, #111827 100%);
}
.bp-wl-card-live {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(220, 38, 38, 0.92);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.bp-wl-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: #1f2937;
}
.bp-wl-card-name {
  font-size: 12px;
  font-weight: 700;
  color: #f9fafb;
  line-height: 1.3;
}
.bp-wl-card-play {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 10px;
  flex-shrink: 0;
}
.bp-wl-football {
  margin-top: 8px;
}

/* Select Server modal */
.bp-server-modal {
  position: fixed;
  inset: 0;
  z-index: 13000;
  display: grid;
  place-items: center;
  padding: 16px;
}
.bp-server-modal[hidden] { display: none !important; }
.bp-server-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}
.bp-server-panel {
  position: relative;
  width: min(420px, 100%);
  max-height: min(80vh, 560px);
  border-radius: 16px;
  overflow: hidden;
  background: #111827;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
}
.bp-server-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  color: #fff;
}
.bp-server-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bp-server-head p {
  margin: 2px 0 0;
  font-size: 12px;
  opacity: 0.9;
}
.bp-server-ico {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.bp-server-close {
  border: none;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 16px;
}
.bp-server-list {
  padding: 12px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bp-server-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 12px;
  border: 1px solid #374151;
  border-radius: 12px;
  background: #1f2937;
  color: #f9fafb;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.bp-server-item:hover {
  border-color: #dc2626;
  background: #253041;
}
.bp-server-play {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
}
.bp-server-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}
.bp-server-meta small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.08em;
}
.bp-server-arrow {
  color: #9ca3af;
  font-size: 18px;
}
body.bp-server-open { overflow: hidden; }

/* Premium login modal */
.bp-premium-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
}
.bp-premium-modal[hidden] { display: none !important; }
.bp-premium-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 40, 0.72);
}
.bp-premium-panel {
  position: relative;
  width: min(400px, calc(100vw - 32px));
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}
.bp-premium-panel h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--bp-navy);
}
.bp-premium-sub {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--bp-muted);
  line-height: 1.45;
}
.bp-premium-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: #f1f5f9;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}
.bp-premium-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--bp-muted);
}
.bp-premium-field input {
  height: 42px;
  border: 1px solid var(--bp-border);
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
  font-family: inherit;
}
.bp-premium-err {
  min-height: 18px;
  margin: 0 0 10px;
  font-size: 12px;
  color: #dc2626;
}
body.bp-premium-open { overflow: hidden; }

/* ── Mockup v2 layout (BALL PWAL) ── */
:root {
  --bp-sidebar-w: 248px;
  --bp-right-w: 300px;
  --bp-header-h: 72px;
}

.bp-header {
  padding: 0 20px;
  gap: 12px;
}

.bp-nav {
  flex: 1;
  justify-content: center;
  max-width: 620px;
  margin: 0 auto;
}

.bp-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--bp-border);
  background: #f8fafc;
  min-width: 220px;
  max-width: 280px;
}

.bp-search-ico { font-size: 14px; opacity: 0.55; }

.bp-search-input {
  border: none;
  background: transparent;
  font: inherit;
  font-size: 13px;
  width: 100%;
  outline: none;
  color: var(--bp-text);
}

.bp-app-dl-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px 0 14px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #f5c518, #e8a020 45%, #f5c518);
  background-size: 200% 100%;
  color: #0a1e3f;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(245, 197, 24, 0.35);
  animation: bp-app-dl-pulse 2.4s ease-in-out infinite;
}
.bp-app-dl-btn:hover {
  animation: none;
  background-position: 100% 0;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.45);
}
.bp-app-dl-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.55) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: bp-app-dl-shine 2.8s ease-in-out infinite;
  pointer-events: none;
}
.bp-app-dl-ico { font-size: 16px; position: relative; z-index: 1; }
.bp-app-dl-text { position: relative; z-index: 1; }
.bp-app-dl-ver {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  opacity: 0.75;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(10, 30, 63, 0.12);
}
@keyframes bp-app-dl-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(245, 197, 24, 0.35); }
  50% { box-shadow: 0 4px 22px rgba(245, 197, 24, 0.55); }
}
@keyframes bp-app-dl-shine {
  0%, 55% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.bp-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid var(--bp-border);
  background: #fff;
  color: var(--bp-navy);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.bp-login-ico { font-size: 15px; }
.bp-login-chev { font-size: 10px; opacity: 0.6; }

.bp-side-section { margin-bottom: 18px; }

.bp-side-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bp-muted);
  margin: 0 0 8px 10px;
}

.bp-league-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bp-league-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bp-text);
  text-decoration: none;
}

.bp-league-item:hover { background: var(--bp-page-bg); }
.bp-league-ico { width: 22px; text-align: center; font-size: 14px; }

.bp-league-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
}

.bp-agent-banner {
  margin-bottom: 16px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(10, 30, 63, 0.12);
}

.bp-agent-banner-link {
  display: block;
  line-height: 0;
}

.bp-agent-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.bp-live-now-ico {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-right: 6px;
  font-weight: 900;
  font-size: 15px;
  color: var(--bp-gold);
  letter-spacing: -0.04em;
}

.bp-live-now-dot {
  color: #e53935;
  font-size: 10px;
  line-height: 1;
  margin: 0 1px;
}

.bp-quick-links .bp-side-link.active {
  background: rgba(228, 180, 26, 0.14);
  color: var(--bp-navy);
  border-left: 3px solid var(--bp-gold);
  padding-left: 11px;
}

.bp-app-promo {
  margin-top: auto;
  padding: 18px 16px;
  border-radius: 16px;
  background: linear-gradient(165deg, #0f2d5c 0%, #0a1e3f 55%, #061428 100%);
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.bp-app-promo-visual { font-size: 42px; margin-bottom: 8px; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.35)); }
.bp-app-promo h4 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.bp-app-promo p { font-size: 11px; line-height: 1.5; opacity: 0.78; margin-bottom: 12px; }

.bp-app-store-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.bp-app-store-btn--ios { margin-bottom: 0; }

/* Featured hero banner */
.bp-featured {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  background: linear-gradient(105deg, #061428 0%, #0a1e3f 40%, #1a3d7a 100%);
  box-shadow: 0 12px 40px rgba(10, 30, 63, 0.22);
}

.bp-featured-stadium {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 120% at 50% 100%, rgba(228, 180, 26, 0.08), transparent 55%),
    url("https://images.unsplash.com/photo-1459869484681-5fd7568e3f2a?w=1200&q=60") center/cover no-repeat;
  opacity: 0.35;
}

.bp-featured-inner {
  position: relative;
  z-index: 2;
  padding: 28px 32px;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.bp-featured-league {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
}

.bp-featured-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--bp-live);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  vertical-align: middle;
}

.bp-featured-live span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.2s infinite;
}

.bp-featured-scoreline {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin: 8px 0 4px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.bp-featured-clock {
  font-size: 14px;
  font-weight: 700;
  color: var(--bp-gold);
  margin-bottom: 6px;
}

.bp-featured-title {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 16px;
}

.bp-featured-watch {
  height: 44px;
  padding: 0 28px;
  border: none;
  border-radius: 10px;
  background: var(--bp-gold);
  color: var(--bp-navy-deep);
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(228, 180, 26, 0.4);
}

.bp-featured-players {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bp-featured-player {
  position: absolute;
  bottom: 0;
  height: 115%;
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.45));
}

.bp-featured-player--l { left: 2%; }
.bp-featured-player--r { right: 2%; }

.bp-card-ico { margin-right: 6px; }

.bp-live-card {
  flex: 0 0 calc(25% - 9px);
  min-width: 180px;
}

.bp-upcoming-list { padding: 0 16px 16px; display: flex; flex-direction: column; gap: 0; }

.bp-upcoming-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bp-border);
}

.bp-upcoming-row:last-child { border-bottom: none; }

.bp-upcoming-teams {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bp-upcoming-vs {
  font-size: 12px;
  color: var(--bp-muted);
  font-weight: 700;
}

.bp-upcoming-meta {
  font-size: 12px;
  color: var(--bp-muted);
  margin-top: 4px;
}

.bp-remind-btn {
  flex-shrink: 0;
  height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--bp-border);
  background: #fff;
  color: var(--bp-navy);
  font-size: 12px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
}

.bp-remind-btn:disabled {
  opacity: 0.7;
  cursor: default;
  color: #16a34a;
  border-color: #bbf7d0;
  background: #f0fdf4;
}

.bp-chat-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
}

.bp-chat-live span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  animation: pulse 1.4s infinite;
}

.bp-chat-feed {
  max-height: 280px;
  overflow-y: auto;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bp-chat-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.bp-chat-msg--pinned {
  background: rgba(245, 197, 24, 0.12);
  border-radius: 10px;
  padding: 8px;
  margin: 0 -8px;
  border-left: 3px solid var(--bp-gold);
}

.bp-chat-msg--admin .bp-chat-meta b { color: #c62828; }

.bp-chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bp-navy), #1e4080);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.bp-chat-meta {
  font-size: 12px;
  margin-bottom: 2px;
}

.bp-chat-meta span { color: var(--bp-muted); font-weight: 500; margin-left: 6px; }
.bp-chat-body p { font-size: 13px; line-height: 1.4; color: var(--bp-text); margin: 0; }

.bp-chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--bp-border);
}

.bp-chat-name {
  grid-column: 1 / -1;
  height: 34px;
  border: 1px solid var(--bp-border);
  border-radius: 10px;
  padding: 0 12px;
  font: inherit;
  font-size: 12px;
}

.bp-chat-form input:not(.bp-chat-name) {
  flex: 1;
  height: 38px;
  border: 1px solid var(--bp-border);
  border-radius: 10px;
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
}

.bp-chat-empty {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--bp-muted);
  margin: 0;
}

.bp-chat-send {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 10px;
  background: var(--bp-navy);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
}

/* Sidebar Main Live (replaces Chat Room) */
.bp-mainlive-card .bp-side-live-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 12px 14px;
}

.bp-side-live-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--bp-border, rgba(15, 23, 42, 0.08));
  border-radius: 12px;
  background: var(--bp-card-bg, #fff);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.bp-side-live-row:hover {
  border-color: rgba(245, 197, 24, 0.55);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.bp-side-live-logos {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bp-side-live-logos img,
.bp-side-live-logos .bp-ph--sm {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #f1f5f9;
}

.bp-ph--sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--bp-navy);
}

.bp-side-live-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bp-side-live-badge {
  display: inline-block;
  width: fit-content;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 2px 6px;
  border-radius: 4px;
}

.bp-side-live-badge--live {
  background: #fef2f2;
  color: #dc2626;
}

.bp-side-live-badge--up {
  background: #eff6ff;
  color: #2563eb;
}

.bp-side-live-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--bp-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bp-side-live-meta small {
  font-size: 11px;
  color: var(--bp-muted);
}

.bp-side-live-go {
  font-size: 14px;
  color: var(--bp-gold, #f5c518);
  font-weight: 700;
}

.bp-side-live-all {
  display: block;
  margin-top: 4px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--bp-navy);
  text-decoration: none;
}

.bp-side-live-all:hover {
  color: var(--bp-gold, #f5c518);
}

.bp-footer {
  position: relative;
  padding-top: 56px;
}

.bp-footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: var(--bp-page-bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.bp-footer-newsletter p {
  font-size: 12px;
  opacity: 0.72;
  margin-bottom: 10px;
  line-height: 1.5;
}

.bp-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.bp-newsletter-form input {
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 0 12px;
  font: inherit;
  font-size: 13px;
}

.bp-newsletter-form .bp-btn-gold { justify-content: center; height: 40px; }
.bp-newsletter-ok { font-size: 12px; color: var(--bp-gold); margin-top: 4px; }

.bp-trust { display: none; }

.bp-mobile-app-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(135deg, #f5c518, #e8a020);
  color: #0a1e3f;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 -4px 20px rgba(10, 30, 63, 0.15);
  animation: bp-app-dl-pulse 2.4s ease-in-out infinite;
}

.bp-mobile-app-bar strong {
  font-size: 11px;
  opacity: 0.85;
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(10, 30, 63, 0.1);
}

.bp-mobile-cta--outline {
  background: transparent !important;
  color: var(--bp-navy) !important;
  border: 2px solid var(--bp-gold) !important;
  box-shadow: none !important;
}

@media (max-width: 1279px) {
  .bp-search-wrap { display: none; }
  .bp-login-btn span.bp-login-chev,
  .bp-login-btn .bp-login-ico { display: none; }
  .bp-login-btn { padding: 0 12px; font-size: 12px; }
  .bp-featured-player { max-height: 180px; opacity: 0.85; }
  .bp-live-card { flex: 0 0 calc(50% - 6px); }
}

@media (max-width: 900px) {
  .bp-featured-scoreline { font-size: 36px; }
  .bp-featured-players { display: none; }
}
