
.bp-schedule-filter {
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--bp-border);
  background: var(--bp-card);
  color: var(--bp-muted);
  transition: all 0.2s;
}

.bp-schedule-filter.is-active,
.bp-schedule-filter:hover {
  background: var(--bp-primary);
  color: var(--bp-white);
  border-color: var(--bp-primary);
}

.bp-section--light .bp-schedule-filter {
  background: var(--bp-surface-plain);
  border-color: rgba(var(--bp-primary-rgb), 0.15);
  color: var(--bp-muted-ink);
}

.bp-section--light .bp-schedule-filter.is-active,
.bp-section--light .bp-schedule-filter:hover {
  background: var(--bp-primary);
  color: var(--bp-white);
  border-color: var(--bp-primary);
}

.bp-schedule-match {
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--bp-white-rgb), 0.08);
  border-left: 1px solid rgba(var(--bp-white-rgb), 0.08);
}

.bp-schedule-match[hidden],
.bp-schedule-empty[hidden],
.bp-schedule-match[data-bp-schedule-match][hidden],
[data-bp-schedule-group][hidden] {
  display: none;
}

.bp-schedule-match.is-live {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.1);
}

.bp-schedule-match__live-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #ef4444;
  color: var(--bp-white);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-bottom-left-radius: var(--bp-radius);
  letter-spacing: 0.1em;
  animation: bp-blink 2s ease-in-out infinite;
}

.bp-odd-cell {
  text-align: center;
  padding: 0.5rem;
  border-radius: var(--bp-radius);
  cursor: pointer;
  transition: background 0.2s;
}

.bp-odd-cell--1 {
  background: rgba(var(--bp-primary-rgb), 0.1);
  border: 1px solid rgba(var(--bp-white-rgb), 0.1);
  color: var(--bp-primary);
}

.bp-odd-cell--x {
  background: var(--bp-bg);
  border: 1px solid var(--bp-border);
  color: var(--bp-muted);
}

.bp-odd-cell--2 {
  background: rgba(var(--bp-accent-rgb), 0.1);
  border: 1px solid rgba(var(--bp-white-rgb), 0.1);
  color: var(--bp-accent);
}

.bp-series-card {
  padding: 1.25rem;
  border: 1px solid rgba(var(--bp-white-rgb), 0.08);
  border-left: 1px solid rgba(var(--bp-white-rgb), 0.08);
}

.bp-section--light .bp-series-card {
  border-color: rgba(var(--bp-primary-rgb), 0.12);
  border-left-color: rgba(var(--bp-primary-rgb), 0.12);
}

.bp-sidebar-cta {
  background: rgba(15, 23, 18, 0.5);
  border: 1px solid rgba(var(--bp-white-rgb), 0.08);
  border-radius: var(--bp-radius-xl);
  padding: 1.5rem;
  text-align: center;
}

.bp-section--light .bp-sidebar-cta {
  background: var(--bp-surface-plain);
  border-color: rgba(var(--bp-primary-rgb), 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.bp-schedule-empty {
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px dashed rgba(var(--bp-primary-rgb), 0.18);
  background: rgba(var(--bp-primary-rgb), 0.04);
}

.bp-hidden-city {
  display: none;
}


.bp-date-bar {
  background: var(--bp-primary);
  border-radius: var(--bp-radius-xl);
  padding: 0.875rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bp-date-bar__label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--bp-white);
}

.bp-date-bar__count {
  background: rgba(255, 255, 255, 0.18);
  color: var(--bp-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}


.bp-fixture-card {
  background: var(--bp-card);
  border: 1px solid var(--bp-border);
  border-radius: var(--bp-radius-xl);
  padding: 1.125rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bp-fixture-card:hover {
  border-color: rgba(var(--bp-primary-rgb), 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.bp-fixture-card.is-live {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.08);
}

.bp-fixture-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.125rem;
}

.bp-fixture-card__sport {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bp-muted);
}

.bp-fixture-card__time {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--bp-accent);
  border: 1px solid rgba(var(--bp-accent-rgb), 0.45);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

.bp-fixture-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex: 1;
}

.bp-fixture-card__team {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.bp-fixture-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(var(--bp-primary-rgb), 0.12);
  border: 1px solid rgba(var(--bp-primary-rgb), 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--bp-foreground);
  flex-shrink: 0;
}

.bp-fixture-card__avatar--img {
  object-fit: contain;
  padding: 0.2rem;
}

.bp-fixture-card__team-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bp-foreground);
  line-height: 1.3;
}

.bp-fixture-card__vs {
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--bp-primary);
  color: var(--bp-white);
  border-radius: 50%;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bp-fixture-card__venue {
  font-size: 0.73rem;
  color: var(--bp-muted);
  margin-bottom: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  line-height: 1.4;
}

.bp-fixture-card__guide-link {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--bp-muted);
  text-decoration: none;
  margin-top: 0.375rem;
  transition: color 0.2s;
}

.bp-fixture-card__guide-link:hover {
  color: var(--bp-foreground);
}


.bp-section--light .bp-fixture-card {
  background: var(--bp-surface-plain);
  border-color: rgba(var(--bp-primary-rgb), 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.bp-section--light .bp-fixture-card:hover {
  border-color: rgba(var(--bp-primary-rgb), 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
}

.bp-section--light .bp-fixture-card__sport,
.bp-section--light .bp-fixture-card__venue,
.bp-section--light .bp-fixture-card__guide-link {
  color: var(--bp-muted-ink);
}

.bp-section--light .bp-fixture-card__guide-link:hover {
  color: var(--bp-ink);
}

.bp-section--light .bp-fixture-card__time {
  color: var(--bp-accent-darker);
}

.bp-section--light .bp-fixture-card__avatar,
.bp-section--light .bp-fixture-card__team-name {
  color: var(--bp-ink);
}
