:root {
  --bwg-blue: #0d3f91;
  --bwg-blue-dark: #082c66;
  --bwg-blue-deep: #031735;
  --bwg-white: #ffffff;
  --bwg-light: #eef2f7;
  --bwg-gray: #dfe5ec;
  --bwg-text: #0f172a;
  --bwg-muted: #5b6677;
  --bwg-line: rgba(15, 23, 42, 0.08);
  --bwg-shadow: 0 18px 45px rgba(9, 22, 43, 0.14);
  --bwg-shadow-strong: 0 28px 70px rgba(3, 15, 35, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at 12% 8%, rgba(13, 63, 145, 0.11), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef3f9 44%, #ffffff 100%);
  color: var(--bwg-text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

/* =========================================================
   HEADER + MOBILE DRAWER
   ========================================================= */

.site-header,
.bwg-pro-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background:
    linear-gradient(90deg, #031735 0%, #062b66 48%, #0d3f91 100%);
  color: var(--bwg-white);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 34px rgba(0,0,0,0.2);
  backdrop-filter: blur(14px);
}

.header-inner,
.bwg-pro-header .header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--bwg-white);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.site-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.28));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav a,
.bwg-pro-header .main-nav a {
  position: relative;
  min-height: 86px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.94);
  font-weight: 900;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  opacity: 0.95;
}

.main-nav a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 0;
  height: 4px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.mobile-menu-button {
  display: none;
  position: relative;
  z-index: 430;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.mobile-menu-button span {
  width: 21px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-overlay {
  display: none;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(92vw, 390px);
  height: 100vh;
  z-index: 420;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 34%),
    linear-gradient(180deg, #0d3f91 0%, #082c66 48%, #061f47 100%);
  color: #fff;
  box-shadow: -24px 0 60px rgba(0,0,0,0.35);
  padding: 18px;
  display: flex;
  flex-direction: column;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .mobile-drawer {
  transform: translateX(0);
}

body.mobile-menu-open .mobile-menu-button {
  opacity: 0;
  pointer-events: none;
}

.mobile-drawer-head {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  padding-bottom: 14px;
}

.mobile-drawer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.mobile-drawer-brand img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
}

.mobile-drawer-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer-nav {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.mobile-drawer-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.11);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  overflow: hidden;
}

.mobile-drawer-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #ffffff;
  opacity: 0.9;
}

.mobile-drawer-nav a::after {
  content: "›";
  margin-left: auto;
  font-size: 1.6rem;
  opacity: 0.7;
}

.mobile-drawer-highlight {
  margin-top: auto;
  padding: 18px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.16);
}

.mobile-drawer-highlight span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.mobile-drawer-highlight strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.15;
}

.mobile-drawer-highlight p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  font-size: 0.92rem;
}

.mobile-drawer-foot {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.mobile-drawer-foot a {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 800;
}

/* =========================================================
   SPONSOR / PARTNER STRIP
   ========================================================= */

.sponsor-bar,
.bwg-partner-strip {
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  background:
    linear-gradient(90deg, #031735 0%, #061f47 48%, #082c66 100%);
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 34px rgba(3, 15, 35, 0.22);
}

.bwg-partner-strip .sponsor-bar-inner,
.sponsor-bar-inner {
  position: relative;
  width: min(1280px, calc(100% - 40px));
  max-width: 1280px;
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
  overflow: hidden;
}

.partner-label {
  position: relative;
  z-index: 6;
  flex: 0 0 auto;
  min-width: 220px;
  min-height: 52px;
  padding: 0 22px 0 28px;
  border-right: 1px solid rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  background:
    linear-gradient(90deg, #031735 0%, #031735 72%, rgba(3, 23, 53, 0) 100%);
  color: rgba(255,255,255,0.78);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.bwg-partner-strip .sponsor-bar-inner::before,
.sponsor-bar-inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 245px;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  background:
    linear-gradient(90deg, #031735 0%, #031735 58%, rgba(3, 23, 53, 0) 100%);
}

.sponsor-bar-track,
.bwg-partner-strip .sponsor-bar-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: max-content;
  margin-left: 4px;
  animation: sponsorScroll 30s linear infinite;
}

.sponsor-bar-item,
.bwg-partner-strip .sponsor-bar-item {
  flex: 0 0 auto;
  min-width: 230px;
  height: 74px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.96;
}

.sponsor-bar-item a,
.sponsor-bar-item span,
.bwg-partner-strip .sponsor-bar-item a,
.bwg-partner-strip .sponsor-bar-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sponsor-bar-item img,
.bwg-partner-strip .sponsor-bar-item img {
  max-height: 50px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(1) brightness(0) invert(1);
  transition: filter 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.sponsor-bar-item:hover img,
.bwg-partner-strip .sponsor-bar-item:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-1px);
}

.sponsor-liburna-pizza-grill img,
.sponsor-liburna img {
  max-height: 60px;
  max-width: 250px;
}

.sponsor-rapunzel-just-hair img,
.sponsor-rapunzel img {
  max-height: 52px;
  max-width: 270px;
}

.sponsor-johannes-jacobi img,
.sponsor-johannes-jacobi-gmbh img {
  max-height: 54px;
  max-width: 300px;
}

.sponsor-die-reisepost img,
.sponsor-die-reise-post img,
.sponsor-diereisepost img {
  max-height: 58px;
  max-width: 210px;
}

/* =========================================================
   HOME HERO V3
   ========================================================= */

.bwg-hero-v3 {
  position: relative;
  min-height: 735px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(47, 128, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #031735 0%, #062b66 46%, #0d3f91 100%);
  color: #fff;
}

.bwg-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
}

.bwg-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.22) contrast(1.2);
}

.bwg-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(115deg, rgba(3, 23, 53, 0.98) 0%, rgba(3, 23, 53, 0.84) 38%, rgba(3, 23, 53, 0.24) 72%),
    linear-gradient(0deg, rgba(3, 23, 53, 0.92) 0%, transparent 42%);
}

.bwg-hero-lines {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(115deg, transparent 0 70%, rgba(255,255,255,0.08) 70% 71%, transparent 71%),
    linear-gradient(115deg, transparent 0 80%, rgba(255,255,255,0.06) 80% 81%, transparent 81%);
  pointer-events: none;
}

.bwg-hero-v3::after {
  content: "#NURDERBWG";
  position: absolute;
  right: 32px;
  top: 42%;
  z-index: 4;
  writing-mode: vertical-rl;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.64);
  font-size: 0.8rem;
  font-weight: 900;
}

.bwg-hero-inner {
  position: relative;
  z-index: 5;
  padding: 90px 0 160px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.bwg-hero-copy {
  max-width: 790px;
}

.bwg-kicker,
.hero-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.bwg-hero-copy h1 {
  margin: 0;
  font-size: clamp(3.4rem, 6.2vw, 6.8rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-shadow: 0 12px 36px rgba(0,0,0,0.45);
}

.bwg-hero-copy p {
  margin: 28px 0 0;
  max-width: 630px;
  font-size: 1.16rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.9);
}

.bwg-hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 54px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  cursor: pointer;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: #fff;
  color: #062b66;
  box-shadow: 0 18px 42px rgba(0,0,0,0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.bwg-hero-badge {
  align-self: center;
  width: 142px;
  height: 142px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  line-height: 1;
}

.bwg-hero-badge span {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: center;
  font-weight: 950;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

/* =========================================================
   MATCHCENTER HOME
   ========================================================= */

.bwg-matchcenter {
  position: relative;
  z-index: 10;
  margin-top: -110px;
}

.bwg-matchcenter-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.85fr;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--bwg-shadow-strong);
  border: 1px solid rgba(255,255,255,0.72);
}

.bwg-match-card,
.bwg-result-card,
.bwg-table-card {
  min-height: 255px;
  padding: 24px;
  background: #fff;
  color: var(--bwg-text);
}

.bwg-next-match {
  background:
    radial-gradient(circle at 20% 10%, rgba(47,128,255,0.24), transparent 28%),
    linear-gradient(135deg, #062b66 0%, #031735 100%);
  color: #fff;
}

.bwg-table-card {
  background:
    linear-gradient(135deg, #031735 0%, #062b66 100%);
  color: #fff;
}

.bwg-match-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.bwg-match-head span {
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  opacity: 0.78;
}

.bwg-match-head strong {
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0.82;
}

.bwg-versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.bwg-club-side {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.bwg-club-side img {
  height: 74px;
  width: auto;
  object-fit: contain;
}

.bwg-opponent-logo {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 1.7rem;
  font-weight: 950;
}

.bwg-vs {
  font-size: 2rem;
  font-weight: 950;
}

.bwg-match-meta {
  margin-top: 22px;
  display: grid;
  gap: 7px;
  font-size: 0.92rem;
  opacity: 0.86;
}

.bwg-card-link {
  display: inline-flex;
  margin-top: 20px;
  color: inherit;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-size: 0.82rem;
}

.bwg-result-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.bwg-result-line span {
  font-weight: 900;
}

.bwg-result-line strong {
  color: var(--bwg-blue);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 950;
}

.bwg-focus-list {
  display: grid;
  gap: 12px;
}

.bwg-focus-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

.bwg-focus-list strong {
  font-size: 1.7rem;
  font-weight: 950;
}

.bwg-focus-list span {
  align-self: center;
  opacity: 0.82;
  font-weight: 800;
}

/* =========================================================
   HOME SECTIONS
   ========================================================= */

.bwg-section {
  padding: 86px 0;
}

.bwg-section-head {
  margin-bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.bwg-section-head span {
  display: block;
  color: var(--bwg-blue);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.bwg-section-head h2 {
  margin: 3px 0 0;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.bwg-section-head a {
  color: var(--bwg-blue);
  font-weight: 950;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.bwg-news-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.82fr 0.82fr;
  gap: 24px;
}

.bwg-news-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--bwg-shadow);
  border: 1px solid rgba(15,23,42,0.06);
}

.bwg-news-image {
  height: 220px;
  overflow: hidden;
  background: #dbe4f0;
}

.bwg-news-card.is-featured .bwg-news-image {
  height: 310px;
}

.bwg-news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bwg-news-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #062b66, #0d3f91);
  color: #fff;
  font-size: 2.5rem;
  font-weight: 950;
}

.bwg-news-body {
  padding: 24px;
}

.bwg-news-body span {
  color: var(--bwg-muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bwg-news-body h3 {
  margin: 10px 0;
  font-size: 1.55rem;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.bwg-news-card.is-featured .bwg-news-body h3 {
  font-size: 2rem;
}

.bwg-news-body p {
  margin: 0 0 16px;
  color: var(--bwg-muted);
  line-height: 1.62;
}

.bwg-news-body a {
  color: var(--bwg-blue);
  font-weight: 950;
}

.bwg-teams-strip {
  background:
    radial-gradient(circle at 15% 20%, rgba(47,128,255,0.22), transparent 30%),
    linear-gradient(135deg, #031735 0%, #062b66 100%);
  color: #fff;
}

.bwg-section-head.is-dark span,
.bwg-section-head.is-dark a {
  color: rgba(255,255,255,0.86);
}

.bwg-team-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bwg-team-teaser {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.bwg-team-teaser a {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  min-height: 230px;
}

.bwg-team-teaser-img {
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.bwg-team-teaser-img img,
.bwg-team-placeholder {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.bwg-team-placeholder {
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 950;
  background: linear-gradient(135deg, #0d3f91, #031735);
}

.bwg-team-teaser-body {
  padding: 26px;
  display: grid;
  align-content: center;
}

.bwg-team-teaser-body span {
  color: rgba(255,255,255,0.78);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.bwg-team-teaser-body h3 {
  margin: 9px 0;
  font-size: 1.85rem;
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -0.045em;
}

.bwg-team-teaser-body p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.78);
  font-weight: 800;
}

.bwg-team-teaser-body strong {
  color: #fff;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bwg-join-section {
  padding: 48px 0;
  background:
    linear-gradient(90deg, #0d3f91 0%, #062b66 58%, #031735 100%);
  color: #fff;
}

.bwg-join-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.bwg-join-inner span {
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.bwg-join-inner h2 {
  margin: 6px 0 8px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.bwg-join-inner p {
  margin: 0;
  color: rgba(255,255,255,0.84);
  max-width: 650px;
  line-height: 1.6;
}

/* =========================================================
   GENERIC SUBPAGES: MATCHES, TEAMS, PLAYER
   ========================================================= */

.page-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, #0a2f6b 0%, #082552 48%, #061a3a 100%);
  color: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.16), transparent 28%),
    linear-gradient(90deg, rgba(4,14,40,0.82), rgba(4,14,40,0.42));
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.page-hero-content h1 {
  margin: 0 0 16px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.page-hero-content p {
  margin: 0;
  max-width: 680px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
}

.matches-page-section,
.teams-page-section,
.team-detail-section,
.player-profile-section {
  padding: 56px 0 20px;
}

.matches-page-layout,
.team-detail-layout,
.player-profile-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  align-items: start;
}

.team-detail-layout,
.player-profile-layout {
  grid-template-columns: 1fr 340px;
}

.matches-sidebar,
.team-detail-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.matches-sidebar-card,
.team-detail-card,
.public-team-card,
.match-list-card,
.empty-state {
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--bwg-shadow);
}

.matches-sidebar-card,
.team-detail-card,
.empty-state {
  padding: 22px;
}

.matches-team-list {
  display: grid;
  gap: 8px;
}

.matches-team-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: #edf3ff;
  color: var(--bwg-blue);
  font-weight: 800;
}

.matches-content,
.team-detail-main,
.player-profile-main {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.match-list {
  display: grid;
  gap: 14px;
}

.match-list-card {
  display: grid;
  grid-template-columns: 92px 1fr 140px;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-left: 6px solid var(--bwg-blue);
}

.match-list-date {
  min-height: 76px;
  display: grid;
  place-items: center;
  align-content: center;
  border-radius: 16px;
  background: linear-gradient(180deg, var(--bwg-blue), var(--bwg-blue-dark));
  color: #fff;
  text-align: center;
}

.match-list-date strong {
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.match-list-date span {
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  opacity: 0.9;
}

.match-list-team {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--bwg-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.match-list-main h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.18;
  font-weight: 900;
}

.match-list-meta {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.match-list-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--bwg-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.match-list-status,
.match-list-score {
  justify-self: end;
  text-align: right;
}

.match-status {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: #edf3ff;
  color: var(--bwg-blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.match-list-score strong {
  display: inline-block;
  color: var(--bwg-blue);
  font-size: 2rem;
  font-weight: 900;
}

.public-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.public-team-card {
  overflow: hidden;
}

.public-team-card-link {
  display: block;
  height: 100%;
}

.public-team-image {
  height: 260px;
  background: #dbe4f0;
  overflow: hidden;
}

.public-team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.public-team-placeholder,
.team-box-placeholder,
.lineup-player-placeholder,
.player-profile-placeholder {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(13,63,145,0.95), rgba(6,31,71,0.96));
  color: #fff;
  font-weight: 900;
}

.public-team-body {
  padding: 24px;
}

.public-team-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--bwg-blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.public-team-body h2 {
  margin: 0 0 14px;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 900;
}

.public-team-tags,
.team-detail-tags,
.player-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.public-team-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #edf3ff;
  color: var(--bwg-blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.lineup-player-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lineup-player-card {
  border-radius: 20px;
  background: #f8fafc;
  box-shadow: 0 12px 28px rgba(8, 24, 48, 0.08);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.lineup-player-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(8, 24, 48, 0.14);
}

.lineup-player-link {
  display: block;
  height: 100%;
}

.lineup-player-photo {
  height: 260px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(13,63,145,0.95), rgba(6,31,71,0.96));
}

.lineup-player-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lineup-player-meta {
  min-height: 92px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-top: 5px solid var(--bwg-blue);
}

.lineup-player-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--bwg-blue);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
}

.lineup-player-meta h3 {
  margin: 0 0 5px;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 900;
}

.lineup-player-meta span {
  color: var(--bwg-muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.team-detail-hero,
.player-profile-hero {
  position: relative;
  min-height: 460px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, #0a2f6b 0%, #061a3a 100%);
  color: #fff;
}

.team-detail-bg,
.player-profile-overlay {
  position: absolute;
  inset: 0;
}

.team-detail-bg {
  z-index: 1;
}

.team-detail-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-detail-overlay,
.player-profile-overlay {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(4,14,40,0.9), rgba(4,14,40,0.45)),
    linear-gradient(0deg, rgba(4,14,40,0.86), transparent 62%);
}

.team-detail-hero-content,
.player-profile-hero-inner {
  position: relative;
  z-index: 3;
  padding: 80px 0;
}

.team-detail-hero-content h1,
.player-profile-copy h1 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  font-weight: 900;
  text-shadow: 0 8px 30px rgba(0,0,0,0.35);
}

.team-back-link {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.85);
  font-weight: 800;
}

.player-profile-hero-inner {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: end;
  padding-bottom: 0;
}

.player-profile-copy {
  padding-bottom: 80px;
}

.player-profile-image-wrap {
  align-self: end;
  display: flex;
  justify-content: center;
}

.player-profile-image {
  width: 100%;
  max-width: 380px;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 24px 60px rgba(0,0,0,0.32);
}

.player-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.player-info-grid div,
.compact-player-item,
.compact-match-item {
  padding: 14px;
  border-radius: 16px;
  background: #f8fafc;
  border-left: 4px solid var(--bwg-blue);
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer,
.bwg-footer-v3 {
  margin-top: 0;
  padding: 48px 0;
  background: #031735;
  color: #fff;
}

.bwg-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 32px;
}

.bwg-footer-logo {
  height: 58px;
  width: auto;
  margin-bottom: 12px;
}

.bwg-footer-grid strong {
  display: block;
  font-size: 1.05rem;
}

.bwg-footer-grid p {
  color: rgba(255,255,255,0.7);
}

.bwg-footer-grid h3 {
  margin: 0 0 12px;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.bwg-footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
}

@keyframes sponsorScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1080px) {
  .bwg-matchcenter-grid,
  .bwg-news-grid,
  .bwg-team-teaser-grid,
  .bwg-footer-grid {
    grid-template-columns: 1fr;
  }

  .bwg-hero-badge,
  .bwg-hero-v3::after {
    display: none;
  }

  .bwg-team-teaser a {
    grid-template-columns: 1fr;
  }

  .lineup-player-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .matches-page-layout,
  .team-detail-layout,
  .player-profile-layout,
  .player-profile-hero-inner {
    grid-template-columns: 1fr;
  }

  .matches-sidebar,
  .team-detail-side {
    position: static;
  }

  .public-team-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MOBILE FINAL
   ========================================================= */

@media (max-width: 900px) {
  .container {
    width: min(100% - 22px, 1280px);
  }

  .header-inner,
  .bwg-pro-header .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .site-brand {
    gap: 10px;
  }

  .site-logo {
    height: 44px;
  }

  .site-brand span {
    max-width: calc(100vw - 125px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 0.9rem;
    line-height: 1.1;
  }

  .main-nav {
    display: none !important;
  }

  .mobile-menu-button {
    display: inline-flex;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
  }

  .mobile-menu-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 350;
    background: rgba(2, 8, 23, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
  }

  body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-drawer {
    width: min(92vw, 390px);
    max-width: 390px;
    padding: 16px;
  }

  .mobile-drawer-head {
    min-height: 58px;
  }

  .mobile-drawer-brand img {
    height: 42px;
  }

  .mobile-drawer-nav {
    gap: 9px;
    margin-top: 20px;
  }

  .mobile-drawer-nav a {
    min-height: 50px;
    font-size: 0.98rem;
  }

  .bwg-partner-strip,
  .sponsor-bar {
    padding: 5px 0;
  }

  .bwg-partner-strip .sponsor-bar-inner,
  .sponsor-bar-inner {
    width: 100%;
    min-height: 58px;
    padding: 0;
    gap: 0;
  }

  .bwg-partner-strip .sponsor-bar-inner::before,
  .sponsor-bar-inner::before {
    display: none;
  }

  .partner-label {
    display: none !important;
  }

  .bwg-partner-strip .sponsor-bar-track,
  .sponsor-bar-track {
    margin-left: 0;
    animation-duration: 24s;
  }

  .bwg-partner-strip .sponsor-bar-item,
  .sponsor-bar-item {
    min-width: 170px;
    height: 56px;
    padding: 0 12px;
  }

  .bwg-partner-strip .sponsor-bar-item img,
  .sponsor-bar-item img {
    max-height: 36px;
    max-width: 155px;
  }

  .bwg-hero-v3 {
    min-height: auto;
    display: block;
  }

  .bwg-hero-v3::after {
    display: none;
  }

  .bwg-hero-bg {
    opacity: 0.45;
  }

  .bwg-hero-bg img {
    object-position: center;
  }

  .bwg-hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 23, 53, 0.72) 0%, rgba(3, 23, 53, 0.93) 65%, rgba(3, 23, 53, 0.98) 100%),
      linear-gradient(90deg, rgba(3, 23, 53, 0.92), rgba(3, 23, 53, 0.38));
  }

  .bwg-hero-lines {
    opacity: 0.45;
  }

  .bwg-hero-inner {
    min-height: 560px;
    padding: 72px 0 118px;
    display: block;
  }

  .bwg-hero-copy {
    max-width: 100%;
  }

  .bwg-kicker,
  .hero-kicker {
    margin-bottom: 14px;
    padding: 8px 12px;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .bwg-hero-copy h1 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
    line-height: 0.93;
    letter-spacing: -0.055em;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .bwg-hero-copy p {
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: 100%;
  }

  .bwg-hero-actions {
    margin-top: 28px;
    flex-direction: column;
    gap: 11px;
  }

  .bwg-hero-actions .btn,
  .bwg-hero-v3 .btn {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    font-size: 0.86rem;
  }

  .bwg-matchcenter {
    margin-top: -72px;
  }

  .bwg-matchcenter-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 22px;
    overflow: hidden;
  }

  .bwg-match-card,
  .bwg-result-card,
  .bwg-table-card {
    min-height: auto;
    padding: 20px;
  }

  .bwg-match-head {
    margin-bottom: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .bwg-versus,
  .bwg-result-line {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bwg-club-side img,
  .bwg-opponent-logo {
    height: 58px;
    width: 58px;
  }

  .bwg-vs {
    font-size: 1.25rem;
  }

  .bwg-result-line strong {
    font-size: 2.6rem;
  }

  .bwg-section {
    padding: 58px 0;
  }

  .bwg-section-head {
    margin-bottom: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .bwg-section-head h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.95;
  }

  .bwg-news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bwg-news-card,
  .bwg-news-card.is-featured {
    border-radius: 22px;
  }

  .bwg-news-image,
  .bwg-news-card.is-featured .bwg-news-image {
    height: 220px;
  }

  .bwg-news-body {
    padding: 20px;
  }

  .bwg-news-body h3,
  .bwg-news-card.is-featured .bwg-news-body h3 {
    font-size: 1.45rem;
    line-height: 1.08;
  }

  .bwg-team-teaser-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bwg-team-teaser {
    border-radius: 22px;
  }

  .bwg-team-teaser a {
    grid-template-columns: 1fr;
  }

  .bwg-team-teaser-img img,
  .bwg-team-placeholder {
    min-height: 210px;
  }

  .bwg-team-teaser-body {
    padding: 22px;
  }

  .bwg-team-teaser-body h3 {
    font-size: 1.55rem;
  }

  .bwg-join-section {
    padding: 42px 0;
  }

  .bwg-join-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .bwg-join-inner h2 {
    font-size: clamp(1.85rem, 10vw, 2.6rem);
  }

  .bwg-join-inner .btn {
    width: 100%;
  }

  .page-hero {
    min-height: 300px;
  }

  .page-hero-content {
    padding: 64px 0;
  }

  .match-list-card {
    grid-template-columns: 80px 1fr;
  }

  .match-list-status,
  .match-list-score {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }

  .lineup-player-grid {
    grid-template-columns: 1fr;
  }

  .lineup-player-photo {
    height: 280px;
  }

  .player-info-grid {
    grid-template-columns: 1fr;
  }

  .player-profile-hero-inner {
    min-height: auto;
    padding: 64px 0 0;
  }

  .player-profile-copy {
    padding-bottom: 24px;
  }

  .player-profile-copy h1 {
    font-size: 2.4rem;
  }

  .player-profile-image,
  .player-profile-placeholder {
    width: 100%;
    max-width: 100%;
    height: 360px;
  }

  .bwg-footer-v3,
  .site-footer {
    padding: 38px 0;
  }

  .bwg-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bwg-footer-logo {
    height: 52px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 18px, 1280px);
  }

  .header-inner,
  .bwg-pro-header .header-inner {
    min-height: 66px;
  }

  .site-logo {
    height: 39px;
  }

  .site-brand span {
    max-width: calc(100vw - 112px);
    font-size: 0.82rem;
  }

  .mobile-menu-button {
    width: 41px;
    height: 41px;
    border-radius: 13px;
  }

  .mobile-drawer {
    width: 94vw;
    padding: 14px;
  }

  .mobile-drawer-close {
    width: 40px;
    height: 40px;
  }

  .mobile-drawer-nav a {
    min-height: 48px;
    font-size: 0.95rem;
  }

  .bwg-partner-strip .sponsor-bar-item,
  .sponsor-bar-item {
    min-width: 150px;
    height: 52px;
    padding: 0 9px;
  }

  .bwg-partner-strip .sponsor-bar-item img,
  .sponsor-bar-item img {
    max-height: 32px;
    max-width: 138px;
  }

  .bwg-hero-inner {
    min-height: 535px;
    padding: 62px 0 105px;
  }

  .bwg-hero-copy h1 {
    font-size: clamp(2.25rem, 14vw, 3.1rem);
  }

  .bwg-hero-copy p {
    font-size: 0.94rem;
  }

  .bwg-matchcenter {
    margin-top: -62px;
  }

  .bwg-match-card,
  .bwg-result-card,
  .bwg-table-card {
    padding: 18px;
  }

  .bwg-section {
    padding: 50px 0;
  }

  .bwg-news-image,
  .bwg-news-card.is-featured .bwg-news-image {
    height: 190px;
  }

  .bwg-team-teaser-img img,
  .bwg-team-placeholder {
    min-height: 190px;
  }

  .match-list-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .match-list-date {
    width: 92px;
  }

  .match-list-status,
  .match-list-score {
    grid-column: auto;
  }
}

@media (max-width: 380px) {
  .site-brand span {
    max-width: 205px;
  }

  .bwg-hero-copy h1 {
    font-size: 2.1rem;
  }

  .bwg-kicker {
    font-size: 0.62rem;
  }

  .bwg-result-line strong {
    font-size: 2.25rem;
  }
}

/* =========================================================
   MATCHDAY DETAIL PAGE
   ========================================================= */

.matchday-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 15%, rgba(47,128,255,0.28), transparent 30%),
    linear-gradient(135deg, #031735 0%, #062b66 55%, #0d3f91 100%);
  color: #fff;
}

.matchday-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.48;
}

.matchday-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18) contrast(1.18);
}

.matchday-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(3,23,53,0.55), rgba(3,23,53,0.95)),
    linear-gradient(90deg, rgba(3,23,53,0.92), rgba(3,23,53,0.35));
}

.matchday-hero-inner {
  position: relative;
  z-index: 3;
  padding: 80px 0 95px;
}

.matchday-scoreboard {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 34px;
  align-items: center;
  max-width: 960px;
}

.matchday-club {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.matchday-club img,
.matchday-opponent-placeholder {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.matchday-opponent-placeholder {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 2.2rem;
  font-weight: 950;
}

.matchday-club strong {
  font-size: 1.25rem;
  font-weight: 950;
}

.matchday-score {
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.matchday-score em {
  font-style: normal;
  opacity: 0.72;
}

.matchday-meta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.matchday-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  font-weight: 800;
  font-size: 0.88rem;
}

.matchday-content-section {
  padding: 60px 0;
}

.matchday-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.matchday-main-card,
.matchday-info-card {
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--bwg-shadow);
}

.matchday-main-card {
  padding: 34px;
}

.matchday-section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--bwg-blue);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.matchday-main-card h1 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.055em;
}

.matchday-report {
  color: var(--bwg-text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.matchday-empty-text {
  margin: 0;
  color: var(--bwg-muted);
  line-height: 1.7;
}

.matchday-side {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 110px;
}

.matchday-info-card {
  padding: 24px;
}

.matchday-info-card h2 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  font-weight: 950;
}

.matchday-info-list {
  display: grid;
  gap: 12px;
}

.matchday-info-list div {
  padding: 13px;
  border-radius: 16px;
  background: #f8fafc;
  border-left: 4px solid var(--bwg-blue);
}

.matchday-info-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--bwg-muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.matchday-info-list strong {
  color: var(--bwg-text);
  font-weight: 950;
}

@media (max-width: 980px) {
  .matchday-layout {
    grid-template-columns: 1fr;
  }

  .matchday-side {
    position: static;
  }
}

@media (max-width: 700px) {
  .matchday-hero {
    min-height: auto;
  }

  .matchday-hero-inner {
    padding: 64px 0 78px;
  }

  .matchday-scoreboard {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .matchday-score {
    min-width: 0;
    font-size: 4.1rem;
  }

  .matchday-club img,
  .matchday-opponent-placeholder {
    width: 82px;
    height: 82px;
  }

  .matchday-main-card {
    padding: 24px;
  }
}

/* Match overview links */

.match-list-card {
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.match-list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(9, 22, 43, 0.16);
  border-left-color: #031735;
}

.match-card-more {
  display: block;
  margin-top: 8px;
  color: var(--bwg-muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.match-list-card:hover .match-card-more {
  color: var(--bwg-blue);
}

/* =========================================================
   HOME MATCHCENTER OPPONENT LOGOS
   ========================================================= */

.bwg-opponent-logo-img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.25));
}

.bwg-result-line-logos {
  align-items: center;
}

.bwg-result-team {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.bwg-result-logo,
.bwg-result-logo-placeholder {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.bwg-result-logo-placeholder {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf3ff;
  color: var(--bwg-blue);
  font-weight: 950;
}

@media (max-width: 900px) {
  .bwg-opponent-logo-img {
    width: 58px;
    height: 58px;
  }

  .bwg-result-logo,
  .bwg-result-logo-placeholder {
    width: 48px;
    height: 48px;
  }
}

/* =========================================================
   MATCHDAY SIDEBAR FIX: Weitere Spiele
   Desktop + Mobile sauber
   ========================================================= */

.matchday-side .compact-match-list {
  display: grid;
  gap: 12px;
}

.matchday-side .compact-match-item {
  display: block;
  width: 100%;
  min-width: 0;
  padding: 14px 14px 14px 16px;
  border-radius: 16px;
  background: #f8fafc;
  border-left: 4px solid var(--bwg-blue);
  color: var(--bwg-text);
  text-decoration: none;
  overflow: hidden;
}

.matchday-side .compact-match-item strong {
  display: block;
  width: 100%;
  margin-bottom: 6px;
  color: var(--bwg-text);
  font-size: 0.92rem;
  line-height: 1.25;
  font-weight: 950;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.matchday-side .compact-match-item span {
  display: block;
  color: var(--bwg-muted);
  font-size: 0.82rem;
  line-height: 1.3;
  font-weight: 800;
  white-space: normal;
}

.matchday-side .compact-match-item:hover {
  background: #edf3ff;
  transform: translateY(-1px);
}

/* Mobile: Sidebar-Karten nicht quetschen */
@media (max-width: 980px) {
  .matchday-side {
    width: 100%;
  }

  .matchday-info-card {
    width: 100%;
    overflow: hidden;
  }

  .matchday-side .compact-match-list {
    width: 100%;
  }

  .matchday-side .compact-match-item {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .matchday-info-card {
    padding: 20px;
    border-radius: 22px;
  }

  .matchday-side .compact-match-item {
    padding: 13px 13px 13px 15px;
    border-radius: 15px;
  }

  .matchday-side .compact-match-item strong {
    font-size: 0.88rem;
  }

  .matchday-side .compact-match-item span {
    font-size: 0.78rem;
  }
}
/* =========================================================
   MATCHDAY DETAIL FINAL WITH LINEUP + BENCH
   ========================================================= */

.matchday-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.82);
  font-weight: 900;
}

.matchday-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.86);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.matchday-main {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.matchday-report + .matchday-report {
  margin-top: 30px;
}

.matchday-report h2 {
  margin: 0 0 14px;
  color: var(--bwg-text);
  font-size: 1.4rem;
  font-weight: 950;
}

.matchday-report p {
  white-space: pre-wrap;
}

.matchday-lineup-card {
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--bwg-shadow);
  border: 1px solid rgba(15,23,42,0.06);
}

.matchday-lineup-head {
  margin-bottom: 22px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.matchday-lineup-head h2 {
  margin: 0;
  color: var(--bwg-text);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.matchday-lineup-head > strong {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef3ff;
  color: var(--bwg-blue);
  font-size: 0.9rem;
  font-weight: 950;
}

.matchday-lineup-head--small {
  margin-top: 28px;
  margin-bottom: 16px;
}

.matchday-lineup-head--small h2 {
  font-size: 1.8rem;
}

.matchday-public-pitch {
  position: relative;
  min-height: 720px;
  border-radius: 30px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.13) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.13) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(180deg, #0c7a3d 0%, #075c2e 100%);
  background-size: 48px 48px, 48px 48px, auto, auto;
  border: 7px solid rgba(255,255,255,0.98);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.22),
    0 22px 55px rgba(9,22,43,0.16);
}

.matchday-public-pitch::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170px;
  height: 170px;
  border: 3px solid rgba(255,255,255,0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.matchday-public-pitch::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 3px solid rgba(255,255,255,0.38);
}

.matchday-public-player {
  position: absolute;
  width: 168px;
  min-height: 74px;
  padding: 10px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,0.96);
  color: #0f172a;
  box-shadow: 0 16px 36px rgba(0,0,0,0.2);
  transform: translate(-50%, -50%);
  z-index: 3;
}

.matchday-public-player__number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--bwg-blue);
  color: #fff;
  font-weight: 950;
}

.matchday-public-player strong {
  display: block;
  color: var(--bwg-text);
  font-size: 0.88rem;
  line-height: 1.08;
  font-weight: 950;
}

.matchday-public-player span {
  display: block;
  margin-top: 3px;
  color: var(--bwg-blue);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

/* 4-3-3 / 4-2-3-1 / 3-5-2 slot positions by slot key */

.matchday-slot-gk {
  left: 50%;
  top: 89%;
}

.matchday-slot-lb {
  left: 18%;
  top: 71%;
}

.matchday-slot-cb1 {
  left: 38%;
  top: 73%;
}

.matchday-slot-cb2 {
  left: 62%;
  top: 73%;
}

.matchday-slot-rb {
  left: 82%;
  top: 71%;
}

.matchday-slot-cb3 {
  left: 70%;
  top: 72%;
}

.matchday-slot-dm1 {
  left: 40%;
  top: 56%;
}

.matchday-slot-dm2 {
  left: 60%;
  top: 56%;
}

.matchday-slot-cm1 {
  left: 30%;
  top: 50%;
}

.matchday-slot-cm2 {
  left: 50%;
  top: 45%;
}

.matchday-slot-cm3 {
  left: 70%;
  top: 50%;
}

.matchday-slot-lm {
  left: 18%;
  top: 38%;
}

.matchday-slot-rm {
  left: 82%;
  top: 38%;
}

.matchday-slot-cam {
  left: 50%;
  top: 32%;
}

.matchday-slot-lw {
  left: 22%;
  top: 25%;
}

.matchday-slot-rw {
  left: 78%;
  top: 25%;
}

.matchday-slot-st,
.matchday-slot-st1,
.matchday-slot-st2 {
  top: 17%;
}

.matchday-slot-st {
  left: 50%;
}

.matchday-slot-st1 {
  left: 40%;
}

.matchday-slot-st2 {
  left: 60%;
}

.matchday-bench {
  margin-top: 24px;
}

.matchday-bench-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.matchday-bench-player {
  min-height: 72px;
  padding: 13px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,0.08);
}

.matchday-bench-player span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--bwg-blue);
  color: #fff;
  font-weight: 950;
}

.matchday-bench-player strong {
  color: var(--bwg-text);
  font-size: 0.92rem;
  line-height: 1.12;
  font-weight: 950;
}

.matchday-bench-player small {
  grid-column: 2;
  margin-top: -8px;
  color: var(--bwg-muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.matchday-more-list {
  display: grid;
  gap: 10px;
}

.matchday-more-list a {
  padding: 13px;
  border-radius: 16px;
  display: grid;
  gap: 5px;
  background: #f8fafc;
  border-left: 4px solid var(--bwg-blue);
  overflow: hidden;
}

.matchday-more-list strong {
  min-width: 0;
  color: var(--bwg-text);
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 950;
}

.matchday-more-list span {
  color: var(--bwg-muted);
  font-size: 0.8rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .matchday-content-section {
    padding: 42px 0;
  }

  .matchday-layout {
    grid-template-columns: 1fr;
  }

  .matchday-side {
    position: static;
  }

  .matchday-public-pitch {
    min-height: 640px;
  }

  .matchday-public-player {
    width: 148px;
  }

  .matchday-bench-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .matchday-lineup-card,
  .matchday-main-card,
  .matchday-info-card {
    border-radius: 22px;
  }

  .matchday-lineup-card {
    padding: 18px;
  }

  .matchday-lineup-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .matchday-public-pitch {
    min-height: 560px;
    border-width: 5px;
    border-radius: 24px;
    background-size: 36px 36px, 36px 36px, auto, auto;
  }

  .matchday-public-pitch::before {
    width: 116px;
    height: 116px;
  }

  .matchday-public-player {
    width: 104px;
    min-height: 58px;
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 7px;
    border-radius: 16px;
    text-align: center;
  }

  .matchday-public-player__number {
    width: 30px;
    height: 30px;
    margin: 0 auto;
    border-radius: 10px;
    font-size: 0.8rem;
  }

  .matchday-public-player strong {
    font-size: 0.68rem;
  }

  .matchday-public-player span {
    font-size: 0.62rem;
  }

  .matchday-bench-grid {
    grid-template-columns: 1fr;
  }

  .matchday-scoreboard {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .matchday-public-pitch {
    min-height: 500px;
  }

  .matchday-public-player {
    width: 92px;
  }

  .matchday-public-player strong {
    font-size: 0.62rem;
  }

  .matchday-public-player span {
    font-size: 0.58rem;
  }
}

/* =========================================================
   MATCHDAY LINEUP OVERLAP FIX
   verhindert Überschneidungen bei 3-5-2 / engen Formationen
   ========================================================= */

/* Spieler-Karten etwas kompakter machen */
.matchday-public-player {
  width: 142px;
  min-height: 68px;
  padding: 9px;
  grid-template-columns: 38px 1fr;
  gap: 9px;
}

.matchday-public-player__number {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  font-size: 0.9rem;
}

.matchday-public-player strong {
  font-size: 0.78rem;
  line-height: 1.05;
}

.matchday-public-player span {
  font-size: 0.66rem;
}

/* 3er/4er Abwehr sauber auseinanderziehen */
.matchday-slot-cb1 {
  left: 30%;
  top: 72%;
}

.matchday-slot-cb2 {
  left: 50%;
  top: 74%;
}

.matchday-slot-cb3 {
  left: 70%;
  top: 72%;
}

/* Außenbahn etwas weiter nach außen */
.matchday-slot-lm {
  left: 17%;
  top: 42%;
}

.matchday-slot-rm {
  left: 83%;
  top: 42%;
}

/* Zentrales Mittelfeld sauber auffächern */
.matchday-slot-cm1 {
  left: 29%;
  top: 51%;
}

.matchday-slot-cm2 {
  left: 50%;
  top: 45%;
}

.matchday-slot-cm3 {
  left: 71%;
  top: 51%;
}

/* Doppelspitze etwas auseinander */
.matchday-slot-st1 {
  left: 42%;
  top: 19%;
}

.matchday-slot-st2 {
  left: 58%;
  top: 19%;
}

/* Torwart */
.matchday-slot-gk {
  left: 50%;
  top: 90%;
}

/* Pitch bekommt etwas mehr Luft */
.matchday-public-pitch {
  min-height: 760px;
}

/* Tablet */
@media (max-width: 1100px) {
  .matchday-public-player {
    width: 132px;
    min-height: 64px;
  }

  .matchday-public-pitch {
    min-height: 700px;
  }

  .matchday-slot-cb1 {
    left: 28%;
  }

  .matchday-slot-cb3 {
    left: 72%;
  }

  .matchday-slot-cm1 {
    left: 27%;
  }

  .matchday-slot-cm3 {
    left: 73%;
  }
}

/* Mobile: Karten stark komprimieren, damit nichts überlappt */
@media (max-width: 700px) {
  .matchday-public-pitch {
    min-height: 600px;
  }

  .matchday-public-player {
    width: 96px;
    min-height: 56px;
    padding: 6px;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .matchday-public-player__number {
    width: 28px;
    height: 28px;
    margin: 0 auto;
    border-radius: 10px;
    font-size: 0.76rem;
  }

  .matchday-public-player strong {
    font-size: 0.6rem;
    line-height: 1.02;
  }

  .matchday-public-player span {
    font-size: 0.54rem;
  }

  .matchday-slot-cb1 {
    left: 25%;
    top: 72%;
  }

  .matchday-slot-cb2 {
    left: 50%;
    top: 75%;
  }

  .matchday-slot-cb3 {
    left: 75%;
    top: 72%;
  }

  .matchday-slot-lm {
    left: 13%;
    top: 43%;
  }

  .matchday-slot-rm {
    left: 87%;
    top: 43%;
  }

  .matchday-slot-cm1 {
    left: 28%;
    top: 53%;
  }

  .matchday-slot-cm2 {
    left: 50%;
    top: 46%;
  }

  .matchday-slot-cm3 {
    left: 72%;
    top: 53%;
  }

  .matchday-slot-st1 {
    left: 39%;
    top: 20%;
  }

  .matchday-slot-st2 {
    left: 61%;
    top: 20%;
  }
}

/* Sehr kleine Geräte */
@media (max-width: 430px) {
  .matchday-public-pitch {
    min-height: 540px;
  }

  .matchday-public-player {
    width: 84px;
  }

  .matchday-public-player strong {
    font-size: 0.56rem;
  }

  .matchday-public-player span {
    font-size: 0.5rem;
  }
}

/* =========================================================
   MATCHDAY ADDITIONAL FORMATION SLOT SUPPORT
   Für mehr Formationen: 4-2-3-1, 5-3-2, 3-4-2-1 etc.
   ========================================================= */

.matchday-slot-dm {
  left: 50%;
  top: 58%;
}

.matchday-slot-lwb {
  left: 13%;
  top: 68%;
}

.matchday-slot-rwb {
  left: 87%;
  top: 68%;
}

.matchday-slot-cam1 {
  left: 40%;
  top: 32%;
}

.matchday-slot-cam2 {
  left: 60%;
  top: 32%;
}

.matchday-slot-cam {
  left: 50%;
  top: 34%;
}

.matchday-slot-lw {
  left: 22%;
  top: 24%;
}

.matchday-slot-rw {
  left: 78%;
  top: 24%;
}

.matchday-slot-dm1 {
  left: 40%;
  top: 57%;
}

.matchday-slot-dm2 {
  left: 60%;
  top: 57%;
}

/* Defensive 5er-Kette entzerren */
.matchday-slot-lwb,
.matchday-slot-rwb {
  z-index: 4;
}

.matchday-slot-cb1 {
  left: 30%;
}

.matchday-slot-cb2 {
  left: 50%;
}

.matchday-slot-cb3 {
  left: 70%;
}

/* Mobile Zusätze */
@media (max-width: 700px) {
  .matchday-slot-lwb {
    left: 11%;
    top: 68%;
  }

  .matchday-slot-rwb {
    left: 89%;
    top: 68%;
  }

  .matchday-slot-cam1 {
    left: 38%;
    top: 33%;
  }

  .matchday-slot-cam2 {
    left: 62%;
    top: 33%;
  }

  .matchday-slot-lw {
    left: 18%;
    top: 25%;
  }

  .matchday-slot-rw {
    left: 82%;
    top: 25%;
  }

  .matchday-slot-dm1 {
    left: 37%;
    top: 57%;
  }

  .matchday-slot-dm2 {
    left: 63%;
    top: 57%;
  }
}

/* =========================================================
   PUBLIC MATCHDAY LIVE: STREAM + TICKER + COMMENTS
   ========================================================= */

.matchday-live-section {
  padding: 20px 0 70px;
}

.matchday-live-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.matchday-live-main {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.matchday-live-side {
  position: sticky;
  top: 110px;
}

.matchday-live-card {
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--bwg-shadow);
  padding: 28px;
  overflow: hidden;
}

.matchday-live-card h2 {
  margin: 0 0 14px;
  color: var(--bwg-text);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.matchday-live-card p {
  color: var(--bwg-muted);
}

.matchday-live-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.matchday-live-badge {
  flex: 0 0 auto;
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--bwg-blue);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.matchday-live-badge.is-live {
  background: #dcfce7;
  color: #166534;
}

.matchday-live-badge.is-ended,
.matchday-live-badge.is-offline {
  background: #f1f5f9;
  color: #475569;
}

.matchday-video-wrap {
  margin-top: 20px;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 20%, rgba(47,128,255,0.24), transparent 30%),
    linear-gradient(135deg, #031735 0%, #062b66 100%);
}

.matchday-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}

.matchday-ticker-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.matchday-ticker-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 20px;
  background: #f8fafc;
  border-left: 5px solid var(--bwg-blue);
}

.matchday-ticker-goal {
  border-left-color: #16a34a;
}

.matchday-ticker-yellow_card {
  border-left-color: #eab308;
}

.matchday-ticker-red_card {
  border-left-color: #dc2626;
}

.matchday-ticker-substitution {
  border-left-color: #7c3aed;
}

.matchday-ticker-minute {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--bwg-blue);
  color: #fff;
  font-weight: 950;
}

.matchday-ticker-body strong {
  display: block;
  color: var(--bwg-text);
  font-size: 1.05rem;
  font-weight: 950;
}

.matchday-ticker-body p {
  margin: 7px 0 0;
  line-height: 1.55;
}

.matchday-ticker-body small {
  display: block;
  margin-top: 8px;
  color: #64748b;
  font-weight: 800;
}

.matchday-comment-form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.matchday-comment-form label {
  display: grid;
  gap: 6px;
  color: var(--bwg-text);
  font-size: 0.84rem;
  font-weight: 900;
}

.matchday-comment-form input,
.matchday-comment-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  padding: 12px 13px;
  font: inherit;
  outline: none;
  background: #f8fafc;
}

.matchday-comment-form button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--bwg-blue);
  color: #fff;
  font-weight: 950;
  cursor: pointer;
}

.matchday-comment-form small {
  color: #64748b;
  font-weight: 800;
  line-height: 1.5;
}

.matchday-comment-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.matchday-comment-item {
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
  border-left: 4px solid var(--bwg-blue);
}

.matchday-comment-item strong {
  display: block;
  color: var(--bwg-text);
  font-weight: 950;
}

.matchday-comment-item small {
  display: block;
  margin-top: 4px;
  color: #64748b;
  font-size: 0.76rem;
  font-weight: 800;
}

.matchday-comment-item p {
  margin: 8px 0 0;
  color: var(--bwg-muted);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .matchday-live-layout {
    grid-template-columns: 1fr;
  }

  .matchday-live-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .matchday-live-section {
    padding: 10px 0 52px;
  }

  .matchday-live-card {
    padding: 22px;
    border-radius: 22px;
  }

  .matchday-live-head {
    flex-direction: column;
  }

  .matchday-ticker-item {
    grid-template-columns: 1fr;
  }

  .matchday-ticker-minute {
    width: 54px;
    height: 54px;
  }
}

/* =========================================================
   MATCHDAY LIVE MATCH WINDOW
   Kompakte Matchbox mit Scoreboard + internem Ticker
   ========================================================= */

.matchday-live-window {
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(47,128,255,0.22), transparent 34%),
    linear-gradient(135deg, #031735 0%, #062b66 52%, #0d3f91 100%);
  color: #fff;
  box-shadow: 0 28px 70px rgba(3, 15, 35, 0.28);
}

.matchday-live-window-head {
  padding: 22px 24px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.matchday-live-window-title {
  display: grid;
  gap: 4px;
}

.matchday-live-window-title span {
  color: rgba(255,255,255,0.68);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.matchday-live-window-title strong {
  font-size: 1.12rem;
  font-weight: 950;
}

.matchday-live-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.matchday-live-state::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
}

.matchday-live-state.is-live::before {
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34,197,94,0.18);
}

.matchday-live-state.is-scheduled::before {
  background: #facc15;
}

.matchday-live-state.is-ended::before,
.matchday-live-state.is-offline::before {
  background: #94a3b8;
}

.matchday-live-scoreboard {
  padding: 26px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.matchday-live-team {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.matchday-live-team-logo,
.matchday-live-team-placeholder {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.matchday-live-team-placeholder {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 950;
}

.matchday-live-team strong {
  max-width: 190px;
  overflow: hidden;
  color: #fff;
  font-size: 1rem;
  font-weight: 950;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.matchday-live-score {
  min-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.matchday-live-score em {
  font-style: normal;
  color: rgba(255,255,255,0.58);
}

.matchday-live-meta-row {
  padding: 0 24px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.matchday-live-meta-row span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem;
  font-weight: 800;
}

.matchday-live-feed {
  background: rgba(2, 8, 23, 0.28);
  border-top: 1px solid rgba(255,255,255,0.12);
}

.matchday-live-feed-head {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.matchday-live-feed-head strong {
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.matchday-live-feed-head small {
  color: rgba(255,255,255,0.62);
  font-weight: 800;
}

.matchday-ticker-list.is-compact {
  max-height: 360px;
  overflow-y: auto;
  padding: 14px;
  display: grid;
  gap: 10px;
  scrollbar-width: thin;
}

.matchday-ticker-list.is-compact .matchday-ticker-item {
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.11);
  border-left: 5px solid rgba(255,255,255,0.45);
}

.matchday-ticker-list.is-compact .matchday-ticker-goal {
  border-left-color: #22c55e;
}

.matchday-ticker-list.is-compact .matchday-ticker-yellow_card {
  border-left-color: #eab308;
}

.matchday-ticker-list.is-compact .matchday-ticker-red_card {
  border-left-color: #ef4444;
}

.matchday-ticker-list.is-compact .matchday-ticker-substitution {
  border-left-color: #a78bfa;
}

.matchday-ticker-list.is-compact .matchday-ticker-minute {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.matchday-ticker-list.is-compact .matchday-ticker-body strong {
  color: #fff;
}

.matchday-ticker-list.is-compact .matchday-ticker-body p,
.matchday-ticker-list.is-compact .matchday-ticker-body small,
.matchday-ticker-list.is-compact .matchday-empty-text {
  color: rgba(255,255,255,0.72);
}

.matchday-comment-card-upgraded {
  border-radius: 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: var(--bwg-shadow);
  overflow: hidden;
}

.matchday-comment-card-upgraded-head {
  padding: 24px 24px 18px;
  background:
    radial-gradient(circle at 20% 0%, rgba(13,63,145,0.14), transparent 30%),
    #ffffff;
  border-bottom: 1px solid rgba(15,23,42,0.08);
}

.matchday-comment-card-upgraded-head h2 {
  margin: 4px 0 0;
}

.matchday-comment-card-upgraded-body {
  padding: 22px 24px 24px;
}

.matchday-comment-form {
  padding: 16px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 12px 28px rgba(15,23,42,0.05);
}

.matchday-comment-list {
  max-height: 430px;
  overflow-y: auto;
  padding-right: 4px;
}

@media (max-width: 720px) {
  .matchday-live-window-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .matchday-live-scoreboard {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .matchday-live-score {
    min-width: 0;
    font-size: 3.2rem;
  }

  .matchday-live-team-logo,
  .matchday-live-team-placeholder {
    width: 68px;
    height: 68px;
  }

  .matchday-ticker-list.is-compact {
    max-height: 320px;
  }

  .matchday-ticker-list.is-compact .matchday-ticker-item {
    grid-template-columns: 48px 1fr;
  }
}

/* Creator / Livepanel footer link */

.creator-login-link {
  font-weight: 900;
}

.creator-footer-login {
  width: min(1280px, calc(100% - 40px));
  margin: 22px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.creator-footer-login a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 900;
}

.creator-footer-login a:hover {
  background: #ffffff;
  color: var(--bwg-blue);
}

@media (max-width: 640px) {
  .creator-footer-login {
    width: min(100% - 18px, 1280px);
  }
}


/* =========================================================
   MATCHDAY CLEANUP / CENTERED HERO
   ========================================================= */

.matchday-hero {
  min-height: 560px;
  align-items: center;
}

.matchday-hero-inner {
  width: 100%;
  padding: 76px 0 86px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.matchday-hero .bwg-kicker,
.matchday-hero .hero-kicker,
.matchday-section-kicker {
  justify-content: center;
  text-align: center;
}

.matchday-hero h1,
.matchday-hero-inner h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.matchday-scoreboard {
  margin: 34px auto 0;
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.matchday-club {
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.matchday-club img,
.matchday-opponent-placeholder {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.matchday-club strong {
  max-width: 260px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.matchday-score {
  justify-self: center;
  text-align: center;
}

.matchday-meta {
  justify-content: center;
  text-align: center;
}

.matchday-content-section {
  padding-top: 44px;
}

.matchday-layout {
  grid-template-columns: 1fr;
}

.matchday-side {
  position: static;
}

.matchday-live-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.matchday-main-card,
.matchday-live-card,
.matchday-comment-card-upgraded {
  border-radius: 28px;
}

/* Keine leeren Sidebars sichtbar machen */
.matchday-side:empty,
.matchday-live-side:empty {
  display: none;
}

/* Falls alte "andere Spiele" Klassen existieren */
.matchday-other-matches,
.other-matches,
.related-matches,
.matchday-more-games {
  display: none !important;
}

@media (max-width: 980px) {
  .matchday-live-layout {
    grid-template-columns: 1fr;
  }

  .matchday-hero {
    min-height: auto;
  }

  .matchday-hero-inner {
    padding: 62px 0 76px;
  }

  .matchday-scoreboard {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .matchday-score {
    order: 2;
  }

  .matchday-club:first-child {
    order: 1;
  }

  .matchday-club:last-child {
    order: 3;
  }

  .matchday-club img,
  .matchday-opponent-placeholder {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 640px) {
  .matchday-hero-inner {
    padding: 54px 0 66px;
  }

  .matchday-score {
    font-size: 4rem;
  }

  .matchday-club strong {
    max-width: 220px;
    white-space: normal;
    line-height: 1.15;
  }
}


/* =========================================================
   MATCHDAY LIVE WINDOW CLEANUP
   ========================================================= */

.matchday-live-window {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.matchday-live-window-head {
  text-align: center;
}

.matchday-live-window-title {
  width: 100%;
  justify-items: center;
  text-align: center;
}

.matchday-live-state {
  margin-left: auto;
}

.matchday-live-scoreboard {
  text-align: center;
}

.matchday-live-team {
  justify-items: center;
}

.matchday-live-team-logo,
.matchday-live-team-placeholder {
  width: 82px;
  height: 82px;
}

.matchday-live-meta-row {
  justify-content: center;
}

@media (max-width: 720px) {
  .matchday-live-window-head {
    align-items: center;
  }

  .matchday-live-state {
    margin-left: 0;
  }

  .matchday-live-scoreboard {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   MATCHDAY CLEANUP SAFE OVERRIDES
   ========================================================= */

.matchday-other-matches,
.other-matches,
.related-matches,
.matchday-more-games,
.matchday-side .matchday-info-card {
  display: none !important;
}

/* Matchday Hero oben zentrieren */
.matchday-hero {
  min-height: 560px;
  align-items: center;
}

.matchday-hero-inner {
  width: 100%;
  padding: 76px 0 86px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.matchday-hero h1,
.matchday-hero-inner h1 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.matchday-scoreboard {
  margin: 34px auto 0;
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.matchday-club {
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
}

.matchday-club img,
.matchday-opponent-placeholder {
  width: 112px;
  height: 112px;
  object-fit: contain;
}

.matchday-club strong {
  max-width: 260px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.matchday-meta {
  justify-content: center;
  text-align: center;
}

.matchday-layout {
  grid-template-columns: 1fr;
}

.matchday-side {
  position: static;
}

.matchday-side:empty,
.matchday-live-side:empty {
  display: none;
}

.matchday-live-window {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.matchday-live-window-head {
  text-align: center;
}

.matchday-live-window-title {
  width: 100%;
  justify-items: center;
  text-align: center;
}

.matchday-live-state {
  margin-left: auto;
}

.matchday-live-meta-row {
  justify-content: center;
}

@media (max-width: 980px) {
  .matchday-hero {
    min-height: auto;
  }

  .matchday-hero-inner {
    padding: 62px 0 76px;
  }

  .matchday-scoreboard {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .matchday-club img,
  .matchday-opponent-placeholder {
    width: 88px;
    height: 88px;
  }

  .matchday-live-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .matchday-hero-inner {
    padding: 54px 0 66px;
  }

  .matchday-score {
    font-size: 4rem;
  }

  .matchday-club strong {
    max-width: 220px;
    white-space: normal;
    line-height: 1.15;
  }
}


/* =========================================================
   MATCHDAY LIVE STATUS BADGES
   ========================================================= */

.matchday-live-state,
.matchday-stream-status,
#matchdayLiveStatus,
#matchdayStreamStatus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #e2e8f0;
  color: #334155;
}

.matchday-live-state.is-live,
.matchday-stream-status.is-live,
#matchdayLiveStatus.is-live,
#matchdayStreamStatus.is-live {
  background: #dcfce7;
  color: #166534;
  box-shadow: 0 0 0 4px rgba(22, 101, 52, 0.08);
}

.matchday-live-state.is-warmup,
.matchday-stream-status.is-warmup,
#matchdayLiveStatus.is-warmup,
#matchdayStreamStatus.is-warmup {
  background: #dbeafe;
  color: #0d3f91;
}

.matchday-live-state.is-halftime,
.matchday-stream-status.is-halftime,
#matchdayLiveStatus.is-halftime,
#matchdayStreamStatus.is-halftime {
  background: #fef3c7;
  color: #92400e;
}

.matchday-live-state.is-ended,
.matchday-stream-status.is-ended,
#matchdayLiveStatus.is-ended,
#matchdayStreamStatus.is-ended {
  background: #fee2e2;
  color: #991b1b;
}

.matchday-live-state.is-offline,
.matchday-stream-status.is-offline,
#matchdayLiveStatus.is-offline,
#matchdayStreamStatus.is-offline {
  background: #e2e8f0;
  color: #475569;
}

.matchday-live-state.is-disabled,
.matchday-stream-status.is-disabled,
#matchdayLiveStatus.is-disabled,
#matchdayStreamStatus.is-disabled {
  background: #f1f5f9;
  color: #64748b;
}

/* =========================================================
   MATCHDAY STATUS POSITION FIX
   Status gehört in den Matchcenter-Header, nicht als Sticker oben links
   ========================================================= */

.matchday-live-window {
  position: relative;
  overflow: hidden;
}

/* Falls alte Badges absolut/fixed positioniert waren: neutralisieren */
#matchdayLiveStatus,
#matchdayStreamStatus {
  position: static !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
}

/* Header sauber als Grid */
.matchday-live-window-head {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.matchday-live-window-title {
  display: grid !important;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.matchday-live-status-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

/* Badge Design kompakter */
.matchday-live-status-row .matchday-live-state,
.matchday-live-status-row .matchday-stream-status,
#matchdayLiveStatus,
#matchdayStreamStatus {
  min-height: 30px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}

/* Match Live grün */
#matchdayLiveStatus.is-live {
  background: #dcfce7 !important;
  color: #166534 !important;
}

/* Nicht gestartet neutral */
#matchdayLiveStatus.is-offline {
  background: #e2e8f0 !important;
  color: #475569 !important;
}

/* Streamstatus neutral/blau-grau */
#matchdayStreamStatus.is-offline {
  background: #e2e8f0 !important;
  color: #475569 !important;
}

#matchdayStreamStatus.is-live {
  background: #dcfce7 !important;
  color: #166534 !important;
}

/* Auf Mobile weiterhin sauber */
@media (max-width: 640px) {
  .matchday-live-status-row {
    gap: 8px;
  }

  .matchday-live-status-row .matchday-live-state,
  .matchday-live-status-row .matchday-stream-status,
  #matchdayLiveStatus,
  #matchdayStreamStatus {
    min-height: 28px !important;
    padding: 0 11px !important;
    font-size: 0.66rem !important;
  }
}


/* =========================================================
   MATCHDAY STATUS HARD POSITION FIX
   ========================================================= */

.matchday-live-status-row {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px auto 0;
  width: 100%;
}

#matchdayLiveStatus,
#matchdayStreamStatus {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 30px !important;
  padding: 0 13px !important;
  border-radius: 999px !important;
  font-size: 0.72rem !important;
  font-weight: 950 !important;
  line-height: 1 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
}

#matchdayLiveStatus.is-live {
  background: #dcfce7 !important;
  color: #166534 !important;
}

#matchdayLiveStatus.is-offline {
  background: #e2e8f0 !important;
  color: #475569 !important;
}

#matchdayStreamStatus.is-live {
  background: #dcfce7 !important;
  color: #166534 !important;
}

#matchdayStreamStatus.is-offline {
  background: #e2e8f0 !important;
  color: #475569 !important;
}


/* =========================================================
   HOME LIVE TICKER - same concept as matchday live center
   ========================================================= */

.home-live-ticker-mount {
  padding: 26px 20px 10px;
}

.home-live-ticker-mount[hidden] {
  display: none !important;
}

.home-live-ticker {
  width: min(980px, 100%);
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  background: #0a3475;
  color: #ffffff;
  box-shadow: 0 26px 70px rgba(3, 18, 43, 0.24);
}

.home-live-ticker__head {
  padding: 26px 28px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.13);
}

.home-live-ticker__head h2 {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
}

.home-live-ticker__scoreboard {
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: #ffffff !important;
  text-decoration: none !important;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.10), transparent 34%),
    linear-gradient(135deg, #082c64, #0b3d87);
}

.home-live-ticker__team {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  min-width: 0;
}

.home-live-ticker__team img,
.home-live-ticker__placeholder {
  width: 84px;
  height: 84px;
  border-radius: 22px;
  object-fit: contain;
}

.home-live-ticker__placeholder {
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  font-weight: 950;
  text-transform: uppercase;
}

.home-live-ticker__team strong {
  max-width: 220px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.15;
}

.home-live-ticker__score {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.home-live-ticker__score span {
  color: rgba(255,255,255,0.45);
}

.home-live-ticker__meta {
  padding: 0 28px 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  background: #0b3d87;
}

.home-live-ticker__meta span {
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.13);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 950;
}

.home-live-ticker__events {
  background: #082c64;
  border-top: 1px solid rgba(255,255,255,0.13);
}

.home-live-ticker__events-head {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.home-live-ticker__events-head strong {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-live-ticker__events-head a {
  color: rgba(255,255,255,0.82) !important;
  font-weight: 900;
  text-decoration: none !important;
}

.home-live-ticker .matchday-ticker-list {
  max-height: 260px;
  overflow-y: auto;
  padding: 18px 22px 22px;
}

.home-live-ticker .matchday-empty-text {
  color: rgba(255,255,255,0.86);
}

@media (max-width: 760px) {
  .home-live-ticker-mount {
    padding-left: 12px;
    padding-right: 12px;
  }

  .home-live-ticker__head {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .home-live-ticker__scoreboard {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-live-ticker__score {
    order: -1;
  }

  .home-live-ticker__team img,
  .home-live-ticker__placeholder {
    width: 72px;
    height: 72px;
  }
}


/* =========================================================
   HOME LIVE TICKER - TICKER ONLY
   Kein Streamstatus auf der Landingpage
   ========================================================= */

.home-live-ticker .matchday-stream-status {
  display: none !important;
}

.home-live-ticker .matchday-live-status-row {
  justify-content: center;
}

.home-live-ticker .matchday-live-state {
  background: #dcfce7 !important;
  color: #166534 !important;
}


/* =========================================================
   HOME LIVE TICKER POSITION
   Direkt zwischen Sponsoren-Läufer und Hero
   ========================================================= */

.home-live-ticker-mount {
  padding: 22px 20px;
  background: linear-gradient(180deg, #eaf0f7 0%, #f8fafc 100%);
}

.home-live-ticker-mount[hidden] {
  display: none !important;
}

.home-live-ticker-mount .home-live-ticker {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .home-live-ticker-mount {
    padding: 16px 12px;
  }
}


/* =========================================================
   HOME LIVE TICKER - FINAL POLISH
   Direkt zwischen Sponsor-Läufer und Hero, hochwertiger Matchday-Look
   ========================================================= */

.home-live-ticker-mount {
  padding: 22px 20px 20px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(13, 65, 145, 0.18), transparent 34%),
    linear-gradient(180deg, #e7edf5 0%, #f8fafc 100%) !important;
}

.home-live-ticker-mount[hidden] {
  display: none !important;
}

.home-live-ticker {
  position: relative;
  width: min(1040px, 100%) !important;
  margin: 0 auto !important;
  border-radius: 28px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(72, 132, 220, 0.28), transparent 32%),
    linear-gradient(135deg, #071f49 0%, #0b3d87 48%, #082b63 100%) !important;
  color: #ffffff !important;
  box-shadow:
    0 28px 70px rgba(3, 18, 43, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.16) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
}

.home-live-ticker__glow {
  position: absolute;
  inset: -40% -15% auto auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  filter: blur(10px);
  pointer-events: none;
}

.home-live-ticker__top {
  position: relative;
  z-index: 1;
  padding: 26px 30px 22px !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 18px !important;
  border-bottom: 1px solid rgba(255,255,255,0.13) !important;
}

.home-live-ticker__title {
  text-align: center !important;
}

.home-live-ticker__title span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255,255,255,0.68) !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.home-live-ticker__title h2 {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(1.45rem, 2.6vw, 2rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.035em !important;
}

.home-live-ticker__badge {
  min-height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #dcfce7;
  color: #166534;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.18);
}

.home-live-ticker__badge i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.18);
}

.home-live-ticker__scoreboard {
  position: relative;
  z-index: 1;
  padding: 30px 34px 24px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 28px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.02), rgba(255,255,255,0.08), rgba(255,255,255,0.02)) !important;
}

.home-live-ticker__team {
  display: grid !important;
  justify-items: center !important;
  gap: 12px !important;
  text-align: center !important;
  min-width: 0 !important;
}

.home-live-ticker__team img,
.home-live-ticker__placeholder {
  width: 92px !important;
  height: 92px !important;
  border-radius: 24px !important;
  object-fit: contain !important;
}

.home-live-ticker__team img {
  filter: drop-shadow(0 16px 22px rgba(0,0,0,0.28));
}

.home-live-ticker__placeholder {
  display: grid !important;
  place-items: center !important;
  background: rgba(255,255,255,0.13) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  color: #ffffff !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.home-live-ticker__team strong {
  max-width: 260px !important;
  color: #ffffff !important;
  font-size: clamp(0.95rem, 1.6vw, 1.15rem) !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
  text-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.home-live-ticker__score {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  min-width: 210px !important;
  color: #ffffff !important;
  font-size: clamp(4rem, 8vw, 6.3rem) !important;
  font-weight: 950 !important;
  letter-spacing: -0.09em !important;
  white-space: nowrap !important;
  line-height: 0.9 !important;
  text-shadow: 0 20px 38px rgba(0,0,0,0.26);
}

.home-live-ticker__score strong {
  color: #ffffff !important;
}

.home-live-ticker__score span {
  color: rgba(255,255,255,0.46) !important;
  transform: translateY(-3px);
}

.home-live-ticker__meta {
  position: relative;
  z-index: 1;
  padding: 0 30px 26px !important;
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  background: transparent !important;
}

.home-live-ticker__meta span {
  min-height: 34px !important;
  padding: 0 15px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(255,255,255,0.13) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  color: #ffffff !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.home-live-ticker__events {
  position: relative;
  z-index: 1;
  background: rgba(4, 28, 67, 0.62) !important;
  border-top: 1px solid rgba(255,255,255,0.13) !important;
}

.home-live-ticker__events-head {
  padding: 18px 24px !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 14px !important;
  align-items: center !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}

.home-live-ticker__events-head strong {
  color: #ffffff !important;
  font-size: 0.9rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
}

.home-live-ticker__events-head a {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}

.home-live-ticker__events-list {
  max-height: 250px !important;
  overflow-y: auto !important;
  padding: 18px 22px 22px !important;
}

.home-live-empty {
  margin: 0 !important;
  color: rgba(255,255,255,0.88) !important;
  font-weight: 700;
}

.home-live-event {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}

.home-live-event:last-child {
  border-bottom: 0;
}

.home-live-event__minute {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-weight: 950;
}

.home-live-event__body strong {
  display: block;
  color: #ffffff;
  font-weight: 950;
}

.home-live-event__body p {
  margin: 5px 0 0;
  color: rgba(255,255,255,0.78);
}

.home-live-event__body small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.62);
  font-weight: 800;
}

@media (max-width: 760px) {
  .home-live-ticker-mount {
    padding: 16px 12px !important;
  }

  .home-live-ticker {
    border-radius: 24px !important;
  }

  .home-live-ticker__top {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    padding: 22px 18px 18px !important;
  }

  .home-live-ticker__scoreboard {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 24px 18px 20px !important;
  }

  .home-live-ticker__score {
    order: -1 !important;
    min-width: 0 !important;
    font-size: clamp(3.4rem, 17vw, 5rem) !important;
  }

  .home-live-ticker__team img,
  .home-live-ticker__placeholder {
    width: 76px !important;
    height: 76px !important;
  }

  .home-live-ticker__events-head {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}


/* =========================================================
   HOME LIVE TICKER - FINAL PREMIUM INTEGRATION
   ========================================================= */

.home-live-ticker-mount {
  position: relative !important;
  padding: 28px 20px 28px !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.18), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #dfe7f0 0%, #eef3f8 48%, #dce5ef 100%) !important;
  border-top: 1px solid rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(3, 23, 53, 0.08);
}

.home-live-ticker-mount::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 31, 73, 0.04), transparent 20%, transparent 80%, rgba(7, 31, 73, 0.04));
  pointer-events: none;
}

.home-live-ticker-mount[hidden] {
  display: none !important;
}

.home-live-ticker {
  position: relative !important;
  width: min(1040px, 100%) !important;
  margin: 0 auto !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,0.16), transparent 26%),
    radial-gradient(circle at 85% 5%, rgba(77, 137, 231, 0.42), transparent 34%),
    linear-gradient(135deg, #061d46 0%, #0a397f 48%, #08285f 100%) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  box-shadow:
    0 30px 80px rgba(3, 18, 43, 0.30),
    0 0 0 1px rgba(3, 18, 43, 0.05),
    inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

.home-live-ticker::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, transparent 52%, rgba(255,255,255,0.07) 52%, rgba(255,255,255,0.07) 58%, transparent 58%),
    linear-gradient(115deg, transparent 0%, transparent 68%, rgba(255,255,255,0.05) 68%, rgba(255,255,255,0.05) 72%, transparent 72%);
  pointer-events: none;
}

.home-live-ticker__glow {
  position: absolute !important;
  right: -140px !important;
  top: -190px !important;
  width: 460px !important;
  height: 460px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.12) !important;
  filter: blur(8px) !important;
  pointer-events: none !important;
}

/* Header */

.home-live-ticker__top {
  position: relative !important;
  z-index: 2 !important;
  min-height: 96px !important;
  padding: 24px 30px 20px !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 20px !important;
  border-bottom: 1px solid rgba(255,255,255,0.14) !important;
}

.home-live-ticker__title {
  text-align: center !important;
}

.home-live-ticker__title span {
  display: block !important;
  margin-bottom: 8px !important;
  color: rgba(255,255,255,0.64) !important;
  font-size: 0.76rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
}

.home-live-ticker__title h2 {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(1.45rem, 2.5vw, 2.05rem) !important;
  line-height: 1 !important;
  letter-spacing: -0.035em !important;
  text-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

.home-live-ticker__badge {
  min-height: 38px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 9px !important;
  background: #dcfce7 !important;
  color: #166534 !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase !important;
  box-shadow:
    0 12px 30px rgba(34, 197, 94, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.85) !important;
}

.home-live-ticker__badge i {
  width: 9px !important;
  height: 9px !important;
  border-radius: 999px !important;
  background: #22c55e !important;
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.18) !important;
}

/* Scoreboard */

.home-live-ticker__scoreboard {
  position: relative !important;
  z-index: 2 !important;
  padding: 32px 38px 26px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 34px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.09), rgba(255,255,255,0.03)) !important;
}

.home-live-ticker__scoreboard:hover {
  color: #ffffff !important;
}

.home-live-ticker__team {
  min-width: 0 !important;
  display: grid !important;
  justify-items: center !important;
  gap: 13px !important;
  text-align: center !important;
}

.home-live-ticker__team img,
.home-live-ticker__placeholder {
  width: 94px !important;
  height: 94px !important;
  border-radius: 26px !important;
  object-fit: contain !important;
}

.home-live-ticker__team img {
  padding: 8px !important;
  background: rgba(255,255,255,0.06);
  filter: drop-shadow(0 18px 22px rgba(0,0,0,0.30));
}

.home-live-ticker__placeholder {
  display: grid !important;
  place-items: center !important;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 40%),
    rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  color: #ffffff !important;
  font-weight: 950 !important;
  text-transform: uppercase !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 18px 34px rgba(0,0,0,0.16) !important;
}

.home-live-ticker__team strong {
  max-width: 280px !important;
  color: #ffffff !important;
  font-size: clamp(1rem, 1.5vw, 1.18rem) !important;
  font-weight: 950 !important;
  line-height: 1.12 !important;
  text-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.home-live-ticker__score {
  min-width: 240px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 13px !important;
  color: #ffffff !important;
  font-size: clamp(4.4rem, 8vw, 6.6rem) !important;
  font-weight: 950 !important;
  letter-spacing: -0.09em !important;
  white-space: nowrap !important;
  line-height: 0.9 !important;
  text-shadow: 0 22px 42px rgba(0,0,0,0.28);
}

.home-live-ticker__score strong {
  color: #ffffff !important;
}

.home-live-ticker__score span {
  color: rgba(255,255,255,0.45) !important;
  transform: translateY(-4px);
}

/* Meta */

.home-live-ticker__meta {
  position: relative !important;
  z-index: 2 !important;
  padding: 0 30px 26px !important;
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  background: transparent !important;
}

.home-live-ticker__meta span {
  min-height: 36px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  background: rgba(255,255,255,0.13) !important;
  border: 1px solid rgba(255,255,255,0.16) !important;
  color: #ffffff !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.09);
}

/* Events */

.home-live-ticker__events {
  position: relative !important;
  z-index: 2 !important;
  background: rgba(3, 24, 57, 0.66) !important;
  border-top: 1px solid rgba(255,255,255,0.13) !important;
}

.home-live-ticker__events-head {
  padding: 18px 24px !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 14px !important;
  align-items: center !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}

.home-live-ticker__events-head strong {
  color: #ffffff !important;
  font-size: 0.9rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.home-live-ticker__events-head a {
  color: rgba(255,255,255,0.92) !important;
  font-weight: 950 !important;
  text-decoration: none !important;
}

.home-live-ticker__events-head a:hover {
  color: #ffffff !important;
}

.home-live-ticker__events-list {
  max-height: 245px !important;
  overflow-y: auto !important;
  padding: 18px 24px 22px !important;
}

.home-live-empty {
  margin: 0 !important;
  color: rgba(255,255,255,0.88) !important;
  font-weight: 800 !important;
}

.home-live-event {
  display: grid !important;
  grid-template-columns: 54px 1fr !important;
  gap: 14px !important;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
}

.home-live-event:last-child {
  border-bottom: 0 !important;
}

.home-live-event__minute {
  width: 42px !important;
  height: 42px !important;
  border-radius: 14px !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255,255,255,0.13) !important;
  color: #ffffff !important;
  font-weight: 950 !important;
}

.home-live-event__body strong {
  display: block !important;
  color: #ffffff !important;
  font-weight: 950 !important;
}

.home-live-event__body p {
  margin: 5px 0 0 !important;
  color: rgba(255,255,255,0.78) !important;
}

.home-live-event__body small {
  display: block !important;
  margin-top: 6px !important;
  color: rgba(255,255,255,0.62) !important;
  font-weight: 800 !important;
}

/* Mobile */

@media (max-width: 760px) {
  .home-live-ticker-mount {
    padding: 16px 12px 18px !important;
  }

  .home-live-ticker {
    border-radius: 24px !important;
  }

  .home-live-ticker__top {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    padding: 22px 18px 18px !important;
  }

  .home-live-ticker__scoreboard {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 24px 18px 20px !important;
  }

  .home-live-ticker__score {
    order: -1 !important;
    min-width: 0 !important;
    font-size: clamp(3.7rem, 18vw, 5.2rem) !important;
  }

  .home-live-ticker__team img,
  .home-live-ticker__placeholder {
    width: 76px !important;
    height: 76px !important;
    border-radius: 21px !important;
  }

  .home-live-ticker__events-head {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .home-live-ticker__events-list {
    max-height: 230px !important;
    padding: 16px 18px 20px !important;
  }
}


/* =========================================================
   HOME LIVE TICKER - REMOVE WHITE BACKGROUND BAND
   ========================================================= */

.home-live-ticker-mount {
  padding: 28px 20px 28px !important;
  background:
    radial-gradient(circle at 18% 10%, rgba(59, 130, 246, 0.22), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(180deg, #061d46 0%, #082b63 52%, #061d46 100%) !important;
  border-top: 1px solid rgba(255,255,255,0.10) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(255,255,255,0.06) !important;
}

.home-live-ticker-mount::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(115deg, transparent 0%, transparent 58%, rgba(255,255,255,0.045) 58%, rgba(255,255,255,0.045) 63%, transparent 63%),
    linear-gradient(115deg, transparent 0%, transparent 74%, rgba(255,255,255,0.035) 74%, rgba(255,255,255,0.035) 78%, transparent 78%) !important;
  pointer-events: none !important;
}

.home-live-ticker {
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

/* Hero soll direkt sauber darunter anschließen */
.home-live-ticker-mount + .bwg-hero-v3 {
  margin-top: 0 !important;
}

/* Falls irgendwo ein heller Zwischencontainer greift */
.home-live-ticker-mount,
.home-live-ticker-mount * {
  box-sizing: border-box;
}

@media (max-width: 760px) {
  .home-live-ticker-mount {
    padding: 18px 12px 18px !important;
  }
}


/* =========================================================
   HOME LIVE TICKER - MOBILE SCOREBOARD FIX
   Logos neben dem Ergebnis statt darunter
   ========================================================= */

@media (max-width: 760px) {
  .home-live-ticker__scoreboard {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
    grid-template-areas: "home score away" !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 22px 12px 18px !important;
  }

  .home-live-ticker__team--home,
  .home-live-ticker__team:first-child {
    grid-area: home !important;
  }

  .home-live-ticker__score {
    grid-area: score !important;
    order: 0 !important;
    min-width: 108px !important;
    font-size: clamp(2.7rem, 14vw, 4rem) !important;
    gap: 6px !important;
    letter-spacing: -0.08em !important;
  }

  .home-live-ticker__team--away,
  .home-live-ticker__team:last-child {
    grid-area: away !important;
  }

  .home-live-ticker__team {
    gap: 8px !important;
    min-width: 0 !important;
  }

  .home-live-ticker__team img,
  .home-live-ticker__placeholder {
    width: 58px !important;
    height: 58px !important;
    border-radius: 17px !important;
    padding: 5px !important;
  }

  .home-live-ticker__team strong {
    max-width: 96px !important;
    font-size: 0.74rem !important;
    line-height: 1.08 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .home-live-ticker__meta {
    padding: 0 12px 18px !important;
    gap: 7px !important;
  }

  .home-live-ticker__meta span {
    min-height: 28px !important;
    padding: 0 10px !important;
    font-size: 0.68rem !important;
  }
}

@media (max-width: 420px) {
  .home-live-ticker__scoreboard {
    gap: 7px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .home-live-ticker__score {
    min-width: 94px !important;
    font-size: clamp(2.45rem, 13vw, 3.4rem) !important;
  }

  .home-live-ticker__team img,
  .home-live-ticker__placeholder {
    width: 50px !important;
    height: 50px !important;
    border-radius: 15px !important;
  }

  .home-live-ticker__team strong {
    max-width: 82px !important;
    font-size: 0.68rem !important;
  }
}


/* =========================================================
   MATCHDAY PAGE - HIDE INLINE LIVE TICKER
   Der Live-Ticker läuft prominent auf der Startseite.
   Auf der einzelnen Matchday-Seite wird der Ticker-Block ausgeblendet.
   ========================================================= */

body .matchday-live-card#ticker,
body #ticker.matchday-live-card,
body .matchday-live-window:has(#matchdayTickerList),
body .matchday-live-window:has(.matchday-ticker-list) {
  display: none !important;
}


.matchday-inline-ticker-hidden {
  display: none !important;
}


/* =========================================================
   MOBILE HOME MATCH CARDS FIX
   Nächstes Spiel + Letztes Ergebnis sauber als mobile Cards
   ========================================================= */

@media (max-width: 760px) {
  .bwg-hero-v3 .bwg-hero-panel,
  .bwg-hero-v3 .bwg-match-strip,
  .bwg-hero-v3 .home-match-strip,
  .bwg-hero-v3 .match-strip,
  .bwg-hero-v3 .hero-match-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    margin: 26px 10px 0 !important;
    border: 1px solid rgba(255,255,255,0.20) !important;
    box-shadow: 0 24px 60px rgba(3, 18, 43, 0.26) !important;
  }

  /* Falls die drei Blöcke direkte Children im großen Hero-Panel sind */
  .bwg-hero-v3 .bwg-hero-panel > *,
  .bwg-hero-v3 .bwg-match-strip > *,
  .bwg-hero-v3 .home-match-strip > *,
  .bwg-hero-v3 .match-strip > *,
  .bwg-hero-v3 .hero-match-strip > * {
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Dunkle Match-Ankündigung */
  .bwg-hero-v3 .next-match,
  .bwg-hero-v3 .next-game,
  .bwg-hero-v3 .upcoming-match,
  .bwg-hero-v3 [class*="next-match"],
  .bwg-hero-v3 [class*="next-game"],
  .bwg-hero-v3 [class*="upcoming"] {
    padding: 24px 18px !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(58, 124, 222, 0.24), transparent 40%),
      linear-gradient(145deg, #061d46 0%, #0a377a 50%, #061d46 100%) !important;
    color: #ffffff !important;
    text-align: center !important;
  }

  /* Heller Ergebnisblock */
  .bwg-hero-v3 .last-result,
  .bwg-hero-v3 .latest-result,
  .bwg-hero-v3 [class*="last-result"],
  .bwg-hero-v3 [class*="latest-result"] {
    padding: 24px 18px !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(11, 61, 135, 0.08), transparent 42%),
      #ffffff !important;
    color: #061735 !important;
    text-align: center !important;
  }

  /* Vereinsfokus mobil etwas kompakter */
  .bwg-hero-v3 .club-focus,
  .bwg-hero-v3 .verein-focus,
  .bwg-hero-v3 [class*="focus"] {
    padding: 24px 18px !important;
    text-align: center !important;
  }

  /* Kicker/Labels */
  .bwg-hero-v3 .next-match span,
  .bwg-hero-v3 .next-game span,
  .bwg-hero-v3 .upcoming-match span,
  .bwg-hero-v3 .last-result span,
  .bwg-hero-v3 .latest-result span,
  .bwg-hero-v3 [class*="next"] span,
  .bwg-hero-v3 [class*="result"] span {
    word-break: normal !important;
  }

  .bwg-hero-v3 .match-kicker,
  .bwg-hero-v3 .section-kicker,
  .bwg-hero-v3 .card-kicker,
  .bwg-hero-v3 [class*="kicker"] {
    display: block !important;
    margin-bottom: 8px !important;
    font-size: 0.78rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.10em !important;
    text-transform: uppercase !important;
    color: rgba(255,255,255,0.72) !important;
  }

  .bwg-hero-v3 .last-result .match-kicker,
  .bwg-hero-v3 .last-result .section-kicker,
  .bwg-hero-v3 .last-result .card-kicker,
  .bwg-hero-v3 .latest-result .match-kicker,
  .bwg-hero-v3 .latest-result .section-kicker,
  .bwg-hero-v3 .latest-result .card-kicker {
    color: #475569 !important;
  }

  /* Wettbewerbsname */
  .bwg-hero-v3 .match-league,
  .bwg-hero-v3 .competition,
  .bwg-hero-v3 [class*="league"],
  .bwg-hero-v3 [class*="competition"] {
    display: block !important;
    margin: 0 auto 18px !important;
    font-size: 0.9rem !important;
    font-weight: 950 !important;
    color: inherit !important;
    opacity: 0.92 !important;
  }

  /* Team/Logo-Blöcke */
  .bwg-hero-v3 .match-teams,
  .bwg-hero-v3 .result-teams,
  .bwg-hero-v3 [class*="teams"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 14px !important;
    text-align: center !important;
  }

  .bwg-hero-v3 .match-team,
  .bwg-hero-v3 .result-team,
  .bwg-hero-v3 [class*="team"] {
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
    text-align: center !important;
  }

  .bwg-hero-v3 .match-team img,
  .bwg-hero-v3 .result-team img,
  .bwg-hero-v3 [class*="team"] img {
    width: 72px !important;
    height: 72px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 12px 18px rgba(0,0,0,0.22)) !important;
  }

  .bwg-hero-v3 .match-team strong,
  .bwg-hero-v3 .result-team strong,
  .bwg-hero-v3 [class*="team"] strong {
    display: block !important;
    max-width: 260px !important;
    margin: 0 auto !important;
    font-size: 1rem !important;
    line-height: 1.15 !important;
    font-weight: 950 !important;
    color: inherit !important;
  }

  /* VS groß, aber sauber */
  .bwg-hero-v3 .match-vs,
  .bwg-hero-v3 .vs,
  .bwg-hero-v3 [class*="vs"] {
    margin: 4px auto !important;
    font-size: 1.55rem !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -0.05em !important;
    color: #ffffff !important;
    text-align: center !important;
  }

  /* Ergebnis 1:6 sauber als Score */
  .bwg-hero-v3 .result-score,
  .bwg-hero-v3 .score,
  .bwg-hero-v3 [class*="score"] {
    margin: 12px auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-size: clamp(2.7rem, 14vw, 4rem) !important;
    line-height: 0.95 !important;
    font-weight: 950 !important;
    letter-spacing: -0.08em !important;
    color: #0b3d87 !important;
  }

  .bwg-hero-v3 .result-score span,
  .bwg-hero-v3 .score span,
  .bwg-hero-v3 [class*="score"] span {
    color: #94a3b8 !important;
  }

  /* Meta-Daten */
  .bwg-hero-v3 .match-meta,
  .bwg-hero-v3 .result-meta,
  .bwg-hero-v3 [class*="meta"] {
    margin-top: 18px !important;
    display: grid !important;
    gap: 5px !important;
    text-align: center !important;
    color: rgba(255,255,255,0.86) !important;
    font-size: 0.9rem !important;
    line-height: 1.25 !important;
  }

  .bwg-hero-v3 .last-result .match-meta,
  .bwg-hero-v3 .last-result .result-meta,
  .bwg-hero-v3 .latest-result .match-meta,
  .bwg-hero-v3 .latest-result .result-meta {
    color: #334155 !important;
  }

  /* Buttons unten */
  .bwg-hero-v3 .matchday-link,
  .bwg-hero-v3 .report-link,
  .bwg-hero-v3 .card-link,
  .bwg-hero-v3 a[href*="/spiele/"],
  .bwg-hero-v3 a[href*="/berichte/"] {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    margin-top: 18px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    font-size: 0.82rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
  }

  .bwg-hero-v3 .next-match a,
  .bwg-hero-v3 .next-game a,
  .bwg-hero-v3 .upcoming-match a,
  .bwg-hero-v3 [class*="next"] a {
    background: #ffffff !important;
    color: #082b63 !important;
  }

  .bwg-hero-v3 .last-result a,
  .bwg-hero-v3 .latest-result a,
  .bwg-hero-v3 [class*="result"] a {
    background: #082b63 !important;
    color: #ffffff !important;
  }
}

/* Sehr kleine Handys */
@media (max-width: 420px) {
  .bwg-hero-v3 .match-team img,
  .bwg-hero-v3 .result-team img,
  .bwg-hero-v3 [class*="team"] img {
    width: 62px !important;
    height: 62px !important;
  }

  .bwg-hero-v3 .match-team strong,
  .bwg-hero-v3 .result-team strong,
  .bwg-hero-v3 [class*="team"] strong {
    font-size: 0.92rem !important;
  }

  .bwg-hero-v3 .result-score,
  .bwg-hero-v3 .score,
  .bwg-hero-v3 [class*="score"] {
    font-size: clamp(2.4rem, 13vw, 3.4rem) !important;
  }
}


/* =========================================================
   REAL MOBILE FIX: BWG MATCHCENTER CARDS
   Zielklassen aus index.ejs:
   .bwg-matchcenter, .bwg-matchcenter-grid,
   .bwg-next-match, .bwg-result-card, .bwg-table-card
   ========================================================= */

@media (max-width: 760px) {
  .bwg-matchcenter {
    margin-top: 0 !important;
    padding: 18px 0 26px !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(15, 77, 165, 0.18), transparent 34%),
      linear-gradient(180deg, #061d46 0%, #082b63 100%) !important;
  }

  .bwg-matchcenter .container {
    width: 100% !important;
    max-width: none !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .bwg-matchcenter-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    border-radius: 0 !important;
    overflow: visible !important;
  }

  .bwg-match-card,
  .bwg-result-card,
  .bwg-table-card {
    width: 100% !important;
    min-width: 0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 46px rgba(3, 18, 43, 0.22) !important;
  }

  /* Next Match Card */
  .bwg-next-match {
    padding: 0 !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(66, 133, 244, 0.22), transparent 42%),
      linear-gradient(145deg, #061d46 0%, #0b3d87 55%, #061d46 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
  }

  /* Last Result Card */
  .bwg-result-card {
    padding: 0 !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(11, 61, 135, 0.08), transparent 44%),
      #ffffff !important;
    color: #061735 !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
  }

  .bwg-table-card {
    padding: 0 !important;
    background:
      linear-gradient(145deg, #061d46 0%, #0b3d87 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.18) !important;
  }

  /* Card Heads */
  .bwg-match-head {
    padding: 20px 18px 14px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255,255,255,0.12) !important;
  }

  .bwg-result-card .bwg-match-head {
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
  }

  .bwg-match-head span {
    display: block !important;
    color: inherit !important;
    opacity: 0.72 !important;
    font-size: 0.78rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.11em !important;
    text-transform: uppercase !important;
  }

  .bwg-match-head strong {
    display: block !important;
    color: inherit !important;
    font-size: 0.98rem !important;
    font-weight: 950 !important;
    line-height: 1.1 !important;
  }

  /* NEXT MATCH: Logo | VS | Logo nebeneinander */
  .bwg-versus {
    padding: 22px 14px 18px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    text-align: center !important;
  }

  .bwg-club-side {
    min-width: 0 !important;
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
  }

  .bwg-club-side img,
  .bwg-opponent-logo,
  .bwg-opponent-logo-img {
    width: 62px !important;
    height: 62px !important;
    object-fit: contain !important;
    border-radius: 16px !important;
    filter: drop-shadow(0 12px 16px rgba(0,0,0,0.24)) !important;
  }

  .bwg-club-side strong {
    max-width: 118px !important;
    color: #ffffff !important;
    font-size: 0.82rem !important;
    font-weight: 950 !important;
    line-height: 1.08 !important;
    text-align: center !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
  }

  .bwg-vs {
    width: 56px !important;
    height: 56px !important;
    border-radius: 18px !important;
    display: grid !important;
    place-items: center !important;
    background: rgba(255,255,255,0.12) !important;
    border: 1px solid rgba(255,255,255,0.16) !important;
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 950 !important;
    letter-spacing: -0.05em !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.09) !important;
  }

  /* RESULT: Logo | Score | Logo nebeneinander */
  .bwg-result-line,
  .bwg-result-line-logos {
    padding: 22px 14px 18px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    text-align: center !important;
  }

  .bwg-result-team {
    min-width: 0 !important;
    display: grid !important;
    justify-items: center !important;
    gap: 8px !important;
  }

  .bwg-result-logo,
  .bwg-result-team img,
  .bwg-result-logo-placeholder {
    width: 58px !important;
    height: 58px !important;
    object-fit: contain !important;
    border-radius: 15px !important;
    filter: drop-shadow(0 10px 14px rgba(15, 23, 42, 0.14)) !important;
  }

  .bwg-result-team span {
    max-width: 112px !important;
    color: #061735 !important;
    font-size: 0.78rem !important;
    font-weight: 950 !important;
    line-height: 1.08 !important;
    text-align: center !important;
    overflow-wrap: anywhere !important;
  }

  .bwg-result-line > strong {
    min-width: 104px !important;
    color: #0b3d87 !important;
    font-size: clamp(2.5rem, 13vw, 3.5rem) !important;
    font-weight: 950 !important;
    line-height: 0.9 !important;
    letter-spacing: -0.08em !important;
    white-space: nowrap !important;
  }

  /* Meta */
  .bwg-match-meta {
    padding: 0 18px 18px !important;
    display: grid !important;
    gap: 7px !important;
    text-align: center !important;
  }

  .bwg-next-match .bwg-match-meta {
    color: rgba(255,255,255,0.86) !important;
  }

  .bwg-result-card .bwg-match-meta {
    color: #475569 !important;
  }

  .bwg-match-meta span {
    display: block !important;
    font-size: 0.86rem !important;
    line-height: 1.25 !important;
    font-weight: 700 !important;
  }

  /* Buttons */
  .bwg-card-link {
    width: calc(100% - 36px) !important;
    min-height: 44px !important;
    margin: 0 18px 20px !important;
    padding: 0 16px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 0.82rem !important;
    font-weight: 950 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
  }

  .bwg-next-match .bwg-card-link {
    background: #ffffff !important;
    color: #082b63 !important;
    box-shadow: 0 14px 26px rgba(0,0,0,0.16) !important;
  }

  .bwg-result-card .bwg-card-link {
    background: #082b63 !important;
    color: #ffffff !important;
    box-shadow: 0 14px 26px rgba(8,43,99,0.18) !important;
  }

  .bwg-table-card .bwg-card-link {
    background: #ffffff !important;
    color: #082b63 !important;
  }

  /* Vereinsfokus */
  .bwg-focus-list {
    padding: 18px !important;
    display: grid !important;
    gap: 10px !important;
  }

  .bwg-focus-list div {
    min-height: 58px !important;
    padding: 12px 14px !important;
    border-radius: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
  }

  .bwg-focus-list strong {
    color: #ffffff !important;
    font-size: 1.55rem !important;
    font-weight: 950 !important;
  }

  .bwg-focus-list span {
    color: rgba(255,255,255,0.82) !important;
    font-weight: 900 !important;
  }
}

/* Kleine Handys */
@media (max-width: 420px) {
  .bwg-versus,
  .bwg-result-line,
  .bwg-result-line-logos {
    gap: 7px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .bwg-club-side img,
  .bwg-opponent-logo,
  .bwg-opponent-logo-img,
  .bwg-result-logo,
  .bwg-result-team img,
  .bwg-result-logo-placeholder {
    width: 52px !important;
    height: 52px !important;
    border-radius: 14px !important;
  }

  .bwg-vs {
    width: 48px !important;
    height: 48px !important;
    border-radius: 15px !important;
    font-size: 1.05rem !important;
  }

  .bwg-result-line > strong {
    min-width: 88px !important;
    font-size: clamp(2.25rem, 12vw, 3rem) !important;
  }

  .bwg-club-side strong,
  .bwg-result-team span {
    max-width: 92px !important;
    font-size: 0.7rem !important;
  }
}


/* =========================================================
   MOBILE MATCHCENTER - REMOVE BIG OUTER BOX
   Nur einzelne Cards behalten, keinen riesigen Rahmen drumherum
   ========================================================= */

@media (max-width: 760px) {
  .bwg-matchcenter {
    padding: 18px 0 24px !important;
    margin: 0 !important;
    background:
      linear-gradient(180deg, #061d46 0%, #082b63 100%) !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .bwg-matchcenter .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .bwg-matchcenter-grid {
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .bwg-matchcenter-grid::before,
  .bwg-matchcenter-grid::after,
  .bwg-matchcenter::before,
  .bwg-matchcenter::after {
    display: none !important;
    content: none !important;
  }

  .bwg-match-card,
  .bwg-result-card,
  .bwg-table-card {
    margin: 0 !important;
  }

  .bwg-match-card + .bwg-result-card,
  .bwg-result-card + .bwg-table-card,
  .bwg-matchcenter-grid > article + article {
    margin-top: 14px !important;
  }
}


/* =========================================================
   HOME LIVE TICKER - REMOVE MATCH OPEN LINK
   ========================================================= */

.home-live-ticker__events-head {
  justify-content: flex-start !important;
}

.home-live-ticker__events-head a,
.home-live-ticker__events-head #homeLiveOpenLink {
  display: none !important;
}


/* =========================================================
   HOME LIVE TICKER - VISIBLE MATCH MINUTE
   ========================================================= */

.home-live-ticker__status-stack {
  display: grid !important;
  gap: 8px !important;
  justify-items: end !important;
}

.home-live-ticker__minute-pill {
  min-height: 42px !important;
  padding: 5px 14px 5px 8px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: rgba(255,255,255,0.14) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  color: #ffffff !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 12px 28px rgba(0,0,0,0.16) !important;
}

.home-live-ticker__minute-pill strong {
  min-width: 46px !important;
  height: 32px !important;
  padding: 0 9px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  color: #082b63 !important;
  font-size: 1.05rem !important;
  font-weight: 950 !important;
  letter-spacing: -0.04em !important;
}

.home-live-ticker__minute-pill span {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.76rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

@media (max-width: 760px) {
  .home-live-ticker__status-stack {
    justify-items: center !important;
  }

  .home-live-ticker__minute-pill {
    min-height: 38px !important;
    padding: 4px 12px 4px 7px !important;
  }

  .home-live-ticker__minute-pill strong {
    min-width: 42px !important;
    height: 30px !important;
    font-size: 0.96rem !important;
  }

  .home-live-ticker__minute-pill span {
    font-size: 0.68rem !important;
  }
}


/* =========================================================
   MATCHDAY - BWG LOGO FIX
   ========================================================= */

.matchday-team-logo-img,
.bwg-logo-img,
img[alt="BWG"].bwg-logo-img,
img[alt="BWG"].matchday-team-logo-img {
  display: block !important;
  width: 112px !important;
  height: 112px !important;
  object-fit: contain !important;
  border-radius: 999px !important;
  padding: 10px !important;
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  box-shadow: 0 18px 38px rgba(0,0,0,0.22) !important;
}

@media (max-width: 760px) {
  .matchday-team-logo-img,
  .bwg-logo-img,
  img[alt="BWG"].bwg-logo-img,
  img[alt="BWG"].matchday-team-logo-img {
    width: 78px !important;
    height: 78px !important;
    padding: 7px !important;
  }
}


/* =========================================================
   MATCHDAY - BWG LOGO CLEAN DISPLAY
   Logo einzeln/frei anzeigen, nicht im Kreis zuschneiden
   ========================================================= */

.matchday-team-logo-img.bwg-logo-img,
.bwg-logo-img.matchday-team-logo-img,
img[alt="BWG"].bwg-logo-img,
img[alt="BWG"].matchday-team-logo-img {
  width: 128px !important;
  height: 128px !important;
  max-width: 128px !important;
  max-height: 128px !important;

  object-fit: contain !important;
  object-position: center !important;

  border-radius: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28)) !important;
}

/* Falls ein Parent-Kreis/Badge um das Logo liegt */
.matchday-team:has(img[alt="BWG"]) .matchday-team-logo,
.matchday-team:has(img[alt="BWG"]) .matchday-logo,
.matchday-team:has(img[alt="BWG"]) .team-logo,
.matchday-team:has(img[alt="BWG"]) .club-logo,
.matchday-team:has(img[alt="BWG"]) .crest,
.matchday-team:has(img[alt="BWG"]) .badge {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

/* Allgemeiner Matchday-Hero-Fix für Logo-Wrapper */
.matchday-hero img[alt="BWG"],
.matchday-header img[alt="BWG"],
.matchday-teams img[alt="BWG"],
.matchday-vs img[alt="BWG"] {
  object-fit: contain !important;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

@media (max-width: 760px) {
  .matchday-team-logo-img.bwg-logo-img,
  .bwg-logo-img.matchday-team-logo-img,
  img[alt="BWG"].bwg-logo-img,
  img[alt="BWG"].matchday-team-logo-img {
    width: 86px !important;
    height: 86px !important;
    max-width: 86px !important;
    max-height: 86px !important;
  }
}


/* =========================================================
   BWG NEWS HERO SLIDER
   ========================================================= */

.bwg-news-hero-slider {
  position: relative;
  background: #061735;
  overflow: hidden;
}

.bwg-news-slider {
  position: relative;
  min-height: clamp(560px, 72vh, 760px);
  background: #061735;
  overflow: hidden;
}

.bwg-news-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.bwg-news-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: absolute;
}

.bwg-news-slide-bg {
  position: absolute;
  inset: 0;
}

.bwg-news-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bwg-news-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 18, 45, 0.94) 0%, rgba(5, 31, 75, 0.76) 42%, rgba(5, 31, 75, 0.38) 100%),
    linear-gradient(0deg, rgba(1, 18, 45, 0.82), rgba(1, 18, 45, 0.12));
}

.bwg-news-slide-inner {
  position: relative;
  z-index: 2;
  min-height: clamp(560px, 72vh, 760px);
  display: flex;
  align-items: center;
}

.bwg-news-slide-copy {
  max-width: 760px;
  color: #ffffff;
  padding: 90px 0;
}

.bwg-news-slide-copy h1 {
  margin: 18px 0 18px;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  text-wrap: balance;
}

.bwg-news-slide-copy p {
  max-width: 700px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.55;
}

.bwg-news-slider-controls {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(2, 16, 38, 0.58);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(14px);
}

.bwg-news-slider-controls > button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 950;
  cursor: pointer;
}

.bwg-news-slider-dots {
  display: flex;
  gap: 8px;
}

.bwg-news-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
}

.bwg-news-slider-dots button.is-active {
  width: 28px;
  background: #ffffff;
}

.public-news-detail {
  background: #eef3f9;
}

.news-detail-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #061735;
}

.news-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1, 18, 45, 0.94), rgba(1, 18, 45, 0.48)),
    linear-gradient(0deg, rgba(1, 18, 45, 0.92), transparent 58%);
}

.news-detail-hero-overlay {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 90px;
  color: #ffffff;
}

.news-back-link {
  color: rgba(255,255,255,0.82);
  font-weight: 950;
  text-decoration: none;
}

.news-detail-kicker {
  display: inline-flex;
  margin-top: 28px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-detail-hero h1 {
  max-width: 980px;
  margin: 22px 0 18px;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.news-detail-hero p {
  max-width: 780px;
  color: rgba(255,255,255,0.88);
  font-size: 1.2rem;
  line-height: 1.55;
}

.news-detail-content {
  padding: 56px 0 80px;
}

.news-detail-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.news-detail-card p {
  color: #24324a;
  font-size: 1.08rem;
  line-height: 1.78;
}

@media (max-width: 760px) {
  .bwg-news-slider,
  .bwg-news-slide-inner {
    min-height: 620px;
  }

  .bwg-news-slide-overlay {
    background:
      linear-gradient(0deg, rgba(1, 18, 45, 0.95), rgba(1, 18, 45, 0.45)),
      linear-gradient(90deg, rgba(1, 18, 45, 0.82), rgba(1, 18, 45, 0.42));
  }

  .bwg-news-slide-copy {
    padding: 110px 0 120px;
  }

  .bwg-news-slide-copy h1 {
    font-size: clamp(2.55rem, 13vw, 4.4rem);
  }

  .bwg-news-slider-controls {
    bottom: 22px;
  }

  .news-detail-hero {
    min-height: 560px;
  }

  .news-detail-hero-overlay {
    padding: 110px 0 70px;
  }

  .news-detail-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }
}


/* =========================================================
   BWG NEWS HERO SLIDER - CLEAN POLISH
   Macht den News-Hero wie ein modernes Feature:
   Text links, Bild/Poster rechts, weniger leerer dunkler Block.
   ========================================================= */

.bwg-news-hero-slider {
  background:
    radial-gradient(circle at 78% 18%, rgba(52, 116, 214, 0.26), transparent 34%),
    linear-gradient(135deg, #03152f 0%, #06265a 48%, #03152f 100%) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
}

.bwg-news-slider {
  min-height: clamp(560px, 68vh, 720px) !important;
  background: transparent !important;
}

.bwg-news-slide {
  min-height: clamp(560px, 68vh, 720px) !important;
}

.bwg-news-slide-bg {
  position: absolute !important;
  inset: 0 !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

.bwg-news-slide-bg img {
  position: absolute !important;
  right: clamp(28px, 6vw, 92px) !important;
  top: 50% !important;
  transform: translateY(-50%) !important;

  width: min(42vw, 520px) !important;
  height: min(58vh, 620px) !important;

  object-fit: contain !important;
  object-position: center !important;

  border-radius: 30px !important;
  box-shadow:
    0 35px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255,255,255,0.16) !important;

  background: rgba(255,255,255,0.04) !important;
}

.bwg-news-slide-overlay {
  background:
    linear-gradient(90deg, rgba(3, 21, 47, 0.96) 0%, rgba(3, 21, 47, 0.86) 42%, rgba(3, 21, 47, 0.34) 72%, rgba(3, 21, 47, 0.16) 100%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.10), transparent 34%) !important;
}

.bwg-news-slide-inner {
  min-height: clamp(560px, 68vh, 720px) !important;
  align-items: center !important;
}

.bwg-news-slide-copy {
  max-width: 650px !important;
  padding: clamp(70px, 8vw, 110px) 0 clamp(78px, 8vw, 118px) !important;
  position: relative !important;
  z-index: 4 !important;
}

.bwg-news-slide-copy .bwg-kicker {
  background: rgba(255,255,255,0.13) !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.bwg-news-slide-copy h1 {
  margin: 22px 0 20px !important;
  max-width: 660px !important;
  color: #ffffff !important;
  font-size: clamp(3.1rem, 5.8vw, 5.8rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.075em !important;
  text-transform: uppercase !important;
  text-shadow: 0 12px 34px rgba(0,0,0,0.42) !important;
}

.bwg-news-slide-copy p {
  max-width: 620px !important;
  margin-bottom: 26px !important;
  color: rgba(255,255,255,0.88) !important;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem) !important;
  line-height: 1.55 !important;
}

.bwg-news-slide-copy .btn {
  min-height: 54px !important;
  padding-inline: 28px !important;
  border-radius: 999px !important;
  box-shadow: 0 20px 42px rgba(0,0,0,0.22) !important;
}

/* Slider Controls sauberer */
.bwg-news-slider-controls {
  left: clamp(20px, 7vw, 84px) !important;
  bottom: 34px !important;
  transform: none !important;
  background: rgba(255,255,255,0.10) !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  box-shadow: 0 18px 50px rgba(0,0,0,0.22) !important;
}

.bwg-news-slider-controls > button {
  background: rgba(255,255,255,0.18) !important;
}

.bwg-news-slider-dots button {
  background: rgba(255,255,255,0.34) !important;
}

.bwg-news-slider-dots button.is-active {
  background: #ffffff !important;
}

/* Matchcenter darunter optisch absetzen */
.bwg-news-hero-slider + .bwg-matchcenter,
.bwg-hero-v3 + .bwg-matchcenter {
  margin-top: -42px !important;
  position: relative !important;
  z-index: 8 !important;
}

.bwg-matchcenter {
  padding-top: 0 !important;
}

/* Mobile: Bild wird oben als Poster, Text darunter */
@media (max-width: 900px) {
  .bwg-news-slider,
  .bwg-news-slide,
  .bwg-news-slide-inner {
    min-height: auto !important;
  }

  .bwg-news-slide {
    position: relative !important;
    display: block !important;
    padding: 28px 0 92px !important;
  }

  .bwg-news-slide-bg {
    position: relative !important;
    inset: auto !important;
    width: min(92%, 420px) !important;
    margin: 0 auto 24px !important;
    height: auto !important;
  }

  .bwg-news-slide-bg img {
    position: relative !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;

    width: 100% !important;
    height: auto !important;
    max-height: 420px !important;
    object-fit: contain !important;
    border-radius: 24px !important;
  }

  .bwg-news-slide-overlay {
    background:
      linear-gradient(0deg, rgba(3, 21, 47, 0.98), rgba(3, 21, 47, 0.72)) !important;
  }

  .bwg-news-slide-inner {
    display: block !important;
  }

  .bwg-news-slide-copy {
    padding: 0 0 0 !important;
    max-width: none !important;
  }

  .bwg-news-slide-copy h1 {
    font-size: clamp(2.45rem, 12vw, 4.1rem) !important;
  }

  .bwg-news-slider-controls {
    left: 50% !important;
    bottom: 22px !important;
    transform: translateX(-50%) !important;
  }

  .bwg-news-hero-slider + .bwg-matchcenter,
  .bwg-hero-v3 + .bwg-matchcenter {
    margin-top: 0 !important;
  }
}


/* =========================================================
   LEGAL / FOOTER
   ========================================================= */

.legal-page {
  background: #eef3f9;
  min-height: 100vh;
}

.legal-hero {
  padding: 120px 0 70px;
  background:
    radial-gradient(circle at 80% 20%, rgba(52, 116, 214, 0.25), transparent 34%),
    linear-gradient(135deg, #03152f 0%, #06265a 52%, #03152f 100%);
  color: #ffffff;
}

.legal-hero h1 {
  margin: 18px 0 10px;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.legal-hero p {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
}

.legal-content {
  padding: 56px 0 90px;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.legal-card h2,
.legal-card h3 {
  color: #061735;
}

.legal-card p {
  color: #24324a;
  line-height: 1.75;
}

.bwg-footer {
  padding: 26px 0;
  background: #03152f;
  color: rgba(255,255,255,0.78);
}

.bwg-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.bwg-footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  margin-left: 18px;
}

@media (max-width: 760px) {
  .legal-hero {
    padding: 95px 0 54px;
  }

  .bwg-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .bwg-footer a {
    margin: 0 8px;
  }
}


/* =========================================================
   LEGAL PAGES + FOOTER
   ========================================================= */

.legal-page {
  background: #eef3f9;
  min-height: 100vh;
}

.legal-hero {
  padding: 128px 0 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(52, 116, 214, 0.25), transparent 34%),
    linear-gradient(135deg, #03152f 0%, #06265a 52%, #03152f 100%);
  color: #ffffff;
}

.legal-hero h1 {
  margin: 18px 0 12px;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.legal-hero p {
  color: rgba(255,255,255,0.84);
  max-width: 780px;
  font-size: 1.16rem;
  line-height: 1.55;
}

.legal-content {
  padding: 56px 0 90px;
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 32px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.legal-card h2 {
  margin-top: 0;
  color: #061735;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
}

.legal-card h3 {
  margin-top: 34px;
  color: #061735;
  font-size: 1.25rem;
}

.legal-card p {
  color: #24324a;
  line-height: 1.75;
}

.legal-note {
  margin-top: 34px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #eef3f9;
  border-left: 5px solid #174ea6;
  font-weight: 800;
}

.bwg-footer {
  padding: 28px 0;
  background: #03152f;
  color: rgba(255,255,255,0.78);
}

.bwg-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.bwg-footer a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 950;
  margin-left: 18px;
}

.bwg-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 760px) {
  .legal-hero {
    padding: 98px 0 54px;
  }

  .legal-content {
    padding: 34px 0 64px;
  }

  .legal-card {
    border-radius: 24px;
  }

  .bwg-footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .bwg-footer a {
    margin: 0 8px;
  }
}


/* =========================================================
   FOOTER + LEGAL LINKS FINAL FIX
   ========================================================= */

.bwg-footer {
  padding: 28px 0 !important;
  background: #03152f !important;
  color: rgba(255,255,255,0.78) !important;
}

.bwg-footer-inner {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 18px !important;
}

.bwg-footer nav {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
}

.bwg-footer a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 950 !important;
}

.bwg-footer a:hover {
  text-decoration: underline !important;
}

@media (max-width: 760px) {
  .bwg-footer-inner {
    flex-direction: column !important;
    text-align: center !important;
  }

  .bwg-footer nav {
    justify-content: center !important;
    flex-wrap: wrap !important;
  }
}


/* =========================================================
   LEGAL HEADER LOGO FIX
   Verhindert riesige Logos auf Impressum/Datenschutz
   ========================================================= */

.bwg-site-header .bwg-brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  text-decoration: none !important;
  color: inherit !important;
}

.bwg-site-header .bwg-brand img,
.legal-page + .bwg-footer img,
body .bwg-site-header img {
  width: 44px !important;
  height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  object-fit: contain !important;
  display: block !important;
}

.bwg-site-header .bwg-brand span {
  font-size: 0.98rem !important;
  font-weight: 950 !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}

.bwg-site-header .bwg-header-inner {
  min-height: 76px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

.bwg-site-header .bwg-main-nav {
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
}

.bwg-site-header .bwg-main-nav a {
  text-decoration: none !important;
  font-weight: 900 !important;
}

@media (max-width: 760px) {
  .bwg-site-header .bwg-brand img,
  body .bwg-site-header img {
    width: 38px !important;
    height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
  }

  .bwg-site-header .bwg-brand span {
    font-size: 0.84rem !important;
    white-space: normal !important;
  }

  .bwg-site-header .bwg-header-inner {
    min-height: 68px !important;
  }

  .bwg-site-header .bwg-main-nav {
    display: none !important;
  }
}


/* =========================================================
   CLEAN BWG HERO RESTORE
   ========================================================= */

.bwg-hero-fixed {
  position: relative !important;
  min-height: clamp(620px, 76vh, 860px) !important;
  overflow: hidden !important;
  background: #03152f !important;
  display: grid !important;
  align-items: center !important;
}

.bwg-hero-fixed .bwg-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}

.bwg-hero-fixed .bwg-hero-bg img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  filter: saturate(1.08) contrast(1.06) !important;
}

.bwg-hero-fixed .bwg-hero-shade {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(2, 18, 44, 0.96) 0%, rgba(3, 26, 62, 0.82) 46%, rgba(3, 26, 62, 0.34) 100%),
    linear-gradient(0deg, rgba(2, 18, 44, 0.88) 0%, rgba(2, 18, 44, 0.18) 62%) !important;
}

.bwg-hero-fixed .bwg-hero-lines {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background:
    linear-gradient(112deg, transparent 0 64%, rgba(255,255,255,0.08) 64% 66%, transparent 66% 100%),
    linear-gradient(112deg, transparent 0 72%, rgba(255,255,255,0.06) 72% 74%, transparent 74% 100%) !important;
}

.bwg-hero-fixed .bwg-hero-inner {
  position: relative !important;
  z-index: 3 !important;
  min-height: clamp(620px, 76vh, 860px) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: clamp(28px, 6vw, 90px) !important;
  padding-top: 54px !important;
  padding-bottom: 86px !important;
}

.bwg-hero-fixed .bwg-hero-copy {
  max-width: 820px !important;
  color: #ffffff !important;
}

.bwg-hero-fixed .bwg-kicker {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 38px !important;
  padding: 0 17px !important;
  border-radius: 999px !important;
  background: rgba(255,255,255,0.13) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  color: #ffffff !important;
  font-size: 0.78rem !important;
  font-weight: 950 !important;
  letter-spacing: 0.085em !important;
  text-transform: uppercase !important;
  box-shadow: 0 16px 40px rgba(0,0,0,0.22) !important;
}

.bwg-hero-fixed h1 {
  margin: 24px 0 22px !important;
  color: #ffffff !important;
  font-size: clamp(4rem, 8.2vw, 8.4rem) !important;
  line-height: 0.88 !important;
  letter-spacing: -0.085em !important;
  text-transform: uppercase !important;
  font-weight: 1000 !important;
  text-shadow: 0 18px 44px rgba(0,0,0,0.42) !important;
}

.bwg-hero-fixed p {
  max-width: 720px !important;
  margin: 0 0 34px !important;
  color: rgba(255,255,255,0.9) !important;
  font-size: clamp(1.08rem, 1.55vw, 1.35rem) !important;
  line-height: 1.55 !important;
}

.bwg-hero-fixed .bwg-hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}

.bwg-hero-fixed .btn {
  min-height: 58px !important;
  padding: 0 30px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-weight: 1000 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
}

.bwg-hero-fixed .btn-primary {
  background: #ffffff !important;
  color: #06265a !important;
  border: 1px solid rgba(255,255,255,0.92) !important;
  box-shadow: 0 22px 48px rgba(0,0,0,0.28) !important;
}

.bwg-hero-fixed .btn-secondary {
  background: rgba(255,255,255,0.13) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.24) !important;
  backdrop-filter: blur(14px) !important;
}

.bwg-hero-fixed .bwg-hero-badge {
  width: clamp(138px, 14vw, 190px) !important;
  height: clamp(138px, 14vw, 190px) !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
  background: rgba(255,255,255,0.11) !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  box-shadow: 0 26px 70px rgba(0,0,0,0.24) !important;
  color: #ffffff !important;
  backdrop-filter: blur(16px) !important;
}

.bwg-hero-fixed .bwg-hero-badge span {
  font-size: clamp(0.95rem, 1.4vw, 1.2rem) !important;
  font-weight: 1000 !important;
  letter-spacing: 0.04em !important;
}

.bwg-hero-fixed + .bwg-matchcenter {
  position: relative !important;
  z-index: 5 !important;
  margin-top: -64px !important;
  padding-top: 0 !important;
}

/* Mobile Hero */
@media (max-width: 860px) {
  .bwg-hero-fixed {
    min-height: 720px !important;
  }

  .bwg-hero-fixed .bwg-hero-inner {
    min-height: 720px !important;
    display: block !important;
    padding-top: 92px !important;
    padding-bottom: 90px !important;
  }

  .bwg-hero-fixed h1 {
    font-size: clamp(3.15rem, 15vw, 5.4rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.075em !important;
  }

  .bwg-hero-fixed p {
    font-size: 1.02rem !important;
  }

  .bwg-hero-fixed .bwg-hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .bwg-hero-fixed .btn {
    width: 100% !important;
  }

  .bwg-hero-fixed .bwg-hero-badge {
    display: none !important;
  }

  .bwg-hero-fixed + .bwg-matchcenter {
    margin-top: -34px !important;
  }
}

