.fcs-football {
  --fcs-border: #e7e7e7;
  --fcs-bg: #ffffff;
  --fcs-soft: #f7f7f7;
  --fcs-text: #1f2933;
  --fcs-muted: #687385;
  --fcs-accent: #d71920;
  color: var(--fcs-text);
}

.fcs-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: end;
  margin: 0 0 1rem;
  padding: 1rem;
  background: var(--fcs-soft);
  border: 1px solid var(--fcs-border);
  border-radius: 12px;
}

.fcs-filter label {
  display: grid;
  gap: .35rem;
  min-width: 220px;
  margin: 0;
  font-weight: 600;
}

.fcs-filter span {
  font-size: .9rem;
  color: var(--fcs-muted);
}

.fcs-filter select {
  width: 100%;
  padding: .65rem .75rem;
  border: 1px solid var(--fcs-border);
  border-radius: 10px;
  background: #fff;
}

.fcs-loading {
  margin: .5rem 0;
  color: var(--fcs-muted);
}

.fcs-match-list {
  display: grid;
  gap: .7rem;
}

.fcs-date-group {
  margin-top: .4rem;
}

.fcs-date-heading {
  margin: .7rem 0 .2rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--fcs-text);
}

.fcs-match-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 1rem;
  padding: 1rem;
  background: var(--fcs-bg);
  border: 1px solid var(--fcs-border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.fcs-match-time {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: .15rem;
  color: var(--fcs-muted);
  font-weight: 700;
}

.fcs-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: .75rem;
  align-items: center;
  font-weight: 800;
}

.fcs-teams span:last-child {
  text-align: right;
}

.fcs-teams strong {
  min-width: 50px;
  text-align: center;
  padding: .25rem .55rem;
  border-radius: 999px;
  background: var(--fcs-soft);
  font-size: .95rem;
}

.fcs-teams strong.is-fixture {
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--fcs-muted);
}

.fcs-competition {
  margin-top: .45rem;
  color: var(--fcs-muted);
  font-size: .93rem;
}

.fcs-match-location {
  margin-top: .35rem;
  font-weight: 700;
  color: var(--fcs-text);
  font-size: .95rem;
}

.fcs-status {
  margin-top: .25rem;
  color: var(--fcs-muted);
  font-size: .9rem;
}

.fcs-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--fcs-border);
  border-radius: 14px;
}

.fcs-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.fcs-table th,
.fcs-table td {
  padding: .7rem .8rem;
  border-bottom: 1px solid var(--fcs-border);
  text-align: left;
  white-space: nowrap;
}

.fcs-table th {
  background: var(--fcs-soft);
  font-weight: 700;
}

.fcs-table tr:last-child td {
  border-bottom: 0;
}

.fcs-table .is-fcs-selected td {
  background: rgba(215, 25, 32, .08);
  font-weight: 700;
}

.fcs-standing-title {
  margin: 1rem 0 .75rem;
}

.fcs-empty,
.fcs-error {
  padding: 1rem;
  border: 1px solid var(--fcs-border);
  border-radius: 12px;
  background: var(--fcs-soft);
}

.fcs-error {
  border-color: rgba(215, 25, 32, .35);
}

@media (max-width: 640px) {
  .fcs-match-card {
    grid-template-columns: 1fr;
  }

  .fcs-match-time {
    justify-content: flex-start;
  }

  .fcs-teams {
    grid-template-columns: 1fr;
  }

  .fcs-teams span:last-child,
  .fcs-teams strong {
    text-align: left;
  }

  .fcs-teams strong {
    width: fit-content;
  }
}

.fcs-day-nav {
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  padding: .15rem .05rem .7rem;
  margin: 0 0 .4rem;
  scroll-snap-type: x proximity;
}

.fcs-day-button {
  flex: 0 0 auto;
  appearance: none;
  border: 1px solid var(--fcs-border);
  background: #fff;
  border-radius: 999px;
  padding: .45rem .8rem;
  font-weight: 700;
  color: var(--fcs-muted);
  cursor: pointer;
  scroll-snap-align: start;
}

.fcs-day-button:hover,
.fcs-day-button.is-active {
  color: #fff;
  background: var(--fcs-accent);
  border-color: var(--fcs-accent);
}

.fcs-status.is-important {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 8px;
    border-radius: 999px;
    font-weight: 700;
    background: #fff4e5;
    color: #9a4b00;
}

.fcs-table.footable {
    width: 100%;
}

/* v2.0: kompaktere FooTable-Tabelle mit sichtbaren Punkten und Details unter + */
.fcs-standing .fcs-table-wrap {
  overflow: hidden;
  background: #fff;
}

.fcs-standings-table {
  margin: 0 !important;
  table-layout: auto;
}

.fcs-standings-table th,
.fcs-standings-table td {
  padding: .55rem .65rem;
}

.fcs-standings-table th:nth-child(1),
.fcs-standings-table td:nth-child(1) {
  width: 70px;
}

.fcs-standings-table th:nth-child(3),
.fcs-standings-table td:nth-child(3),
.fcs-standings-table th:nth-child(4),
.fcs-standings-table td:nth-child(4),
.fcs-standings-table th:nth-child(5),
.fcs-standings-table td:nth-child(5) {
  width: 58px;
  text-align: center;
}

.fcs-standings-table .footable-detail-row td,
.fcs-standings-table tr.footable-detail-row td {
  background: #fafafa;
  white-space: normal;
}

.fcs-standings-table .footable-details {
  width: 100%;
  margin: .25rem 0;
}

.fcs-standings-table .footable-details th,
.fcs-standings-table .footable-details td {
  padding: .3rem .5rem;
  border-bottom: 1px solid var(--fcs-border);
}

.fcs-standings-table .footable-details tr:last-child th,
.fcs-standings-table .footable-details tr:last-child td {
  border-bottom: 0;
}


/* v2.1: keep Pkt visible in the first FooTable view */
.fcs-standing .fcs-table-wrap {
  overflow: hidden;
  background: #fff;
}

.fcs-standings-table {
  width: 100% !important;
  table-layout: fixed;
  font-size: .92rem;
}

.fcs-standings-table th,
.fcs-standings-table td {
  padding: .48rem .42rem;
}

.fcs-standings-table th:nth-child(1),
.fcs-standings-table td:nth-child(1) {
  width: 48px;
}

.fcs-standings-table th:nth-child(2),
.fcs-standings-table td:nth-child(2) {
  width: auto;
  white-space: normal;
}

.fcs-standings-table th:nth-child(3),
.fcs-standings-table td:nth-child(3),
.fcs-standings-table th:nth-child(4),
.fcs-standings-table td:nth-child(4),
.fcs-standings-table th:nth-child(5),
.fcs-standings-table td:nth-child(5) {
  width: 42px;
  min-width: 42px;
  text-align: center;
}

.fcs-standings-table th:nth-child(n+6),
.fcs-standings-table td:nth-child(n+6) {
  width: 0;
}

.fcs-standings-table .footable-toggle,
.fcs-standings-table .fooicon,
.fcs-standings-table .footable-toggle.fooicon {
  margin-right: .25rem;
}

@media (max-width: 480px) {
  .fcs-standings-table {
    font-size: .86rem;
  }

  .fcs-standings-table th,
  .fcs-standings-table td {
    padding: .42rem .32rem;
  }

  .fcs-standings-table th:nth-child(1),
  .fcs-standings-table td:nth-child(1) {
    width: 42px;
  }

  .fcs-standings-table th:nth-child(3),
  .fcs-standings-table td:nth-child(3),
  .fcs-standings-table th:nth-child(4),
  .fcs-standings-table td:nth-child(4),
  .fcs-standings-table th:nth-child(5),
  .fcs-standings-table td:nth-child(5) {
    width: 36px;
    min-width: 36px;
  }
}

/* v2.2: force compact standing columns so Pkt remains visible */
.fcs-standing .fcs-table-wrap {
  overflow: visible !important;
  background: #fff;
}

.fcs-standings-table,
.fcs-standings-table.footable {
  width: 100% !important;
  max-width: 100% !important;
  table-layout: fixed !important;
  border-collapse: collapse;
}

.fcs-standings-table *,
.fcs-standings-table *::before,
.fcs-standings-table *::after {
  box-sizing: border-box;
}

.fcs-standings-table col.fcs-col-rank { width: 56px !important; }
.fcs-standings-table col.fcs-col-sp { width: 38px !important; }
.fcs-standings-table col.fcs-col-td { width: 42px !important; }
.fcs-standings-table col.fcs-col-pkt { width: 44px !important; }
.fcs-standings-table col.fcs-col-team { width: auto !important; }
.fcs-standings-table col.fcs-col-detail { width: 0 !important; }

.fcs-standings-table th,
.fcs-standings-table td {
  padding: .48rem .32rem !important;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fcs-standings-table th:nth-child(1),
.fcs-standings-table td:nth-child(1) {
  width: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  white-space: nowrap;
}

.fcs-standings-table th:nth-child(2),
.fcs-standings-table td:nth-child(2) {
  width: auto !important;
  min-width: 0 !important;
  white-space: nowrap;
}

.fcs-standings-table th:nth-child(3),
.fcs-standings-table td:nth-child(3) {
  width: 38px !important;
  min-width: 38px !important;
  max-width: 38px !important;
  text-align: center !important;
}

.fcs-standings-table th:nth-child(4),
.fcs-standings-table td:nth-child(4) {
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  text-align: center !important;
}

.fcs-standings-table th:nth-child(5),
.fcs-standings-table td:nth-child(5) {
  width: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  text-align: center !important;
  display: table-cell !important;
  visibility: visible !important;
}

.fcs-standings-table th:nth-child(n+6),
.fcs-standings-table td:nth-child(n+6) {
  display: none !important;
}

.fcs-standings-table tr.footable-detail-row td,
.fcs-standings-table .footable-detail-row td {
  display: table-cell !important;
  width: auto !important;
  max-width: none !important;
}

.fcs-standings-table .footable-toggle,
.fcs-standings-table .fooicon,
.fcs-standings-table .footable-toggle.fooicon {
  margin-right: .18rem !important;
}

@media (max-width: 480px) {
  .fcs-standings-table {
    font-size: .84rem !important;
  }
  .fcs-standings-table col.fcs-col-rank { width: 48px !important; }
  .fcs-standings-table col.fcs-col-sp { width: 34px !important; }
  .fcs-standings-table col.fcs-col-td { width: 38px !important; }
  .fcs-standings-table col.fcs-col-pkt { width: 40px !important; }
  .fcs-standings-table th,
  .fcs-standings-table td {
    padding: .44rem .24rem !important;
  }
  .fcs-standings-table th:nth-child(1),
  .fcs-standings-table td:nth-child(1) {
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
  }
  .fcs-standings-table th:nth-child(3),
  .fcs-standings-table td:nth-child(3) {
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;
  }
  .fcs-standings-table th:nth-child(4),
  .fcs-standings-table td:nth-child(4) {
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
  }
  .fcs-standings-table th:nth-child(5),
  .fcs-standings-table td:nth-child(5) {
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
  }
}


/* v2.3: rounded FooTable container fix */
.fcs-standing .fcs-table-wrap {
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #fff !important;
  border: 1px solid var(--fcs-border) !important;
}

.fcs-standing .fcs-table-wrap .fcs-standings-table,
.fcs-standing .fcs-table-wrap .footable,
.fcs-standing .fcs-table-wrap table {
  border-radius: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

.fcs-standing .fcs-table-wrap .fcs-standings-table tbody tr:last-child td,
.fcs-standing .fcs-table-wrap .footable tbody tr:last-child td {
  border-bottom: 0 !important;
}

.fcs-standing .fcs-table-wrap .footable-detail-row td {
  border-bottom: 1px solid var(--fcs-border) !important;
}

.fcs-standing .fcs-table-wrap .footable-detail-row:last-child td {
  border-bottom: 0 !important;
}

/* v2.4: kompakte Homepage-Ansicht für [fcs_spiele view="home" limit="3"] */
.fcs-games--home,
.fcs-games--compact {
  --fcs-border: #dce8f7;
  --fcs-bg: #ffffff;
  --fcs-soft: #f4f8fd;
  --fcs-text: #061b3a;
  --fcs-muted: #50627c;
  --fcs-accent: #005eb8;
  --fcs-green: #12a35c;
}

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

.fcs-home-match-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 16px;
  align-items: stretch;
  min-height: 150px;
  padding: 18px;
  background: var(--fcs-bg);
  border: 1px solid var(--fcs-border);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 46, 101, .08);
}

.fcs-home-match-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef6ff 0%, #ffffff 100%);
  border: 1px solid var(--fcs-border);
  color: var(--fcs-accent);
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
}

.fcs-home-match-date span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.fcs-home-match-date strong {
  margin: 6px 0;
  font-size: 34px;
  line-height: .95;
  color: var(--fcs-text);
}

.fcs-home-match-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.fcs-home-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  color: var(--fcs-text);
  font-weight: 900;
  line-height: 1.2;
}

.fcs-home-teams span {
  min-width: 0;
}

.fcs-home-teams span:last-child {
  text-align: right;
}

.fcs-home-teams strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 34px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--fcs-soft);
  color: var(--fcs-accent);
  font-size: 13px;
  text-transform: uppercase;
}

.fcs-home-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 14px;
  color: var(--fcs-muted);
  font-size: 13px;
  font-weight: 700;
}

.fcs-home-competition {
  margin-top: 10px;
  color: var(--fcs-muted);
  font-size: 12px;
  font-weight: 700;
}

.fcs-empty--home {
  padding: 22px;
  text-align: center;
  background: #fff;
  border-color: var(--fcs-border);
  color: var(--fcs-muted);
  box-shadow: 0 18px 45px rgba(0, 46, 101, .06);
}

@media (max-width: 980px) {
  .fcs-home-matches {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .fcs-home-match-card {
    grid-template-columns: 1fr;
  }

  .fcs-home-match-date {
    min-height: 88px;
    flex-direction: row;
    gap: 10px;
  }

  .fcs-home-match-date strong {
    margin: 0;
    font-size: 30px;
  }

  .fcs-home-teams {
    grid-template-columns: 1fr;
  }

  .fcs-home-teams span:last-child {
    text-align: left;
  }

  .fcs-home-teams strong {
    width: fit-content;
  }
}


/* v2.5: robustere Startseiten-Karten und bessere Empty-Message */
.fcs-games--home .fcs-results,
.fcs-games--compact .fcs-results { width: 100%; }
.fcs-games--home .fcs-empty--home,
.fcs-games--compact .fcs-empty--home { border-radius: 18px; font-weight: 700; }
@media (min-width: 981px) and (max-width: 1180px) {
  .fcs-home-matches { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}


/* v2.6: lesbarere Homepage-Karten für lange Teamnamen/Resultate */
.fcs-games--home .fcs-home-matches,
.fcs-games--compact .fcs-home-matches {
  align-items: stretch;
}

.fcs-games--home .fcs-home-match-card,
.fcs-games--compact .fcs-home-match-card {
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 14px;
  min-height: 164px;
}

.fcs-games--home .fcs-home-teams,
.fcs-games--compact .fcs-home-teams {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 8px;
  font-size: 14px;
  line-height: 1.18;
  align-items: start;
}

.fcs-games--home .fcs-home-teams span,
.fcs-games--compact .fcs-home-teams span {
  overflow-wrap: anywhere;
  hyphens: auto;
}

.fcs-games--home .fcs-home-teams strong,
.fcs-games--compact .fcs-home-teams strong {
  min-width: 42px;
  min-height: 30px;
  padding: 4px 8px;
  font-size: 12px;
  white-space: nowrap;
}

.fcs-games--home .fcs-home-meta,
.fcs-games--compact .fcs-home-meta {
  margin-top: 10px;
  gap: 6px 10px;
  font-size: 12px;
}

.fcs-games--home .fcs-home-competition,
.fcs-games--compact .fcs-home-competition {
  margin-top: 9px;
  font-size: 11px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 560px) {
  .fcs-games--home .fcs-home-match-card,
  .fcs-games--compact .fcs-home-match-card { grid-template-columns: 1fr; }
  .fcs-games--home .fcs-home-teams,
  .fcs-games--compact .fcs-home-teams { grid-template-columns: 1fr; }
}


/* v2.7: Startseiten-Matchcenter weiter verdichtet */
.fcs-games--home .fcs-home-match-card,
.fcs-games--compact .fcs-home-match-card {
  padding: 16px;
  gap: 13px;
  min-height: 152px;
}

.fcs-games--home .fcs-home-match-date,
.fcs-games--compact .fcs-home-match-date {
  min-height: 118px;
}

.fcs-games--home .fcs-home-teams,
.fcs-games--compact .fcs-home-teams {
  font-size: 13px;
  line-height: 1.2;
  gap: 8px;
  align-items: center;
}

.fcs-games--home .fcs-home-teams span,
.fcs-games--compact .fcs-home-teams span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
}

.fcs-games--home .fcs-home-teams strong,
.fcs-games--compact .fcs-home-teams strong {
  min-width: 42px;
  min-height: 30px;
  font-size: 12px;
}

.fcs-games--home .fcs-home-meta,
.fcs-games--compact .fcs-home-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin-top: 11px;
  font-size: 11.5px;
  line-height: 1.35;
}

.fcs-games--home .fcs-home-meta span,
.fcs-games--compact .fcs-home-meta span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fcs-games--home .fcs-home-competition,
.fcs-games--compact .fcs-home-competition {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.3;
  -webkit-line-clamp: 1;
}


/* v2.8: mobile Homepage-Matchcenter zentriert und kompakter */
@media (max-width: 560px) {
  .fcs-games--home .fcs-home-matches,
  .fcs-games--compact .fcs-home-matches {
    gap: 14px;
  }

  .fcs-games--home .fcs-home-match-card,
  .fcs-games--compact .fcs-home-match-card {
    padding: 16px !important;
    text-align: center;
    align-items: center;
    justify-items: center;
    min-height: auto !important;
  }

  .fcs-games--home .fcs-home-match-date,
  .fcs-games--compact .fcs-home-match-date {
    width: 100%;
    max-width: 260px;
    min-height: 62px !important;
    margin: 0 auto 4px;
    flex-direction: row;
    gap: 8px;
    border-radius: 16px;
  }

  .fcs-games--home .fcs-home-match-date span,
  .fcs-games--compact .fcs-home-match-date span {
    font-size: 11px;
  }

  .fcs-games--home .fcs-home-match-date strong,
  .fcs-games--compact .fcs-home-match-date strong {
    font-size: 24px !important;
    margin: 0 !important;
  }

  .fcs-games--home .fcs-home-match-content,
  .fcs-games--compact .fcs-home-match-content {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .fcs-games--home .fcs-home-teams,
  .fcs-games--compact .fcs-home-teams {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 7px;
    font-size: 17px;
    line-height: 1.18;
  }

  .fcs-games--home .fcs-home-teams span,
  .fcs-games--compact .fcs-home-teams span,
  .fcs-games--home .fcs-home-teams span:last-child,
  .fcs-games--compact .fcs-home-teams span:last-child {
    text-align: center !important;
    -webkit-line-clamp: 2;
  }

  .fcs-games--home .fcs-home-teams strong,
  .fcs-games--compact .fcs-home-teams strong {
    width: auto;
    min-width: 48px;
    min-height: 32px;
    font-size: 13px;
  }

  .fcs-games--home .fcs-home-meta,
  .fcs-games--compact .fcs-home-meta {
    justify-items: center;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
  }

  .fcs-games--home .fcs-home-meta span,
  .fcs-games--compact .fcs-home-meta span {
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }

  .fcs-games--home .fcs-home-competition,
  .fcs-games--compact .fcs-home-competition {
    text-align: center;
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
}


/* v2.9: Spielcenter-Ansicht für die volle Spielplan-Seite */
.fcs-spielcenter {
  --fcs-blue:#0057b8;
  --fcs-dark:#061c3d;
  --fcs-border:#dce7f4;
  --fcs-soft:#f4f7fb;
  --fcs-text:#0b2345;
  --fcs-muted:#5b6b82;
  font-family:Poppins,Arial,sans-serif;
}
.fcs-spielcenter .fcs-center-filter {
  display:grid;
  gap:18px;
  padding:22px;
  border:1px solid var(--fcs-border);
  background:#fff;
  border-radius:22px;
  box-shadow:0 18px 50px rgba(6,28,61,.08);
  margin:0 0 22px;
}
.fcs-center-tabs {
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.fcs-center-tab {
  appearance:none;
  border:1px solid var(--fcs-border);
  background:#f7fbff;
  color:var(--fcs-blue);
  border-radius:999px;
  padding:10px 16px;
  font-weight:900;
  cursor:pointer;
}
.fcs-center-tab.is-active,
.fcs-center-tab:hover {
  color:#fff;
  background:var(--fcs-blue);
  border-color:var(--fcs-blue);
}
.fcs-center-filter-grid {
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:14px;
}
.fcs-spielcenter .fcs-center-filter label {
  min-width:0;
  padding:0;
  font-weight:900;
}
.fcs-spielcenter .fcs-center-filter select {
  min-height:48px;
  border-radius:12px;
  border-color:var(--fcs-border);
}
.fcs-center-head {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin:12px 0 14px;
}
.fcs-center-head h3 {
  margin:0;
  color:var(--fcs-text);
  font-size:28px;
  line-height:1.1;
  font-weight:900;
}
.fcs-center-head span {
  color:var(--fcs-muted);
  font-weight:800;
  background:#eef6ff;
  border-radius:999px;
  padding:7px 12px;
}
.fcs-center-list {
  display:grid;
  gap:12px;
}
.fcs-center-match-card {
  display:grid;
  grid-template-columns:92px 1fr;
  gap:18px;
  align-items:center;
  background:#fff;
  border:1px solid var(--fcs-border);
  border-radius:20px;
  padding:16px;
  box-shadow:0 10px 30px rgba(6,28,61,.06);
}
.fcs-center-date {
  min-height:96px;
  border-radius:16px;
  background:#edf6ff;
  border:1px solid #d4e7fb;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:var(--fcs-blue);
  text-transform:uppercase;
  font-weight:900;
  line-height:1;
}
.fcs-center-date strong {
  display:block;
  margin:5px 0;
  color:var(--fcs-text);
  font-size:32px;
  line-height:.95;
  letter-spacing:-.04em;
}
.fcs-center-date span {
  font-size:13px;
  letter-spacing:.04em;
}
.fcs-center-main {
  min-width:0;
}
.fcs-center-teams {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  gap:14px;
  align-items:center;
  color:var(--fcs-text);
  font-weight:900;
  font-size:20px;
  line-height:1.14;
}
.fcs-center-teams span {
  min-width:0;
  overflow-wrap:anywhere;
}
.fcs-center-teams span:last-child {
  text-align:right;
}
.fcs-center-teams strong {
  min-width:54px;
  text-align:center;
  background:#f3f8ff;
  color:var(--fcs-blue);
  border-radius:999px;
  padding:8px 10px;
  font-size:15px;
  line-height:1;
}
.fcs-center-meta {
  display:flex;
  flex-wrap:wrap;
  gap:8px 14px;
  margin-top:12px;
  color:var(--fcs-muted);
  font-weight:800;
  font-size:14px;
}
.fcs-center-badge {
  color:#fff!important;
  background:var(--fcs-blue);
  padding:4px 9px;
  border-radius:999px;
}
.fcs-empty--center {
  background:#fff;
  border-color:var(--fcs-border);
  border-radius:18px;
  padding:20px;
}
@media (max-width: 900px) {
  .fcs-center-filter-grid { grid-template-columns:1fr; }
  .fcs-center-match-card { grid-template-columns:1fr; text-align:center; }
  .fcs-center-date { min-height:82px; max-width:100%; }
  .fcs-center-teams { grid-template-columns:1fr; gap:8px; font-size:20px; text-align:center; }
  .fcs-center-teams span:last-child { text-align:center; }
  .fcs-center-teams strong { margin:0 auto; }
  .fcs-center-meta { justify-content:center; }
  .fcs-center-head { align-items:flex-start; flex-direction:column; }
}


/* v2.10: flachere Spielcenter-Liste + 5 Filter */
.fcs-spielcenter .fcs-center-filter {
  box-shadow:none;
  border-radius:18px;
  padding:18px;
  margin-bottom:18px;
}
.fcs-spielcenter .fcs-center-filter-grid {
  grid-template-columns:1.45fr .9fr .9fr .9fr .9fr;
  gap:12px;
}
.fcs-center-head { margin:8px 0 12px; }
.fcs-center-head h3 { font-size:24px; }
.fcs-center-list { gap:8px; }
.fcs-center-match-card {
  grid-template-columns:96px 1fr;
  gap:14px;
  padding:10px 14px;
  border-radius:14px;
  box-shadow:none;
}
.fcs-center-date {
  min-height:64px;
  border-radius:12px;
  padding:8px 6px;
}
.fcs-center-date strong {
  font-size:25px;
  margin:2px 0;
  letter-spacing:-.03em;
}
.fcs-center-date span { font-size:11px; }
.fcs-center-date em {
  display:block;
  margin-top:3px;
  font-style:normal;
  color:#5b6b82;
  font-size:11px;
  font-weight:900;
}
.fcs-center-teams {
  font-size:17px;
  gap:10px;
}
.fcs-center-teams strong {
  min-width:46px;
  font-size:13px;
  padding:6px 8px;
}
.fcs-center-meta {
  margin-top:7px;
  font-size:12px;
  gap:5px 10px;
}
.fcs-center-badge { padding:3px 8px; }
@media (max-width: 1120px) {
  .fcs-spielcenter .fcs-center-filter-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 900px) {
  .fcs-spielcenter .fcs-center-filter-grid { grid-template-columns:1fr; }
  .fcs-center-match-card { grid-template-columns:1fr; padding:14px; }
  .fcs-center-date { min-height:56px; }
  .fcs-center-teams { grid-template-columns:1fr; }
}
