.home-bm-main {
  flex: 1;
}

.hero-bm-section {
  position: relative;
  display: flex;
  min-height: 70vh;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #171717;
  color: #f5f5f5;
}

.hero-bm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #171717 0%, #171717 60%, rgba(239, 68, 68, 0.2) 100%);
}

.hero-bm-shapes {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.hero-bm-shape {
  position: absolute;
  border-radius: 999px;
  background: #ef4444;
}

.hero-bm-shape-top {
  top: -5rem;
  right: -5rem;
  width: 24rem;
  height: 24rem;
}

.hero-bm-shape-bottom {
  bottom: -8rem;
  left: -8rem;
  width: 31.25rem;
  height: 31.25rem;
}

.hero-bm-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-bm-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #ef4444;
}

.hero-bm-title {
  margin: 0;
  font-family: 'Teko', sans-serif;
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-bm-subtitle {
  margin-top: 0.5rem;
  font-family: 'Teko', sans-serif;
  font-size: 1.875rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(245, 245, 245, 0.6);
}

.next-match-bm-section {
  background: #ef4444;
  padding: 1.5rem 0;
}

.next-match-bm-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}

.next-match-bm-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.next-match-bm-icon {
  width: 1rem;
  height: 1rem;
}

.next-match-bm-title {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: 'Teko', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

.next-match-bm-vs {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.7;
}

.next-match-bm-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.875rem;
  opacity: 0.8;
}

.next-match-bm-venue {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.next-match-bm-pin {
  width: 0.75rem;
  height: 0.75rem;
}

.home-bm-section {
  padding: 4rem 0;
}

.home-bm-section-dark {
  background: #171717;
}

.home-bm-head {
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-bm-head h2 {
  margin: 0;
  font-family: 'Teko', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #111111;
}

.home-bm-head h2.light {
  color: #f5f5f5;
}

.home-bm-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.home-bm-link-btn:hover {
  background: rgba(239, 68, 68, 0.08);
}

.home-bm-link-icon {
  width: 1rem;
  height: 1rem;
}

.home-bm-grid {
  display: grid;
  gap: 1rem;
}

.home-bm-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-bm-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-bm-grid-3-ann {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.home-bm-fade {
  opacity: 1;
  transform: none;
}

/* Result cards */
.bm-result-card {
  overflow: hidden;
  border: 1px solid hsl(0 0% 88%);
  border-radius: 0.5rem;
  background: #ffffff;
  color: #141414;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s ease;
}

.bm-result-card:hover {
  box-shadow: 0 10px 18px rgba(0,0,0,0.08);
}

.bm-result-card-body {
  padding: 0;
}

.bm-result-top {
  background: #171717;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: rgba(245, 245, 245, 0.6);
}

.bm-result-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}

.bm-result-team {
  text-align: center;
}

.bm-result-team-name {
  margin: 0;
  font-family: 'Teko', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
}

.bm-result-score {
  margin: 0;
  font-family: 'Teko', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
}

.bm-result-status-wrap {
  text-align: center;
}

.bm-result-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.bm-result-status.win {
  color: #22c55e;
}

.bm-result-status.draw {
  color: #eab308;
}

.bm-result-status.loss {
  color: #ef4444;
}

/* Player cards */
.bm-player-card {
  display: block;
  overflow: hidden;
  border: 1px solid hsl(0 0% 88%);
  border-radius: 0.5rem;
  background: #ffffff;
  color: #141414;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bm-player-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.08);
}

.bm-player-thumb {
  display: flex;
  height: 12rem;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
}

.bm-player-thumb-icon {
  width: 4rem;
  height: 4rem;
  color: rgba(107, 114, 128, 0.3);
}

.bm-player-body {
  padding: 1rem;
}

.bm-player-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.bm-player-number {
  font-family: 'Teko', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #ef4444;
  line-height: 1;
}

.bm-player-position {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.125rem;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.bm-player-name {
  margin: 0;
  font-family: 'Teko', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.bm-player-card:hover .bm-player-name {
  color: #ef4444;
}

.bm-player-stats {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

/* Announcement cards */
.bm-ann-card {
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid hsl(0 0% 88%);
  border-radius: 0.5rem;
  background: #ffffff;
  color: #141414;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bm-ann-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 10px 18px rgba(0,0,0,0.08);
}

.bm-ann-body {
  padding: 1.5rem;
}

.bm-ann-date {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.bm-ann-title {
  margin: 0 0 0.5rem;
  font-family: 'Teko', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.bm-ann-card:hover .bm-ann-title {
  color: #ef4444;
}

.bm-ann-text {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-bm-title {
    font-size: 6rem;
  }

  .hero-bm-subtitle {
    font-size: 2.25rem;
  }

  .next-match-bm-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-bm-title {
    font-size: 8rem;
  }
}

@media (max-width: 1024px) {
  .home-bm-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-bm-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-bm-grid-3,
  .home-bm-grid-3-ann,
  .home-bm-grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-bm-title {
    font-size: 3rem;
  }

  .hero-bm-subtitle {
    font-size: 2rem;
  }

  .next-match-bm-title {
    flex-direction: column;
    gap: 0.5rem;
    font-size: 2rem;
  }

  .bm-result-main {
    gap: 1rem;
  }
}

.site-header-bm {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #171717;
  color: #f5f5f5;
}

.site-header-bm-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.site-header-bm-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  text-decoration: none;
}

.site-header-bm-logo-icon {
  width: 2rem;
  height: 2rem;
  color: #ef4444;
}

.site-header-bm-logo-text {
  font-family: 'Teko', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
}

.site-header-bm-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.site-header-bm-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-header-bm-link:hover {
  color: #ef4444;
}

.site-header-bm-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.site-header-bm-lang-btn {
  border: 1px solid #3f3f46;
  background: transparent;
  color: #f5f5f5;
  border-radius: 0.125rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-header-bm-lang-btn:hover {
  background: #ef4444;
  color: #ffffff;
}

.site-header-bm-admin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0 0.75rem;
  border: 1px solid #ef4444;
  border-radius: 0.375rem;
  background: #ffffff;
  color: #ef4444;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-header-bm-admin-link:hover {
  background: #ef4444;
  color: #ffffff;
}

.site-header-bm-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #f5f5f5;
  padding: 0;
  cursor: pointer;
}

.site-header-bm-menu-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.site-header-bm-mobile {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
  background: #171717;
}

.site-header-bm-mobile.open {
  display: block;
}

.site-header-bm-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-header-bm-mobile-link {
  padding: 0.75rem 0;
  color: rgba(245, 245, 245, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-header-bm-mobile-link:hover {
  color: #ef4444;
}

.site-header-bm-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .site-header-bm-nav {
    display: flex;
  }

  .site-header-bm-actions {
    display: flex;
  }

  .site-header-bm-menu-btn {
    display: none;
  }

  .site-header-bm-mobile {
    display: none !important;
  }
}