/**
 * Liveticker – Premium BVB Design
 * Basis: Ostborussen (Schwarz #000, Gelb #FDE100)
 * Eyecatcher: Glasmorphism, Pulse LIVE, animierte Scores, BVB-Tor-Highlight
 */

/* ----- Variables (Basis Ostborussen) ----- */
.liveticker-page {
    --lt-yellow: #FDE100;
    --lt-black: #000;
    --lt-bg: #0A0A0A;
    --lt-card: rgba(26, 26, 26, 0.85);
    --lt-glass: rgba(255, 255, 255, 0.06);
    --lt-border: rgba(253, 225, 0, 0.25);
    --lt-glow: 0 0 24px rgba(253, 225, 0, 0.35);
    --lt-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --lt-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- Page & Container ----- */
.liveticker-page {
    padding: 1rem 0 4rem;
    min-height: 60vh;
}

.liveticker-page .container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

.lt-notification-wrap {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.lt-push-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    background: var(--lt-glass);
    border: 1px solid var(--lt-border);
    border-radius: 999px;
    color: #fff;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--lt-transition);
}

.lt-push-toggle:hover {
    background: rgba(253, 225, 0, 0.15);
    border-color: var(--lt-yellow);
    transform: scale(1.02);
}

.lt-push-toggle[aria-pressed="true"] {
    background: rgba(253, 225, 0, 0.2);
    border-color: var(--lt-yellow);
    box-shadow: var(--lt-glow);
}

.lt-push-state {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Tooltip beim Hover/Focus auf Benachrichtigungen-Button */
.lt-push-tooltip-wrap {
    position: relative;
}
.lt-notification-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 0.5rem);
    transform: translateX(-50%);
    width: 280px;
    max-width: 90vw;
    padding: 0.6rem 0.75rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(20, 20, 20, 0.98);
    border: 1px solid var(--lt-border);
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 10;
}
.lt-push-tooltip-wrap:hover .lt-notification-tooltip,
.lt-push-tooltip-wrap:focus-within .lt-notification-tooltip {
    opacity: 1;
    visibility: visible;
}
.lt-notification-tooltip.lt-hidden { display: none !important; }

/* ----- Loading ----- */
.lt-loading {
    text-align: center;
    padding: 3rem 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.lt-spinner {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    border: 3px solid var(--lt-glass);
    border-top-color: var(--lt-yellow);
    border-radius: 50%;
    animation: lt-spin 0.9s linear infinite;
}

@keyframes lt-spin {
    to { transform: rotate(360deg); }
}

.lt-hidden { display: none !important; }

.lt-error {
    padding: 1rem;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 8px;
    color: #f8a0a0;
    margin-bottom: 1rem;
}

/* ----- LIVE Match Header (Premium) ----- */
.lt-live-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: #c0392b;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}

.lt-pulse {
    animation: lt-pulse 1.5s ease-in-out infinite;
}

@keyframes lt-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(192, 57, 43, 0.5); }
    50% { opacity: 0.95; }
    75% { box-shadow: 0 0 0 8px rgba(192, 57, 43, 0); }
}

.lt-match-header {
    padding: 1.25rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--lt-border);
    margin-bottom: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: lt-fadeIn 0.5s var(--lt-ease);
}

@keyframes lt-fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header wie matches-Modal: [Team Logo+Name] [Score+Minute] [Team Logo+Name] */
.lt-teams-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.5rem 0;
    margin-bottom: 0;
}
.lt-teams-modal .lt-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100px;
    min-width: 0;
}
.lt-teams-modal .lt-team-name {
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    word-break: break-word;
    line-height: 1.2;
}
.lt-teams-modal .lt-team-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.lt-teams-modal .lt-score-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
    margin: 0;
}
.lt-teams-modal .lt-score-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-variant-numeric: tabular-nums;
}
.lt-teams-modal .lt-score-sep {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}
.lt-teams-modal .lt-score-num {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    min-width: 1.5em;
    text-align: center;
    transition: transform 0.3s var(--lt-ease);
}
.lt-teams-modal .lt-score-num.lt-updated {
    animation: lt-scorePop 0.5s var(--lt-ease);
}
@keyframes lt-scorePop {
    0% { transform: scale(1.2); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.lt-teams-modal .lt-minute {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

/* Legacy (Fallback-Ansicht etc.) */
.lt-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    margin-bottom: 0.5rem;
}
.lt-team {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    flex: 1;
    min-width: 0;
}
.lt-team-home { justify-content: flex-end; padding-right: 0.75rem; }
.lt-team-away { justify-content: flex-start; padding-left: 0.75rem; }
.lt-team-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lt-team-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.lt-score-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    font-variant-numeric: tabular-nums;
}
.lt-score-num {
    font-size: clamp(2rem, 6vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    min-width: 1.8em;
    text-align: center;
    transition: transform 0.3s var(--lt-ease);
}
.lt-score-num.lt-updated { animation: lt-scorePop 0.5s var(--lt-ease); }
.lt-score-sep { font-size: 1.5rem; color: rgba(255, 255, 255, 0.6); }
.lt-minute { font-size: 0.85rem; color: rgba(255, 255, 255, 0.7); }

.lt-refresh-info {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.lt-overview-card {
    padding: 1rem;
    background: var(--lt-glass);
    border-radius: 8px;
    border: 1px solid var(--lt-border);
}
.lt-overview-league { font-size: 0.9rem; color: var(--lt-yellow); margin: 0 0 0.5rem; }
.lt-overview-score { font-size: 1.1rem; font-weight: 700; margin: 0 0 0.75rem; }
.lt-overview-meta { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin: 0.35rem 0; }
.lt-overview-meta span { color: rgba(255,255,255,0.5); margin-right: 0.5rem; }

.lt-odds-note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

/* ----- Tabs ----- */
.lt-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--lt-border);
    padding-bottom: 0.5rem;
}

.lt-tab {
    padding: 0.5rem 0.85rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--lt-transition);
}

.lt-tab:hover {
    background: var(--lt-glass);
    color: #fff;
}

.lt-tab.active {
    background: rgba(253, 225, 0, 0.2);
    color: var(--lt-yellow);
    font-weight: 600;
}

.lt-panels { position: relative; }

.lt-panel {
    display: none;
    padding: 1rem 0;
    animation: lt-fadeIn 0.35s var(--lt-ease);
}

.lt-panel.active { display: block; }

/* ----- Events Timeline (Sliding) ----- */
.lt-events-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lt-event {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0.85rem;
    background: var(--lt-glass);
    border-radius: 8px;
    border: 1px solid transparent;
    transition: var(--lt-transition);
    animation: lt-slideIn 0.4s var(--lt-ease);
}

@keyframes lt-slideIn {
    from { opacity: 0; transform: translateX(-12px); }
    to { opacity: 1; transform: translateX(0); }
}

.lt-event:hover {
    border-color: var(--lt-border);
    background: rgba(255, 255, 255, 0.08);
}

.lt-event.lt-bvb-goal {
    border-color: var(--lt-yellow);
    background: rgba(253, 225, 0, 0.12);
    box-shadow: 0 0 16px rgba(253, 225, 0, 0.2);
}

.lt-event-min {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: var(--lt-yellow);
    min-width: 2.5rem;
}

.lt-event-detail { flex: 1; }
.lt-event-type { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; }
.lt-event-player { font-weight: 600; }

/* ----- Statistics Bars ----- */
.lt-stats-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.lt-stats-label {
    width: 100px;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.lt-stats-bars {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lt-stats-bar-wrap {
    flex: 1;
    height: 8px;
    background: var(--lt-glass);
    border-radius: 4px;
    overflow: hidden;
}

.lt-stats-bar {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s var(--lt-ease);
}

.lt-stats-bar.home { background: linear-gradient(90deg, var(--lt-yellow), #c9a961); }
.lt-stats-bar.away { background: linear-gradient(90deg, #444, #666); }

.lt-stats-val {
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    min-width: 2rem;
    text-align: right;
}

/* ----- Lineups ----- */
.lt-lineup-team {
    margin-bottom: 1.5rem;
}

.lt-lineup-team h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--lt-yellow);
}

.lt-lineup-list { display: flex; flex-direction: column; gap: 0.35rem; }
.lt-lineup-player {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ----- Fallback Sections ----- */
.lt-section {
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--lt-border);
    margin-bottom: 1.25rem;
    backdrop-filter: blur(8px);
    animation: lt-fadeIn 0.5s var(--lt-ease);
}

.lt-section-title {
    font-size: 1rem;
    color: var(--lt-yellow);
    margin-bottom: 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid var(--lt-border);
}

.lt-fallback-match {
    min-height: 60px;
}

.lt-fallback-match .lt-team { font-size: 0.9rem; }
.lt-fallback-match .lt-score-num { font-size: 1.5rem; }

/* Countdown unter Nächstes Spiel (wie Startseite) */
.lt-countdown-wrap {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--lt-border);
}

.lt-countdown-wrap .countdown {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.lt-countdown-wrap .countdown-item {
    min-width: 56px;
    text-align: center;
    padding: 0.5rem 0.6rem;
    background: var(--lt-glass);
    border-radius: 8px;
    border: 1px solid var(--lt-border);
}

.lt-countdown-wrap .countdown-value {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--lt-yellow);
    font-variant-numeric: tabular-nums;
}

.lt-countdown-wrap .countdown-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.lt-countdown-wrap .countdown-expired {
    text-align: center;
    color: var(--lt-yellow);
    font-weight: 600;
}

/* ----- BVB TOR Banner ----- */
.lt-bvb-goal-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--lt-black) 0%, #1a1a1a 100%);
    border: 3px solid var(--lt-yellow);
    border-radius: 12px;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--lt-yellow);
    letter-spacing: 0.05em;
    box-shadow: var(--lt-glow), 0 0 60px rgba(253, 225, 0, 0.3);
    animation: lt-bannerIn 0.4s var(--lt-ease), lt-bannerPulse 0.6s ease 0.4s 2;
}

@keyframes lt-bannerIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes lt-bannerPulse {
    0%, 100% { box-shadow: var(--lt-glow), 0 0 60px rgba(253, 225, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(253, 225, 0, 0.6), 0 0 80px rgba(253, 225, 0, 0.4); }
}

/* ----- Raw JSON ----- */
.lt-raw-pre {
    background: #111;
    padding: 1rem;
    border-radius: 8px;
    overflow: auto;
    font-size: 0.75rem;
    max-height: 60vh;
    border: 1px solid var(--lt-border);
}

/* ----- Empty state ----- */
.lt-empty {
    text-align: center;
    padding: 2rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ----- Spielverlauf: Vertikale Timeline (wie Saison-Modal) ----- */
.liveticker-page .timeline-vertical-wrap { padding: 0.5rem 0 1rem; }
.liveticker-page .timeline-vertical {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    min-height: 120px;
}
.liveticker-page .timeline-vertical-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255,255,255,0.25);
    transform: translateX(-50%);
    z-index: 0;
}
.liveticker-page .timeline-vertical-nodes {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
}
.liveticker-page .timeline-vertical-node {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    min-height: 56px;
    margin: 0.25rem 0;
}
.liveticker-page .timeline-vertical-node-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    max-width: 45%;
}
.liveticker-page .timeline-vertical-node-side.left { align-items: flex-end; padding-right: 0.75rem; }
.liveticker-page .timeline-vertical-node-side.right { align-items: flex-start; padding-left: 0.75rem; }
.liveticker-page .timeline-vertical-node-minute {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.35);
    background: #0d0d0d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}
.liveticker-page .timeline-event-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 140px;
}
.liveticker-page .timeline-event-icon-wrap {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.liveticker-page .timeline-event-icon-wrap.icon-card-yellow {
    background: #eab308;
    border-radius: 2px;
    width: 18px;
    height: 24px;
}
.liveticker-page .timeline-event-icon-wrap.icon-card-red {
    background: #dc2626;
    border-radius: 2px;
    width: 18px;
    height: 24px;
}
.liveticker-page .timeline-event-icon-wrap.icon-subst {
    display: flex;
    gap: 1px;
    align-items: center;
}
.liveticker-page .timeline-event-icon-wrap .arrow-out {
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 8px solid #dc2626;
}
.liveticker-page .timeline-event-icon-wrap .arrow-in {
    width: 0; height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #14b8a6;
}
.liveticker-page .timeline-event-player {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    line-height: 1.2;
}
.liveticker-page .timeline-event-team {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.liveticker-page .timeline-jerseys {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    width: 100%;
}
.liveticker-page .timeline-jersey-group { display: flex; flex-direction: column; align-items: center; gap: 0.35rem; }
.liveticker-page .timeline-jersey {
    width: 32px;
    height: 40px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.25);
}
.liveticker-page .timeline-jersey.bvb {
    background: linear-gradient(90deg, #1a1a1a 50%, var(--lt-yellow) 50%);
}
.liveticker-page .timeline-jersey.opponent {
    background: linear-gradient(90deg, #4b5563 50%, #9ca3af 50%);
}
.liveticker-page .timeline-jersey-label {
    font-size: 0.6rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    max-width: 90px;
    text-align: center;
}

.liveticker-page .timeline-node-marker {
    min-height: 40px;
}
.liveticker-page .timeline-node-marker .timeline-minute-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
}
.liveticker-page .timeline-node-end .timeline-minute-label { color: rgba(255,255,255,0.4); }
.liveticker-page .timeline-node-start .timeline-minute-label { color: rgba(255,255,255,0.4); }
.liveticker-page .timeline-node-ht .timeline-minute-label { color: rgba(255,255,255,0.5); }

/* ----- Aufstellung: Feld + Formation (wie Saison-Modal) ----- */
.liveticker-page .formation-single-wrap { margin-bottom: 1.5rem; }
.liveticker-page .formation-single-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    padding: 0 0.25rem;
}
.liveticker-page .formation-single-team { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.95); }
.liveticker-page .formation-single-formation { font-size: 0.7rem; color: var(--lt-yellow); text-transform: uppercase; }
.liveticker-page .formation-pitch {
    position: relative;
    width: 100%;
    aspect-ratio: 1.5;
    min-height: 320px;
    max-height: 520px;
    background-color: #1a472a;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.25);
    overflow: hidden;
}
.liveticker-page .formation-pitch:not([style*="background-image"]) {
    background-image: repeating-linear-gradient(180deg, #1a472a 0px, #1a472a 8px, #1e5630 8px, #1e5630 16px);
}
.liveticker-page .formation-pitch-player {
    position: absolute;
    width: 28px;
    height: 34px;
    border-radius: 5px 5px 8px 8px;
    border: 1px solid rgba(0,0,0,0.3);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 2px 4px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    color: #fff;
    transform: translate(-50%, 50%);
    z-index: 2;
    overflow: hidden;
}
.liveticker-page .formation-pitch-player.has-photo { width: 44px; height: 52px; padding: 0; }
.liveticker-page .formation-pitch-player.has-photo .formation-pitch-player-photo {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.liveticker-page .formation-pitch-player-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.liveticker-page .formation-pitch-player.bvb {
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 30%, #1a1a1a 50%, var(--lt-yellow) 50%, #e5c635 100%);
}
.liveticker-page .formation-pitch-player.opponent {
    background: linear-gradient(180deg, #5b6570 0%, #4b5563 30%, #4b5563 50%, #8b95a0 50%, #7a8590 100%);
}
.liveticker-page .formation-pitch-player-subbed-off {
    opacity: 0.7;
}
.liveticker-page .formation-pitch-player-subbed-off::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(255,255,255,0.5);
    border-radius: inherit;
    pointer-events: none;
}
.liveticker-page .lineup-two-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 600px) { .liveticker-page .lineup-two-cols { grid-template-columns: 1fr; } }
.liveticker-page .lineup-team-block {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.liveticker-page .lineup-team-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.liveticker-page .lineup-team-name { font-weight: 700; font-size: 0.9rem; color: rgba(255,255,255,0.95); }
.liveticker-page .lineup-formation { font-size: 0.8rem; color: var(--lt-yellow); }
.liveticker-page .lineup-section { margin-bottom: 1.5rem; }
.liveticker-page .lineup-section-title {
    font-size: 0.75rem;
    color: var(--lt-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.liveticker-page .lineup-row { display: flex; padding: 0.4rem 0; font-size: 0.85rem; }
.liveticker-page .lineup-player { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.liveticker-page .lineup-subst { font-size: 0.75rem; color: rgba(255,255,255,0.6); font-weight: normal; }
.liveticker-page .lineup-subst-out { color: rgba(255,200,100,0.9); }
.liveticker-page .lineup-subst-in { color: rgba(150,255,150,0.9); }
.liveticker-page .lineup-card { font-size: 0.75rem; font-weight: normal; margin-left: 0.25rem; }
.liveticker-page .lineup-card-yellow { color: #facc15; }
.liveticker-page .lineup-card-red { color: #ef4444; }
.liveticker-page .lineup-goal { font-size: 0.75rem; color: var(--lt-yellow); margin-left: 0.25rem; }
.liveticker-page .lineup-number {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ----- Statistik: Alle Werte (wie Saison-Modal stat-row) ----- */
.liveticker-page .stats-list .stat-row {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.liveticker-page .stats-list .stat-row:last-child { border-bottom: none; }
.liveticker-page .stat-value {
    width: 50px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}
.liveticker-page .stat-bar-container {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.5rem;
}
.liveticker-page .stat-bar-wrapper {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}
/* BVB immer gelb, Gegner immer rot (unabhängig von Heim/Auswärts) */
.liveticker-page .stat-bar-bvb { display: flex; justify-content: flex-end; }
.liveticker-page .stat-bar-opponent { display: flex; justify-content: flex-start; }
.liveticker-page .stat-bar-bvb .stat-bar { background: var(--lt-yellow); }
.liveticker-page .stat-bar-opponent .stat-bar { background: #ef4444; }
.liveticker-page .stat-bar { height: 100%; border-radius: 3px; transition: width 0.5s ease; }
.liveticker-page .stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100px;
    text-align: center;
}

/* ----- Odds table ----- */
.liveticker-page .odds-wrap .odds-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.liveticker-page .odds-wrap .odds-table th,
.liveticker-page .odds-wrap .odds-table td { padding: 0.5rem 0.6rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.liveticker-page .odds-wrap .odds-book { color: var(--lt-yellow); }

/* ----- Mobile ----- */
@media (max-width: 640px) {
    .lt-tabs { gap: 0.25rem; }
    .lt-tab { padding: 0.4rem 0.6rem; font-size: 0.8rem; }
    .lt-match-header { padding: 1rem 0.75rem; }
    .lt-teams-modal { gap: 0.75rem; padding: 0.25rem 0; }
    .lt-teams-modal .lt-team { width: 80px; }
    .lt-teams-modal .lt-team-logo { width: 40px; height: 40px; }
    .lt-teams-modal .lt-team-name { font-size: 0.75rem; }
    .lt-teams-modal .lt-score-num { font-size: 1.75rem; }
}
