/* ClubForge v111 – durchgehend steuerbare Livekonferenz */

.live-conference.continuous {
  position: relative;
  overflow: hidden;
}

.live-conference.continuous::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2de078 24%, #8affb8 50%, #2de078 76%, transparent);
  opacity: .8;
}

.live-match-progress {
  position: relative;
  height: 28px;
  margin: 0 6px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  box-shadow: inset 0 0 0 1px rgba(190, 224, 203, .08);
}

.live-match-progress > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(29, 198, 100, .36), rgba(45, 224, 120, .74));
  box-shadow: 0 0 20px rgba(45, 224, 120, .18);
  transition: width .8s linear;
}

.live-match-progress > i {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 2px;
  border-radius: 2px;
  background: rgba(234, 255, 240, .48);
}

.live-match-progress small {
  position: absolute;
  top: 50%;
  z-index: 2;
  color: #d9eee0;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-50%);
}

.live-match-progress .kickoff { left: 10px; }
.live-match-progress .halftime { left: 50%; transform: translate(-50%, -50%); }
.live-match-progress .fulltime { right: 10px; }

.live-halftime-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 194, 76, .28);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255, 194, 76, .12), rgba(255, 194, 76, .035));
  color: #ffe2a0;
  font-size: 10px;
  letter-spacing: .05em;
}

.live-halftime-banner span {
  font-variant-numeric: tabular-nums;
  font-weight: 850;
}

.live-control-deck {
  position: relative;
}

.live-control-status,
.live-tactics-cooldown,
.live-pending-change {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 11px;
  border: 1px solid rgba(45, 224, 120, .14);
  border-radius: 9px;
  background: rgba(2, 14, 7, .34);
}

.live-control-status strong,
.live-tactics-cooldown b,
.live-pending-change b {
  color: #70f3a7;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .07em;
}

.live-control-status span,
.live-tactics-cooldown span,
.live-pending-change span {
  color: #91a79a;
  font-size: 9px;
  line-height: 1.4;
  text-align: right;
}

.live-control-status.halftime {
  border-color: rgba(255, 194, 76, .22);
  background: rgba(255, 194, 76, .055);
}

.live-tactics-grid.locked select {
  cursor: not-allowed;
  opacity: .58;
}

.live-tactics-cooldown {
  border-color: rgba(255, 194, 76, .2);
  background: rgba(255, 194, 76, .05);
}

.live-tactics-cooldown b { color: #ffd278; }

.live-pending-change {
  border-color: rgba(94, 178, 255, .2);
  background: rgba(94, 178, 255, .055);
}

.live-pending-change b { color: #81c7ff; }

.live-intervention-actions .primary-button:disabled {
  cursor: not-allowed;
  filter: saturate(.4);
  opacity: .5;
}

@media (max-width: 620px) {
  .live-control-status,
  .live-tactics-cooldown,
  .live-pending-change {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .live-control-status span,
  .live-tactics-cooldown span,
  .live-pending-change span {
    text-align: left;
  }
}

/* v112: mehr Liveticker-Inhalt, Broadcast-Statistiken und Live-Aufstellung */

.live-score-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: -2px 2px 6px;
}

.live-score-details article {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid rgba(207, 244, 219, .14);
  border-radius: 11px;
  background:
    linear-gradient(180deg, rgba(4, 16, 9, .88), rgba(2, 9, 5, .92)),
    radial-gradient(circle at 0 0, rgba(45, 224, 120, .14), transparent 11rem);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .045);
}

.live-score-details article > span,
.live-stats-board header span {
  display: block;
  margin-bottom: 7px;
  color: #70f3a7;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.live-score-details div {
  display: grid;
  gap: 5px;
}

.live-score-details small,
.live-score-details em {
  overflow: hidden;
  color: #d9eee0;
  font-size: 10px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-score-details em {
  color: #6f8377;
}

.live-broadcast-grid {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(420px, 1.35fr);
  gap: 12px;
}

.live-stats-board,
.live-lineups-board > article {
  border: 1px solid rgba(207, 244, 219, .14);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(4, 16, 9, .88), rgba(2, 9, 5, .94)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .026) 0 1px, transparent 1px 30px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.live-stats-board {
  padding: 13px;
}

.live-stats-board header,
.live-lineups-board header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.live-stats-board header b,
.live-lineups-board header b {
  color: #9eb1a5;
  font-size: 10px;
  font-weight: 850;
}

.live-stat-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
}

.live-stat-row b {
  color: #f3fff6;
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.live-stat-row div {
  display: grid;
  gap: 4px;
}

.live-stat-row span {
  color: #8fa79a;
  font-size: 9px;
  font-weight: 850;
  text-align: center;
  text-transform: uppercase;
}

.live-stat-row i {
  display: flex;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.live-stat-row em,
.live-stat-row strong {
  display: block;
  min-width: 7%;
}

.live-stat-row em {
  background: linear-gradient(90deg, #2de078, #8affb8);
}

.live-stat-row strong {
  background: linear-gradient(90deg, #81c7ff, #4a8ddf);
}

.live-lineups-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.live-lineups-board > article {
  min-width: 0;
  padding: 12px;
}

.live-lineups-board header span {
  display: block;
  color: #70f3a7;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
}

.live-lineups-board header strong {
  display: block;
  overflow: hidden;
  color: #f4fff7;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-lineup-pitch {
  position: relative;
  display: grid;
  grid-template-rows: repeat(4, minmax(38px, auto));
  gap: 7px;
  min-height: 246px;
  padding: 15px 12px;
  overflow: hidden;
  border: 1px solid rgba(237, 255, 241, .34);
  border-radius: 11px;
}

.live-lineup-pitch::before {
  position: absolute;
  inset: 18% 10%;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.live-lineup-line {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.live-lineup-line > span {
  color: rgba(239, 255, 243, .72);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.live-lineup-line > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.live-lineup-line button {
  max-width: 76px;
  min-width: 56px;
  padding: 5px 6px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 9px;
  background: rgba(2, 10, 5, .72);
  color: #f5fff7;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
}

.live-lineup-line button b,
.live-lineup-line button small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-lineup-line button b {
  color: #70f3a7;
  font-size: 8px;
}

.live-lineup-line button small {
  font-size: 9px;
  font-weight: 800;
}

@media (max-width: 1050px) {
  .live-broadcast-grid,
  .live-score-details {
    grid-template-columns: 1fr 1fr;
  }

  .live-lineups-board {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .live-broadcast-grid,
  .live-score-details {
    grid-template-columns: 1fr;
  }

  .live-lineup-pitch {
    min-height: 220px;
  }
}
