.football-match-card {
    background: #2d2d2d;
    padding: 10px 12px;
    margin: 4px 0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    border-left: 4px solid transparent;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
}

.football-match-card:hover {
    background: #3d3d3d;
    transform: translateY(-1px);
}

.football-match-card.live     { border-left-color: #0a9396; background: linear-gradient(90deg, #1a3a3a, #2d2d2d); }
.football-match-card.finished { border-left-color: #888; }
.football-match-card.fixture  { border-left-color: #FF9800; }
.football-match-card.special  { border-left-color: #f44336; }

.football-match-card .star-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 15px;
    color: #666;
    cursor: pointer;
    z-index: 2;
}

.football-match-card .star-icon.favorited {
    color: #FFD700;
}

.football-match-card .team-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.football-match-card .team-home,
.football-match-card .team-away {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.football-match-card .team-home { justify-content: flex-end; }
.football-match-card .team-away { justify-content: flex-start; }

.football-match-card .team-name {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 105px;
    color: white;
}

.football-match-card .team-logo {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: contain;
    background: #444;
    flex-shrink: 0;
}

.football-match-card .red-card {
    color: #ff4444;
    font-size: 13px;
    margin: 0 2px;
}

.football-match-card .match-center {
    min-width: 68px;
    text-align: center;
    flex-shrink: 0;
}

.football-match-card .score-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 16px;
    font-weight: bold;
}

.football-match-card .score {
    color: #FF9800;
}

.football-match-card .score-dash {
    color: #888;
}

.football-match-card .fixture-time {
    font-family: monospace;
    font-size: 13.5px;
    color: #FF9800;
    font-weight: 600;
}

.football-match-card .status-time {
    font-family: monospace;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    min-width: 50px;
    text-align: center;
    margin-left: 6px;
    flex-shrink: 0;
}

.football-match-card .status-time.live {
    background: #0a9396;
    color: white;
    animation: pulse 1.5s infinite;
}

.football-match-card .status-time.finished {
    background: #666;
    color: white;
}

.football-match-card .status-time.special {
    background: #f44336;
    color: white;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.football-match-card .blink {
    animation: blinkGoal 0.8s ease-in-out 8;
    color: #FFD700 !important;
}

@keyframes blinkGoal {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.35); }
}

#ls-match-modal {
    display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 99999; overflow-y: auto;
}
.ls-modal-content {
    max-width: 980px; margin: 30px auto; background: #1a1a1a; border-radius: 12px; overflow: hidden; color: white;
}
.ls-modal-header {
    background: #111; padding: 15px 20px; position: relative; border-bottom: 1px solid #333;
}
.ls-modal-close {
    position: absolute; top: 12px; right: 20px; font-size: 32px; cursor: pointer; color: #888;
}
.ls-modal-close:hover { color: #fff; }
.ls-modal-teams { display: flex; justify-content: space-between; align-items: center; margin: 10px 0; }
.ls-modal-team { text-align: center; flex: 1; }
.ls-modal-team img { width: 50px; height: 50px; border-radius: 50%; }
.ls-modal-score { font-size: 28px; font-weight: bold; color: #0a9396; }
.ls-modal-info { font-size: 12px; color: #aaa; text-align: center; }
.ls-modal-tabs {
    display: flex; background: #222; overflow-x: auto; border-bottom: 1px solid #333;
}
.ls-modal-tab {
    padding: 14px 22px; cursor: pointer; color: #bbb; white-space: nowrap; border-bottom: 3px solid transparent;
}
.ls-modal-tab.ls-active {
    color: #fff; border-bottom-color: #0a9396; font-weight: bold;
}
.ls-tab-content { padding: 20px; min-height: 300px; }
.ls-event-item {
    display: flex; gap: 12px; padding: 10px; background: #252525; border-radius: 8px; margin-bottom: 8px;
}
.ls-event-minute { font-weight: bold; min-width: 50px; color: #0a9396; }
.ls-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.ls-table th, .ls-table td { padding: 8px; border-bottom: 1px solid #333; text-align: center; }
.ls-table th { background: #1f1f1f; }