/* Football Data - Frontend CSS v2.0 */

/* ====================== */
/* RESET FORTE PER TEMI */
/* ====================== */
.fd-box,
.fd-box *,
.fd-widget,
.fd-widget *,
.fd-next-ticker-wrap,
.fd-next-ticker-wrap *,
.fd-ticker-wrapper,
.fd-ticker-wrapper *,
[class^="fd-"],
[class*=" fd-"] {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    line-height: 1.4;
}

.fd-box img,
.fd-widget img,
.fd-next-ticker-wrap img,
[class^="fd-"] img,
[class*=" fd-"] img {
    max-width: none !important;
    height: auto !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* ====================== */
/* BOX CONTAINER */
/* ====================== */
.fd-box,
div.fd-box {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1) !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
}
.fd-box.fd-standings,
div.fd-box.fd-standings {
    overflow-x: auto !important;
    overflow-y: visible !important;
}

/* ====================== */
/* HEADER */
/* ====================== */
.fd-box .fd-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 15px !important;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%) !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin: 0 !important;
}
.fd-box .fd-header-icon { font-size: 18px !important; }
.fd-box .fd-header-logo {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
}
.fd-box .fd-header-green {
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%) !important;
}
.fd-box .fd-header-live {
    background: linear-gradient(135deg, #c62828 0%, #e53935 100%) !important;
}
.fd-box .fd-round {
    margin-left: auto !important;
    font-size: 12px !important;
    opacity: 0.9 !important;
    background: rgba(255,255,255,0.2) !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
}
.fd-box .fd-refresh {
    margin-left: auto !important;
    animation: fdSpin 2s linear infinite !important;
}
@keyframes fdSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ====================== */
/* TABS */
/* ====================== */
.fd-box .fd-tabs {
    display: flex !important;
    background: #f5f5f5 !important;
    border-bottom: 1px solid #ddd !important;
    margin: 0 !important;
    padding: 0 !important;
}
.fd-box .fd-tab {
    flex: 1 !important;
    padding: 10px 12px !important;
    border: none !important;
    background: transparent !important;
    cursor: pointer !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #666 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: all 0.2s !important;
}
.fd-box .fd-tab:hover { background: #eee !important; }
.fd-box .fd-tab-active {
    background: #fff !important;
    color: #1e3a5f !important;
    border-bottom: 3px solid #e53935 !important;
}
.fd-box .fd-badge {
    font-size: 11px !important;
    padding: 2px 6px !important;
    border-radius: 8px !important;
    background: #ddd !important;
    color: #333 !important;
    font-weight: 700 !important;
}
.fd-box .fd-badge-live {
    background: #e53935 !important;
    color: #fff !important;
}
.fd-box .fd-live-dot {
    width: 8px !important;
    height: 8px !important;
    background: #e53935 !important;
    border-radius: 50% !important;
    display: inline-block !important;
    animation: fdBlink 1s infinite !important;
}
.fd-box .fd-live-dot-offline {
    background: #999 !important;
    animation: none !important;
}
@keyframes fdBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ====================== */
/* CONTENT */
/* ====================== */
.fd-box .fd-content { display: none !important; }
.fd-box .fd-content-active { display: block !important; }

/* ====================== */
/* LEAGUE/DAY GROUP */
/* ====================== */
.fd-box .fd-league,
.fd-box .fd-day {
    border-bottom: 1px solid #eee !important;
}
.fd-box .fd-league:last-child,
.fd-box .fd-day:last-child { border-bottom: none !important; }

.fd-box .fd-league-header {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 12px !important;
    background: #f9f9f9 !important;
    border-bottom: 1px solid #eee !important;
}
.fd-box .fd-league-logo {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    object-fit: contain !important;
}
.fd-box .fd-league-header span {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

.fd-box .fd-day-header {
    padding: 10px 12px !important;
    background: #f5f5f5 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #333 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    text-transform: capitalize !important;
}
.fd-box .fd-day-today {
    background: #e3f2fd !important;
    color: #1565c0 !important;
    border-left: 4px solid #1565c0 !important;
}

/* ====================== */
/* TABLE */
/* ====================== */
.fd-box .fd-table {
    width: 100% !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    table-layout: fixed !important;
}
.fd-box .fd-table-wrap {
    overflow-x: auto !important;
}

/* ====================== */
/* ROWS */
/* ====================== */
.fd-box .fd-row {
    background: #fff !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.fd-box .fd-row:last-child { border-bottom: none !important; }
.fd-box .fd-row:hover { background: #fafafa !important; }
.fd-box .fd-row-live {
    background: #fff5f5 !important;
    border-left: 3px solid #e53935 !important;
}
.fd-box .fd-row-live:hover { background: #ffebee !important; }

/* ====================== */
/* CELLS */
/* ====================== */
.fd-box .fd-td {
    padding: 10px 8px !important;
    vertical-align: middle !important;
    font-size: 13px !important;
    border: none !important;
}
.fd-box .fd-td-time {
    width: 55px !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    color: #666 !important;
}
.fd-box .fd-time-live {
    color: #e53935 !important;
    font-weight: 700 !important;
    animation: fdBlink 1s infinite !important;
}
.fd-box .fd-time-fin { color: #999 !important; }

.fd-box .fd-td-home {
    width: 35% !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}
.fd-box .fd-td-away {
    width: 35% !important;
    text-align: left !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}
.fd-box .fd-td-score {
    width: 70px !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #1e3a5f !important;
    background: #f0f0f0 !important;
    border-radius: 4px !important;
}
.fd-box .fd-score-vs {
    background: #e8f4fc !important;
    color: #1e3a5f !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
.fd-box .fd-score-live {
    background: #e53935 !important;
    color: #fff !important;
}

/* ====================== */
/* TEAM & CREST */
/* ====================== */
.fd-box .fd-teamname {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #222 !important;
    display: inline !important;
    vertical-align: middle !important;
}
.fd-box .fd-crest {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    min-height: 24px !important;
    max-height: 24px !important;
    object-fit: contain !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 6px !important;
}
.fd-box .fd-td img {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    max-width: 24px !important;
    object-fit: contain !important;
}

/* ====================== */
/* STANDINGS TABLE */
/* ====================== */
.fd-standings {
    overflow-x: auto !important;
}
.fd-standings .fd-table {
    table-layout: auto !important;
    min-width: 100% !important;
}
.fd-standings-table th,
.fd-standings-table td {
    padding: 8px 5px !important;
    text-align: center !important;
    font-size: 12px !important;
    border-bottom: 1px solid #eee !important;
    white-space: nowrap !important;
}
.fd-standings-table th {
    background: #f5f5f5 !important;
    font-weight: 600 !important;
    color: #333 !important;
    position: sticky !important;
    top: 0 !important;
}
.fd-standings-table .fd-pos {
    width: 40px !important;
    min-width: 40px !important;
    font-weight: 600 !important;
}
.fd-standings-table .fd-team-col {
    text-align: left !important;
    min-width: 140px !important;
}
.fd-standings-table .fd-team-cell {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    text-align: left !important;
}
.fd-standings-table .fd-team-logo {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}
.fd-standings-table .fd-team-name {
    font-weight: 500 !important;
    white-space: nowrap !important;
}
.fd-standings-table .fd-pts {
    background: #e8f4fc !important;
    font-weight: 700 !important;
    color: #1e3a5f !important;
    min-width: 45px !important;
}
.fd-standings-table .fd-highlight {
    background: #fff8e1 !important;
}

/* Form indicators */
.fd-standings-table td.fd-form {
    min-width: 105px !important;
    width: 105px !important;
    padding: 8px 10px 8px 5px !important;
}
.fd-box .fd-form {
    display: inline-flex !important;
    gap: 2px !important;
    justify-content: flex-start !important;
    flex-wrap: nowrap !important;
}
.fd-form-w, .fd-form-d, .fd-form-l {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    text-align: center !important;
    border-radius: 2px !important;
    font-size: 9px !important;
    font-weight: bold !important;
    flex-shrink: 0 !important;
}
.fd-form-w { background: #4caf50 !important; color: #fff !important; }
.fd-form-d { background: #ff9800 !important; color: #fff !important; }
.fd-form-l { background: #f44336 !important; color: #fff !important; }

/* ====================== */
/* SCORERS */
/* ====================== */
.fd-scorers {
    overflow: hidden !important;
}
.fd-scorers .fd-table {
    border-collapse: collapse !important;
    width: 100% !important;
}
.fd-scorers .fd-table thead th {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%) !important;
    color: #fff !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    padding: 12px 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    text-align: center !important;
}
.fd-scorers .fd-table thead th:nth-child(2),
.fd-scorers .fd-table thead th:nth-child(3) {
    text-align: left !important;
}
.fd-scorers .fd-table tbody tr {
    transition: all 0.15s !important;
}
.fd-scorers .fd-table tbody tr:hover {
    background: #f5f8ff !important;
}
.fd-scorers .fd-table tbody tr:nth-child(1) {
    background: linear-gradient(90deg, rgba(255,215,0,0.15) 0%, rgba(255,255,255,1) 100%) !important;
}
.fd-scorers .fd-table tbody tr:nth-child(2) {
    background: linear-gradient(90deg, rgba(192,192,192,0.15) 0%, rgba(255,255,255,1) 100%) !important;
}
.fd-scorers .fd-table tbody tr:nth-child(3) {
    background: linear-gradient(90deg, rgba(205,127,50,0.15) 0%, rgba(255,255,255,1) 100%) !important;
}
.fd-scorers .fd-table td {
    padding: 10px 8px !important;
    border-bottom: 1px solid #eee !important;
    vertical-align: middle !important;
}
.fd-scorers .fd-rank {
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #1e3a5f !important;
    text-align: center !important;
    width: 50px !important;
}
.fd-scorers .fd-table tbody tr:nth-child(1) .fd-rank {
    color: #d4af37 !important;
}
.fd-scorers .fd-table tbody tr:nth-child(2) .fd-rank {
    color: #a8a8a8 !important;
}
.fd-scorers .fd-table tbody tr:nth-child(3) .fd-rank {
    color: #cd7f32 !important;
}
.fd-scorers .fd-player-cell {
    min-width: 150px !important;
}
.fd-scorers .fd-player-photo {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #e0e0e0 !important;
    vertical-align: middle !important;
    margin-right: 8px !important;
}
.fd-scorers .fd-player-info {
    display: inline-block !important;
    vertical-align: middle !important;
}
.fd-scorers .fd-player-name {
    display: block !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    color: #1e3a5f !important;
}
.fd-scorers .fd-player-nation {
    display: block !important;
    font-size: 11px !important;
    color: #888 !important;
}
.fd-scorers .fd-team-cell {
    min-width: 120px !important;
}
.fd-scorers .fd-team-logo-sm {
    width: 22px !important;
    height: 22px !important;
    object-fit: contain !important;
    vertical-align: middle !important;
    margin-right: 6px !important;
}
.fd-scorers .fd-team-name-sm {
    font-size: 12px !important;
    color: #555 !important;
    font-weight: 500 !important;
    vertical-align: middle !important;
}
.fd-scorers .fd-goals-cell {
    text-align: center !important;
    width: 70px !important;
}
.fd-scorers .fd-goals-num {
    display: inline-block !important;
    width: 36px !important;
    height: 36px !important;
    line-height: 36px !important;
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%) !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    border-radius: 50% !important;
    text-align: center !important;
}
.fd-scorers .fd-assist-cell,
.fd-scorers .fd-games-cell {
    text-align: center !important;
    width: 70px !important;
    font-weight: 600 !important;
    color: #1e3a5f !important;
}
.fd-scorers .fd-games-cell {
    color: #666 !important;
    font-weight: 400 !important;
}

/* ====================== */
/* SQUAD */
/* ====================== */
.fd-squad .fd-squad-section {
    padding: 15px !important;
    border-bottom: 1px solid #eee !important;
}
.fd-squad .fd-squad-title {
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #1e3a5f !important;
}
.fd-squad .fd-squad-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)) !important;
    gap: 10px !important;
}
.fd-squad .fd-squad-player {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 8px !important;
    background: #f9f9f9 !important;
    border-radius: 6px !important;
}
.fd-squad .fd-squad-photo {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}
.fd-squad .fd-squad-number {
    font-weight: 700 !important;
    color: #1e3a5f !important;
    font-size: 14px !important;
}
.fd-squad .fd-squad-name {
    font-size: 12px !important;
    color: #333 !important;
}

/* ====================== */
/* MATCH DETAIL */
/* ====================== */
.fd-match-detail .fd-md-header {
    text-align: center !important;
    padding: 15px !important;
    background: #f5f5f5 !important;
}
.fd-match-detail .fd-md-league {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-weight: 600 !important;
    color: #1e3a5f !important;
}
.fd-match-detail .fd-md-league img {
    width: 20px !important;
    height: 20px !important;
}
.fd-match-detail .fd-md-date {
    color: #666 !important;
    margin: 5px 0 !important;
}
.fd-match-detail .fd-md-venue {
    font-size: 12px !important;
    color: #888 !important;
}
.fd-match-detail .fd-md-score {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 25px !important;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%) !important;
    color: #fff !important;
    gap: 20px !important;
}
.fd-match-detail .fd-md-team {
    text-align: center !important;
    flex: 1 !important;
}
.fd-match-detail .fd-md-team img {
    width: 50px !important;
    height: 50px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 8px !important;
}
.fd-match-detail .fd-md-result {
    font-size: 36px !important;
    font-weight: 700 !important;
}
.fd-match-detail .fd-md-events {
    padding: 15px !important;
}
.fd-match-detail .fd-md-events h4 {
    margin: 0 0 10px 0 !important;
    color: #1e3a5f !important;
}
.fd-match-detail .fd-md-event {
    padding: 8px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
.fd-match-detail .fd-md-event-away {
    flex-direction: row-reverse !important;
    text-align: right !important;
}
.fd-match-detail .fd-ev-time {
    font-weight: 600 !important;
    color: #1e3a5f !important;
    min-width: 35px !important;
}

/* ====================== */
/* H2H - SCONTRI DIRETTI */
/* ====================== */
.fd-h2h {
    overflow: hidden !important;
}
.fd-h2h .fd-h2h-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    padding: 25px 15px !important;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%) !important;
}
.fd-h2h .fd-h2h-team-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    flex: 1 !important;
}
.fd-h2h .fd-h2h-logo {
    width: 70px !important;
    height: 70px !important;
    object-fit: contain !important;
    background: #fff !important;
    border-radius: 12px !important;
    padding: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2) !important;
}
.fd-h2h .fd-h2h-team-name {
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-align: center !important;
}
.fd-h2h .fd-h2h-vs {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: rgba(255,255,255,0.5) !important;
    padding: 10px 15px !important;
}
.fd-h2h .fd-h2h-stats-bar {
    display: flex !important;
    background: #f8f9fa !important;
}
.fd-h2h .fd-h2h-stat-item {
    flex: 1 !important;
    padding: 20px 10px !important;
    text-align: center !important;
    border-right: 1px solid #eee !important;
}
.fd-h2h .fd-h2h-stat-item:last-child {
    border-right: none !important;
}
.fd-h2h .fd-h2h-stat-num {
    display: block !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1e3a5f !important;
}
.fd-h2h .fd-h2h-stat-wins .fd-h2h-stat-num {
    color: #2e7d32 !important;
}
.fd-h2h .fd-h2h-stat-draws .fd-h2h-stat-num {
    color: #f57c00 !important;
}
.fd-h2h .fd-h2h-stat-label {
    font-size: 12px !important;
    color: #666 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}
.fd-h2h .fd-h2h-extra-stats {
    display: flex !important;
    background: #fff !important;
    border-bottom: 1px solid #eee !important;
}
.fd-h2h .fd-h2h-extra-stat {
    flex: 1 !important;
    padding: 15px 10px !important;
    text-align: center !important;
    border-right: 1px solid #eee !important;
}
.fd-h2h .fd-h2h-extra-stat:last-child {
    border-right: none !important;
}
.fd-h2h .fd-h2h-extra-val {
    display: block !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1e3a5f !important;
}
.fd-h2h .fd-h2h-extra-label {
    font-size: 11px !important;
    color: #888 !important;
}
.fd-h2h .fd-h2h-bar {
    display: flex !important;
    height: 30px !important;
    overflow: hidden !important;
}
.fd-h2h .fd-h2h-bar-segment {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #fff !important;
    transition: all 0.3s !important;
}
.fd-h2h .fd-h2h-bar-team1 {
    background: linear-gradient(90deg, #2e7d32 0%, #43a047 100%) !important;
}
.fd-h2h .fd-h2h-bar-draw {
    background: linear-gradient(90deg, #f57c00 0%, #ff9800 100%) !important;
}
.fd-h2h .fd-h2h-bar-team2 {
    background: linear-gradient(90deg, #1976d2 0%, #42a5f5 100%) !important;
}
.fd-h2h .fd-h2h-history {
    padding: 0 !important;
}
.fd-h2h .fd-h2h-history-title {
    padding: 15px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #1e3a5f !important;
    background: #f5f5f5 !important;
    border-bottom: 1px solid #eee !important;
}
.fd-h2h .fd-h2h-comp {
    border-bottom: 1px solid #eee !important;
}
.fd-h2h .fd-h2h-comp:last-child {
    border-bottom: none !important;
}
.fd-h2h .fd-h2h-comp-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 15px !important;
    background: linear-gradient(90deg, #e3f2fd 0%, #fff 100%) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #1e3a5f !important;
}
.fd-h2h .fd-h2h-comp-logo {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
}
.fd-h2h .fd-h2h-matches {
    padding: 0 !important;
}
.fd-h2h .fd-h2h-match {
    display: flex !important;
    align-items: center !important;
    padding: 12px 15px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    transition: all 0.15s !important;
}
.fd-h2h .fd-h2h-match:last-child {
    border-bottom: none !important;
}
.fd-h2h .fd-h2h-match:hover {
    background: #f5f8ff !important;
}
.fd-h2h .fd-h2h-match-win {
    border-left: 4px solid #2e7d32 !important;
}
.fd-h2h .fd-h2h-match-lose {
    border-left: 4px solid #c62828 !important;
}
.fd-h2h .fd-h2h-match-draw {
    border-left: 4px solid #f57c00 !important;
}
.fd-h2h .fd-h2h-match-date {
    min-width: 85px !important;
    text-align: center !important;
}
.fd-h2h .fd-h2h-match-day {
    font-size: 12px !important;
    color: #666 !important;
    font-weight: 500 !important;
}
.fd-h2h .fd-h2h-match-team {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.fd-h2h .fd-h2h-match-home {
    justify-content: flex-end !important;
}
.fd-h2h .fd-h2h-match-away {
    justify-content: flex-start !important;
}
.fd-h2h .fd-h2h-match-logo {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
}
.fd-h2h .fd-h2h-match-name {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #333 !important;
}
.fd-h2h .fd-h2h-match-winner .fd-h2h-match-name {
    font-weight: 700 !important;
    color: #1e3a5f !important;
}
.fd-h2h .fd-h2h-match-score {
    min-width: 70px !important;
    text-align: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1e3a5f !important;
    background: #f0f4f8 !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    margin: 0 10px !important;
}

/* H2H Mobile */
@media (max-width: 600px) {
    .fd-h2h .fd-h2h-header {
        padding: 20px 10px !important;
        gap: 10px !important;
    }
    .fd-h2h .fd-h2h-logo {
        width: 50px !important;
        height: 50px !important;
    }
    .fd-h2h .fd-h2h-team-name {
        font-size: 13px !important;
    }
    .fd-h2h .fd-h2h-stat-num {
        font-size: 24px !important;
    }
    .fd-h2h .fd-h2h-extra-val {
        font-size: 18px !important;
    }
    .fd-h2h .fd-h2h-extra-label {
        font-size: 9px !important;
    }
    .fd-h2h .fd-h2h-match {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    .fd-h2h .fd-h2h-match-date {
        width: 100% !important;
        text-align: left !important;
        padding-bottom: 5px !important;
        border-bottom: 1px dashed #eee !important;
    }
    .fd-h2h .fd-h2h-match-name {
        font-size: 11px !important;
    }
    .fd-h2h .fd-h2h-match-logo {
        width: 22px !important;
        height: 22px !important;
    }
    .fd-h2h .fd-h2h-match-score {
        min-width: 55px !important;
        font-size: 14px !important;
        padding: 4px 8px !important;
    }
}

/* ====================== */
/* LINEUPS / FORMAZIONI */
/* ====================== */
.fd-lineups-container,
.fd-mf-section .fd-lineups-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    background: #fff !important;
}
.fd-lineup {
    padding: 15px !important;
}
.fd-lineup-home {
    border-right: 2px solid #e0e0e0 !important;
    background: linear-gradient(135deg, rgba(30,58,95,0.03) 0%, rgba(255,255,255,1) 100%) !important;
}
.fd-lineup-away {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(30,58,95,0.03) 100%) !important;
}
.fd-lineup-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px !important;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%) !important;
    border-radius: 8px !important;
    margin-bottom: 15px !important;
}
.fd-lineup-logo {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain !important;
    background: #fff !important;
    border-radius: 6px !important;
    padding: 4px !important;
}
.fd-lineup-team-info {
    display: flex !important;
    flex-direction: column !important;
    color: #fff !important;
}
.fd-lineup-team-name {
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #fff !important;
}
.fd-lineup-formation {
    font-size: 20px !important;
    color: rgba(255,255,255,0.9) !important;
    font-weight: 700 !important;
    margin-top: 2px !important;
}
.fd-lineup-coach {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 12px !important;
    background: #f8f9fa !important;
    border-radius: 6px !important;
    margin-bottom: 15px !important;
    border-left: 3px solid #1e3a5f !important;
}
.fd-lineup-coach-label {
    color: #666 !important;
    font-size: 12px !important;
}
.fd-lineup-coach-name {
    font-weight: 600 !important;
    color: #1e3a5f !important;
    font-size: 14px !important;
}
.fd-lineup-section {
    margin-bottom: 15px !important;
}
.fd-lineup-section-title {
    font-weight: 700 !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    color: #fff !important;
    background: #1e3a5f !important;
    padding: 6px 10px !important;
    border-radius: 4px !important;
    margin-bottom: 8px !important;
    letter-spacing: 0.5px !important;
}
.fd-lineup-players {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
}
.fd-lineup-player {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 10px !important;
    background: #fff !important;
    border-radius: 6px !important;
    font-size: 13px !important;
    border: 1px solid #eee !important;
    transition: all 0.15s !important;
}
.fd-lineup-player:hover {
    background: #f5f8ff !important;
    border-color: #1e3a5f !important;
    transform: translateX(3px) !important;
}
.fd-lineup-player-sub {
    background: #fafafa !important;
    border: 1px dashed #ddd !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
}
.fd-lineup-player-sub:hover {
    transform: none !important;
}
.fd-bench-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 10px 12px !important;
    background: #f5f5f5 !important;
    border-radius: 6px !important;
    margin-bottom: 12px !important;
}
.fd-bench-logo {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
}
.fd-bench-team-name {
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #1e3a5f !important;
}
.fd-lineup-number {
    font-weight: 700 !important;
    color: #fff !important;
    min-width: 28px !important;
    height: 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #1e3a5f !important;
    border-radius: 50% !important;
    font-size: 12px !important;
}
.fd-lineup-player-sub .fd-lineup-number {
    background: #999 !important;
    color: #fff !important;
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    font-size: 11px !important;
}
.fd-lineup-name {
    flex: 1 !important;
    font-weight: 500 !important;
}
.fd-lineup-pos {
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    text-transform: uppercase !important;
}
.fd-lineup-pos-g {
    background: #ff9800 !important;
    color: #fff !important;
}
.fd-lineup-pos-d {
    background: #2196f3 !important;
    color: #fff !important;
}
.fd-lineup-pos-m {
    background: #4caf50 !important;
    color: #fff !important;
}
.fd-lineup-pos-f {
    background: #f44336 !important;
    color: #fff !important;
}
.fd-lineup-subs .fd-lineup-player {
    border-left: 3px solid #ddd !important;
}

/* Lineups Mobile */
@media (max-width: 768px) {
    .fd-lineups .fd-lineups-container {
        grid-template-columns: 1fr !important;
    }
    .fd-lineup {
        border-right: none !important;
        border-bottom: 1px solid #eee !important;
    }
    .fd-lineup-away {
        border-bottom: none !important;
    }
}

/* ====================== */
/* FINISHED MATCHES */
/* ====================== */
.fd-finished-table .fd-td-id {
    width: 70px !important;
    text-align: center !important;
}
.fd-finished-table .fd-match-id {
    display: inline-block !important;
    background: #1e3a5f !important;
    color: #fff !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    font-family: monospace !important;
    cursor: pointer !important;
}
.fd-finished-table .fd-match-id:hover {
    background: #2d5a87 !important;
}
.fd-finished-help {
    padding: 12px 15px !important;
    background: #e8f4fc !important;
    border-top: 1px solid #cce5f6 !important;
    text-align: center !important;
}
.fd-finished-help code {
    background: #fff !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    font-size: 12px !important;
}

/* ====================== */
/* MATCH FULL (Scheda Partita) */
/* ====================== */
.fd-match-full .fd-mf-score-box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 25px 15px !important;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%) !important;
    color: #fff !important;
    gap: 20px !important;
}
.fd-match-full .fd-mf-team {
    flex: 1 !important;
    text-align: center !important;
}
.fd-match-full .fd-mf-team-logo {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 auto 10px !important;
}
.fd-match-full .fd-mf-team-name {
    font-size: 14px !important;
    font-weight: 600 !important;
}
.fd-match-full .fd-mf-score {
    text-align: center !important;
    min-width: 100px !important;
}
.fd-match-full .fd-mf-score-num {
    font-size: 36px !important;
    font-weight: 700 !important;
    display: block !important;
}
.fd-match-full .fd-mf-status {
    font-size: 11px !important;
    opacity: 0.8 !important;
    text-transform: uppercase !important;
}

.fd-match-full .fd-mf-info {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    padding: 12px 15px !important;
    background: #f5f5f5 !important;
    border-bottom: 1px solid #eee !important;
    justify-content: center !important;
}
.fd-match-full .fd-mf-info-item {
    font-size: 13px !important;
    color: #555 !important;
}

.fd-match-full .fd-mf-section {
    border-bottom: 1px solid #eee !important;
}
.fd-match-full .fd-mf-section:last-child {
    border-bottom: none !important;
}
.fd-match-full .fd-mf-section-title {
    padding: 12px 15px !important;
    background: #f9f9f9 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #1e3a5f !important;
    border-bottom: 1px solid #eee !important;
}

/* Eventi */
.fd-match-full .fd-mf-events {
    padding: 10px 15px !important;
}
.fd-match-full .fd-mf-event {
    display: flex !important;
    align-items: center !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
    gap: 10px !important;
}
.fd-match-full .fd-mf-event:last-child {
    border-bottom: none !important;
}
.fd-match-full .fd-mf-event-home {
    justify-content: flex-start !important;
}
.fd-match-full .fd-mf-event-away {
    justify-content: flex-end !important;
}
.fd-match-full .fd-mf-ev-time {
    font-weight: 600 !important;
    color: #1e3a5f !important;
    min-width: 40px !important;
    font-size: 12px !important;
}
.fd-match-full .fd-mf-ev-icon {
    font-size: 16px !important;
}
.fd-match-full .fd-mf-ev-player {
    font-size: 13px !important;
}

/* Statistiche */
.fd-match-full .fd-mf-stats {
    padding: 15px !important;
}
.fd-match-full .fd-mf-stat-row {
    display: flex !important;
    align-items: center !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.fd-match-full .fd-mf-stat-row:last-child {
    border-bottom: none !important;
}
.fd-match-full .fd-mf-stat-val {
    width: 60px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
}
.fd-match-full .fd-mf-stat-home {
    text-align: right !important;
    color: #1e3a5f !important;
}
.fd-match-full .fd-mf-stat-away {
    text-align: left !important;
    color: #1e3a5f !important;
}
.fd-match-full .fd-mf-stat-label {
    flex: 1 !important;
    text-align: center !important;
    font-size: 12px !important;
    color: #666 !important;
}

/* Mobile */
@media (max-width: 600px) {
    .fd-match-full .fd-mf-team-logo {
        width: 45px !important;
        height: 45px !important;
    }
    .fd-match-full .fd-mf-score-num {
        font-size: 28px !important;
    }
    .fd-match-full .fd-mf-team-name {
        font-size: 12px !important;
    }
}

/* ====================== */
/* ZONE CLASSIFICA */
/* ====================== */
.fd-zone-ucl {
    background: rgba(0, 128, 0, 0.1) !important;
    border-left: 4px solid #2e7d32 !important;
}
.fd-zone-uel {
    background: rgba(255, 152, 0, 0.1) !important;
    border-left: 4px solid #ff9800 !important;
}
.fd-zone-uecl {
    background: rgba(33, 150, 243, 0.1) !important;
    border-left: 4px solid #2196f3 !important;
}
.fd-zone-rel {
    background: rgba(244, 67, 54, 0.1) !important;
    border-left: 4px solid #f44336 !important;
}

.fd-zones-legend {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    padding: 12px 15px !important;
    background: #f9f9f9 !important;
    border-top: 1px solid #eee !important;
    font-size: 12px !important;
}
.fd-legend-ucl { color: #2e7d32 !important; }
.fd-legend-uel { color: #ff9800 !important; }
.fd-legend-uecl { color: #2196f3 !important; }
.fd-legend-rel { color: #f44336 !important; }

/* ====================== */
/* SCORERS FULL (con tabs) */
/* ====================== */
.fd-scorers-full .fd-tabs {
    display: flex !important;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%) !important;
}
.fd-scorers-full .fd-tab {
    flex: 1 !important;
    padding: 14px !important;
    border: none !important;
    background: transparent !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.7) !important;
    transition: all 0.2s !important;
}
.fd-scorers-full .fd-tab:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.1) !important;
}
.fd-scorers-full .fd-tab-active {
    background: #fff !important;
    color: #1e3a5f !important;
}
.fd-scorers-full .fd-content {
    display: none !important;
}
.fd-scorers-full .fd-content-active {
    display: block !important;
}
.fd-scorers-full .fd-scorers-table {
    width: 100% !important;
}
.fd-scorers-full .fd-scorers-table thead th {
    background: #f5f5f5 !important;
    padding: 12px 10px !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    color: #555 !important;
}
.fd-scorers-full .fd-scorers-table tbody tr {
    transition: all 0.15s !important;
}
.fd-scorers-full .fd-scorers-table tbody tr:hover {
    background: #f5f8ff !important;
}
.fd-scorers-full .fd-scorers-table tbody tr:nth-child(1) {
    background: linear-gradient(90deg, rgba(255,215,0,0.15) 0%, #fff 100%) !important;
}
.fd-scorers-full .fd-scorers-table tbody tr:nth-child(2) {
    background: linear-gradient(90deg, rgba(192,192,192,0.15) 0%, #fff 100%) !important;
}
.fd-scorers-full .fd-scorers-table tbody tr:nth-child(3) {
    background: linear-gradient(90deg, rgba(205,127,50,0.15) 0%, #fff 100%) !important;
}
.fd-scorers-full .fd-scorers-table td {
    padding: 10px !important;
    border-bottom: 1px solid #eee !important;
    vertical-align: middle !important;
}
.fd-scorers-full .fd-goals {
    text-align: center !important;
}
.fd-scorers-full .fd-goals strong {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    background: linear-gradient(135deg, #2e7d32 0%, #43a047 100%) !important;
    color: #fff !important;
    font-size: 16px !important;
    border-radius: 50% !important;
}
.fd-scorers-full .fd-player-cell {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}
.fd-scorers-full .fd-player-photo {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 2px solid #e0e0e0 !important;
}
.fd-scorers-full .fd-team-cell {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.fd-scorers-full .fd-team-logo-sm {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
}

/* ====================== */
/* EMPTY & ERROR */
/* ====================== */
.fd-box .fd-empty {
    text-align: center !important;
    padding: 40px 20px !important;
    color: #999 !important;
    font-size: 16px !important;
}
.fd-box .fd-empty-small {
    text-align: center !important;
    padding: 25px 15px !important;
    color: #999 !important;
    font-size: 14px !important;
}
.fd-error {
    background: #ffebee !important;
    border: 1px solid #e53935 !important;
    color: #c62828 !important;
    padding: 15px !important;
    border-radius: 4px !important;
    margin: 10px 0 !important;
}

/* ====================== */
/* MOBILE */
/* ====================== */
@media (max-width: 600px) {
    .fd-box .fd-td-time {
        width: 45px !important;
        font-size: 11px !important;
    }
    .fd-box .fd-td-score {
        width: 55px !important;
        font-size: 12px !important;
    }
    .fd-box .fd-teamname {
        font-size: 12px !important;
    }
    .fd-box .fd-crest,
    .fd-box .fd-td img {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
        max-width: 20px !important;
        margin: 0 4px !important;
    }
    .fd-box .fd-tab {
        font-size: 11px !important;
        padding: 8px 6px !important;
    }
    .fd-standings-table th,
    .fd-standings-table td {
        padding: 8px 5px !important;
        font-size: 12px !important;
    }
    .fd-standings-table .fd-team-col {
        min-width: 140px !important;
    }
    .fd-standings-table .fd-team-logo {
        width: 20px !important;
        height: 20px !important;
        min-width: 20px !important;
    }
    .fd-match-detail .fd-md-result {
        font-size: 28px !important;
    }
    .fd-match-detail .fd-md-team img {
        width: 40px !important;
        height: 40px !important;
    }
    .fd-squad .fd-squad-grid {
        grid-template-columns: 1fr 1fr !important;
    }
}

/* ====================== */
/* WIDGETS */
/* ====================== */
.fd-widget {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: 13px !important;
}
.fd-widget-error,
.fd-widget-empty {
    padding: 15px !important;
    text-align: center !important;
    color: #666 !important;
    font-style: italic !important;
}

/* Widget Table Base */
.fd-widget-table {
    width: 100% !important;
    border-collapse: collapse !important;
}
.fd-widget-table th,
.fd-widget-table td {
    padding: 8px 6px !important;
    text-align: left !important;
    border-bottom: 1px solid #eee !important;
}
.fd-widget-table th {
    font-size: 10px !important;
    text-transform: uppercase !important;
    color: #888 !important;
    font-weight: 600 !important;
}

/* Mini Standings Widget */
.fd-widget-standings .fd-w-pos {
    font-weight: 700 !important;
    color: #1e3a5f !important;
    width: 25px !important;
    text-align: center !important;
}
.fd-widget-standings .fd-w-team {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.fd-widget-standings .fd-w-logo {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
}
.fd-widget-standings .fd-w-pts {
    text-align: center !important;
    color: #1e3a5f !important;
}
.fd-widget-standings .fd-w-form {
    display: flex !important;
    gap: 2px !important;
}
.fd-form-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    display: inline-block !important;
}
.fd-form-w { background: #4caf50 !important; }
.fd-form-d { background: #ff9800 !important; }
.fd-form-l { background: #f44336 !important; }

/* Live Score Widget */
.fd-widget-live .fd-w-live-match {
    display: flex !important;
    align-items: center !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid #eee !important;
}
.fd-widget-live .fd-w-live-match:last-child {
    border-bottom: none !important;
}
.fd-widget-live .fd-w-live-status {
    min-width: 35px !important;
    font-weight: 700 !important;
    color: #e53935 !important;
    font-size: 12px !important;
}
.fd-widget-live .fd-w-live-teams {
    flex: 1 !important;
}
.fd-widget-live .fd-w-live-team {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 2px 0 !important;
    font-size: 12px !important;
}
.fd-widget-live .fd-w-live-score {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    color: #1e3a5f !important;
    min-width: 25px !important;
}
.fd-w-logo-sm {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain !important;
}
.fd-w-logo-xs {
    width: 14px !important;
    height: 14px !important;
    object-fit: contain !important;
}

/* Widget Link */
.fd-widget-link {
    display: block !important;
    text-align: center !important;
    padding: 10px !important;
    margin-top: 10px !important;
    background: #f5f5f5 !important;
    color: #1e3a5f !important;
    text-decoration: none !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    transition: all 0.2s !important;
}
.fd-widget-link:hover {
    background: #1e3a5f !important;
    color: #fff !important;
}

/* Next Matches Widget */
.fd-widget-next .fd-w-next-match {
    padding: 10px 0 !important;
    border-bottom: 1px solid #eee !important;
}
.fd-widget-next .fd-w-next-match:last-child {
    border-bottom: none !important;
}
.fd-widget-next .fd-w-next-date {
    font-size: 11px !important;
    color: #888 !important;
    margin-bottom: 5px !important;
}
.fd-widget-next .fd-w-next-teams {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.fd-widget-next .fd-w-next-team {
    flex: 1 !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 12px !important;
}
.fd-widget-next .fd-w-next-vs {
    font-size: 10px !important;
    color: #aaa !important;
    font-weight: 600 !important;
}

/* Today Results Widget */
.fd-widget-today .fd-w-today-match {
    display: flex !important;
    align-items: center !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #eee !important;
    gap: 10px !important;
}
.fd-widget-today .fd-w-today-match:last-child {
    border-bottom: none !important;
}
.fd-widget-today .fd-w-today-live {
    background: rgba(229, 57, 53, 0.05) !important;
    margin: 0 -10px !important;
    padding: 8px 10px !important;
    border-radius: 4px !important;
}
.fd-widget-today .fd-w-today-status {
    min-width: 40px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #666 !important;
    text-align: center !important;
}
.fd-widget-today .fd-w-live-badge {
    background: #e53935 !important;
    color: #fff !important;
    padding: 2px 6px !important;
    border-radius: 3px !important;
    font-size: 9px !important;
    animation: fd-pulse 1.5s infinite !important;
}
@keyframes fd-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}
.fd-widget-today .fd-w-today-content {
    flex: 1 !important;
}
.fd-widget-today .fd-w-today-row {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 2px 0 !important;
}
.fd-widget-today .fd-w-today-name {
    flex: 1 !important;
    font-size: 12px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.fd-widget-today .fd-w-today-score {
    font-weight: 700 !important;
    color: #1e3a5f !important;
    min-width: 20px !important;
    text-align: right !important;
}

/* Top Scorers Widget */
.fd-widget-scorers .fd-w-scorer {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid #eee !important;
}
.fd-widget-scorers .fd-w-scorer:last-child {
    border-bottom: none !important;
}
.fd-widget-scorers .fd-w-scorer-pos {
    font-weight: 700 !important;
    color: #1e3a5f !important;
    min-width: 20px !important;
}
.fd-widget-scorers .fd-w-scorer:nth-child(1) .fd-w-scorer-pos { color: #d4af37 !important; }
.fd-widget-scorers .fd-w-scorer:nth-child(2) .fd-w-scorer-pos { color: #a8a8a8 !important; }
.fd-widget-scorers .fd-w-scorer:nth-child(3) .fd-w-scorer-pos { color: #cd7f32 !important; }
.fd-widget-scorers .fd-w-scorer-photo {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}
.fd-widget-scorers .fd-w-scorer-info {
    flex: 1 !important;
}
.fd-widget-scorers .fd-w-scorer-name {
    display: block !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    color: #333 !important;
}
.fd-widget-scorers .fd-w-scorer-team {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    font-size: 11px !important;
    color: #888 !important;
}
.fd-widget-scorers .fd-w-scorer-goals {
    font-weight: 700 !important;
    font-size: 16px !important;
    color: #2e7d32 !important;
    background: #e8f5e9 !important;
    padding: 4px 10px !important;
    border-radius: 12px !important;
}

/* ====================== */
/* LIVE TICKER (Orizzontale) */
/* ====================== */
.fd-ticker-wrapper {
    width: 100% !important;
    background: #f5f5f5 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}
.fd-ticker {
    max-width: 1400px !important;
    margin: 0 auto !important;
}
.fd-ticker-tabs {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 8px 15px !important;
    background: #fff !important;
    border-bottom: 1px solid #eee !important;
    overflow-x: auto !important;
}
.fd-ticker-tab {
    padding: 6px 12px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #666 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    border-radius: 3px !important;
    transition: all 0.2s !important;
}
.fd-ticker-tab:hover {
    background: #f0f0f0 !important;
}
.fd-ticker-tab-active {
    background: #e53935 !important;
    color: #fff !important;
}
.fd-ticker-tab-live {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}
.fd-ticker-dot {
    width: 8px !important;
    height: 8px !important;
    background: #fff !important;
    border-radius: 50% !important;
    animation: fd-blink 1s infinite !important;
}
@keyframes fd-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.fd-ticker-matches {
    display: flex !important;
    gap: 0 !important;
    padding: 10px 15px !important;
    overflow-x: auto !important;
    scrollbar-width: thin !important;
}
.fd-ticker-matches::-webkit-scrollbar {
    height: 4px !important;
}
.fd-ticker-matches::-webkit-scrollbar-track {
    background: #e0e0e0 !important;
}
.fd-ticker-matches::-webkit-scrollbar-thumb {
    background: #999 !important;
    border-radius: 2px !important;
}
.fd-ticker-match {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 15px !important;
    background: #fff !important;
    border-radius: 8px !important;
    margin-right: 10px !important;
    min-width: 220px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
    flex-shrink: 0 !important;
}
.fd-ticker-match-live {
    border-left: 3px solid #e53935 !important;
}
.fd-ticker-team {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    min-width: 60px !important;
}
.fd-ticker-logo {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
}
.fd-ticker-name {
    font-size: 11px !important;
    font-weight: 500 !important;
    color: #333 !important;
    text-align: center !important;
    line-height: 1.2 !important;
}
.fd-ticker-score {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 30px !important;
    padding: 0 5px !important;
}
.fd-ticker-score span {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #1e3a5f !important;
    line-height: 1.3 !important;
}
.fd-ticker-time {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-end !important;
    margin-left: auto !important;
}
.fd-ticker-date {
    font-size: 10px !important;
    color: #888 !important;
}
.fd-ticker-hour {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #e53935 !important;
}

/* Mobile Ticker */
@media (max-width: 768px) {
    .fd-ticker-tabs {
        padding: 6px 10px !important;
    }
    .fd-ticker-tab {
        padding: 5px 8px !important;
        font-size: 10px !important;
    }
    .fd-ticker-match {
        min-width: 180px !important;
        padding: 10px 12px !important;
    }
    .fd-ticker-logo {
        width: 24px !important;
        height: 24px !important;
    }
    .fd-ticker-name {
        font-size: 10px !important;
    }
    .fd-ticker-score span {
        font-size: 14px !important;
    }
}

/* ====================== */
/* WIDGET CALENDARIO */
/* ====================== */
.fd-widget-calendar {
    font-size: 13px !important;
}
.fd-w-cal-day {
    margin-bottom: 10px !important;
}
.fd-w-cal-date {
    font-weight: 600 !important;
    color: #666 !important;
    padding: 5px 0 !important;
    border-bottom: 1px solid #eee !important;
    margin-bottom: 5px !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
}
.fd-w-cal-today {
    color: #e53935 !important;
    border-bottom-color: #e53935 !important;
}
.fd-w-cal-match {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 0 !important;
    border-bottom: 1px solid #f5f5f5 !important;
}
.fd-w-cal-match:last-child {
    border-bottom: none !important;
}
.fd-w-cal-live {
    background: rgba(229, 57, 53, 0.05) !important;
    margin: 0 -10px !important;
    padding: 6px 10px !important;
    border-radius: 4px !important;
}
.fd-w-cal-time {
    min-width: 36px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #666 !important;
    text-align: center !important;
}
.fd-w-cal-live-badge {
    background: #e53935 !important;
    color: #fff !important;
    padding: 2px 5px !important;
    border-radius: 3px !important;
    font-size: 10px !important;
    animation: fd-pulse 1.5s infinite !important;
}
.fd-w-cal-fin {
    color: #999 !important;
    font-size: 10px !important;
}
.fd-w-cal-teams {
    flex: 1 !important;
    min-width: 0 !important;
}
.fd-w-cal-team {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 1px 0 !important;
}
.fd-w-cal-team span {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 12px !important;
}
.fd-w-cal-score {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-width: 20px !important;
}
.fd-w-cal-score span {
    font-weight: 700 !important;
    font-size: 12px !important;
    color: #1e3a5f !important;
    line-height: 1.4 !important;
}

/* ====================== */
/* TICKER PROSSIME PARTITE */
/* ====================== */
.fd-next-ticker-wrap,
div.fd-next-ticker-wrap {
    width: 100% !important;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1) !important;
    overflow: hidden !important;
    margin-bottom: 20px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    box-sizing: border-box !important;
}
.fd-next-ticker-wrap *,
div.fd-next-ticker-wrap * {
    box-sizing: border-box !important;
}
.fd-next-ticker-wrap .fd-next-ticker-header,
div.fd-next-ticker-wrap .fd-next-ticker-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 15px !important;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%) !important;
    color: #fff !important;
}
.fd-next-ticker-wrap .fd-next-ticker-league-logo,
div.fd-next-ticker-wrap .fd-next-ticker-league-logo {
    width: 24px !important;
    height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    object-fit: contain !important;
    display: inline-block !important;
    vertical-align: middle !important;
}
.fd-next-ticker-wrap .fd-next-ticker-title,
div.fd-next-ticker-wrap .fd-next-ticker-title {
    font-size: 14px !important;
    font-weight: 600 !important;
    flex: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}
.fd-next-ticker-wrap .fd-next-ticker-count,
div.fd-next-ticker-wrap .fd-next-ticker-count {
    font-size: 11px !important;
    opacity: 0.8 !important;
    background: rgba(255,255,255,0.2) !important;
    padding: 3px 8px !important;
    border-radius: 10px !important;
}
.fd-next-ticker-wrap .fd-next-ticker-container,
div.fd-next-ticker-wrap .fd-next-ticker-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    padding: 10px !important;
    overflow-x: auto !important;
    scrollbar-width: thin !important;
}
.fd-next-ticker-wrap .fd-next-ticker-scroll,
div.fd-next-ticker-wrap .fd-next-ticker-scroll {
    overflow-x: hidden !important;
}
.fd-next-ticker-wrap .fd-next-ticker-container::-webkit-scrollbar {
    height: 4px !important;
}
.fd-next-ticker-wrap .fd-next-ticker-container::-webkit-scrollbar-track {
    background: #f0f0f0 !important;
}
.fd-next-ticker-wrap .fd-next-ticker-container::-webkit-scrollbar-thumb {
    background: #ccc !important;
    border-radius: 2px !important;
}
.fd-next-ticker-wrap .fd-next-ticker-match,
div.fd-next-ticker-wrap .fd-next-ticker-match {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 15px !important;
    background: #f9f9f9 !important;
    border-radius: 8px !important;
    margin-right: 10px !important;
    min-width: 280px !important;
    max-width: 320px !important;
    flex-shrink: 0 !important;
    border: 1px solid #eee !important;
    transition: all 0.2s !important;
}
.fd-next-ticker-wrap .fd-next-ticker-match:hover,
div.fd-next-ticker-wrap .fd-next-ticker-match:hover {
    background: #f0f0f0 !important;
    border-color: #ddd !important;
}
.fd-next-ticker-wrap .fd-next-ticker-today,
div.fd-next-ticker-wrap .fd-next-ticker-today {
    background: #e8f4fc !important;
    border-color: #1e3a5f !important;
    border-left: 3px solid #1e3a5f !important;
}
.fd-next-ticker-wrap .fd-next-ticker-datetime,
div.fd-next-ticker-wrap .fd-next-ticker-datetime {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 55px !important;
    max-width: 55px !important;
    padding-right: 10px !important;
    border-right: 1px solid #ddd !important;
}
.fd-next-ticker-wrap .fd-next-ticker-date,
div.fd-next-ticker-wrap .fd-next-ticker-date {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #1e3a5f !important;
    text-transform: uppercase !important;
    display: block !important;
    line-height: 1.2 !important;
}
.fd-next-ticker-wrap .fd-next-ticker-today .fd-next-ticker-date,
div.fd-next-ticker-wrap .fd-next-ticker-today .fd-next-ticker-date {
    color: #e53935 !important;
}
.fd-next-ticker-wrap .fd-next-ticker-time,
div.fd-next-ticker-wrap .fd-next-ticker-time {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    display: block !important;
    line-height: 1.2 !important;
}
.fd-next-ticker-wrap .fd-next-ticker-team,
div.fd-next-ticker-wrap .fd-next-ticker-team {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    flex: 1 !important;
    min-width: 0 !important;
}
.fd-next-ticker-wrap .fd-next-ticker-home,
div.fd-next-ticker-wrap .fd-next-ticker-home {
    justify-content: flex-end !important;
    text-align: right !important;
}
.fd-next-ticker-wrap .fd-next-ticker-home .fd-next-ticker-name,
div.fd-next-ticker-wrap .fd-next-ticker-home .fd-next-ticker-name {
    order: -1 !important;
}
.fd-next-ticker-wrap .fd-next-ticker-away,
div.fd-next-ticker-wrap .fd-next-ticker-away {
    justify-content: flex-start !important;
}
.fd-next-ticker-wrap .fd-next-ticker-logo,
div.fd-next-ticker-wrap .fd-next-ticker-logo,
.fd-next-ticker-wrap img.fd-next-ticker-logo,
div.fd-next-ticker-wrap img.fd-next-ticker-logo {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 !important;
    padding: 0 !important;
}
.fd-next-ticker-wrap .fd-next-ticker-name,
div.fd-next-ticker-wrap .fd-next-ticker-name {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #333 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}
.fd-next-ticker-wrap .fd-next-ticker-vs,
div.fd-next-ticker-wrap .fd-next-ticker-vs {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #999 !important;
    padding: 0 5px !important;
    flex-shrink: 0 !important;
}
.fd-next-ticker-wrap .fd-next-ticker-empty,
div.fd-next-ticker-wrap .fd-next-ticker-empty {
    padding: 20px !important;
    text-align: center !important;
    color: #666 !important;
}

/* ====================== */
/* TICKER BAR STILE GAZZETTA */
/* ====================== */
.fd-ticker-bar,
div.fd-ticker-bar {
    width: 100% !important;
    background: #f5f5f5 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    box-sizing: border-box !important;
}
.fd-ticker-bar *,
div.fd-ticker-bar * {
    box-sizing: border-box !important;
}
.fd-ticker-bar .fd-ticker-bar-header,
div.fd-ticker-bar .fd-ticker-bar-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 8px 15px !important;
    background: #fff !important;
    border-bottom: 1px solid #eee !important;
}
.fd-ticker-bar .fd-ticker-bar-live,
div.fd-ticker-bar .fd-ticker-bar-live {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 6px !important;
    color: #e53935 !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}
.fd-ticker-bar .fd-ticker-bar-dot,
div.fd-ticker-bar .fd-ticker-bar-dot {
    width: 8px !important;
    height: 8px !important;
    background: #e53935 !important;
    border-radius: 50% !important;
    animation: fd-blink 1s infinite !important;
}
.fd-ticker-bar .fd-ticker-bar-label,
div.fd-ticker-bar .fd-ticker-bar-label {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #666 !important;
    text-transform: uppercase !important;
    padding: 4px 10px !important;
    background: #f0f0f0 !important;
    border-radius: 3px !important;
}
.fd-ticker-bar .fd-ticker-bar-scroll,
div.fd-ticker-bar .fd-ticker-bar-scroll {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    position: relative !important;
    padding: 10px 0 !important;
}
.fd-ticker-bar .fd-ticker-bar-arrow,
div.fd-ticker-bar .fd-ticker-bar-arrow {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 50% !important;
    color: #e53935 !important;
    font-size: 24px !important;
    font-weight: 300 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s !important;
    flex-shrink: 0 !important;
    margin: 0 5px !important;
    padding: 0 !important;
    line-height: 1 !important;
}
.fd-ticker-bar .fd-ticker-bar-arrow:hover,
div.fd-ticker-bar .fd-ticker-bar-arrow:hover {
    background: #e53935 !important;
    color: #fff !important;
    border-color: #e53935 !important;
}
.fd-ticker-bar .fd-ticker-bar-container,
div.fd-ticker-bar .fd-ticker-bar-container {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    flex: 1 !important;
    padding: 5px !important;
}
.fd-ticker-bar .fd-ticker-bar-container::-webkit-scrollbar {
    display: none !important;
}
.fd-ticker-bar .fd-ticker-bar-card,
div.fd-ticker-bar .fd-ticker-bar-card {
    display: flex !important;
    flex-direction: column !important;
    background: #fff !important;
    border-radius: 6px !important;
    padding: 10px 15px !important;
    min-width: 180px !important;
    max-width: 200px !important;
    flex-shrink: 0 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
    border: 1px solid #eee !important;
}
.fd-ticker-bar .fd-ticker-bar-card-live,
div.fd-ticker-bar .fd-ticker-bar-card-live {
    border-left: 3px solid #e53935 !important;
    background: #fff5f5 !important;
}
.fd-ticker-bar .fd-ticker-bar-team,
div.fd-ticker-bar .fd-ticker-bar-team {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 4px 0 !important;
}
.fd-ticker-bar .fd-ticker-bar-logo,
div.fd-ticker-bar .fd-ticker-bar-logo,
.fd-ticker-bar img.fd-ticker-bar-logo,
div.fd-ticker-bar img.fd-ticker-bar-logo {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    max-width: 20px !important;
    min-height: 20px !important;
    max-height: 20px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}
.fd-ticker-bar .fd-ticker-bar-name,
div.fd-ticker-bar .fd-ticker-bar-name {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #333 !important;
    flex: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.fd-ticker-bar .fd-ticker-bar-score,
div.fd-ticker-bar .fd-ticker-bar-score {
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    background: #4a4a4a !important;
    color: #fff !important;
    padding: 6px 10px !important;
    border-radius: 4px !important;
    min-width: 30px !important;
}
.fd-ticker-bar .fd-ticker-bar-card {
    position: relative !important;
    padding-right: 50px !important;
}
.fd-ticker-bar .fd-ticker-bar-score span,
div.fd-ticker-bar .fd-ticker-bar-score span {
    font-size: 14px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}
.fd-ticker-bar .fd-ticker-bar-footer,
div.fd-ticker-bar .fd-ticker-bar-footer {
    margin-top: 6px !important;
    padding-top: 6px !important;
    border-top: 1px solid #eee !important;
    text-align: center !important;
}
.fd-ticker-bar .fd-ticker-bar-datetime,
div.fd-ticker-bar .fd-ticker-bar-datetime {
    font-size: 11px !important;
    color: #666 !important;
}
.fd-ticker-bar .fd-ticker-bar-datetime strong,
div.fd-ticker-bar .fd-ticker-bar-datetime strong {
    color: #333 !important;
}
.fd-ticker-bar .fd-ticker-bar-minute,
div.fd-ticker-bar .fd-ticker-bar-minute {
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #e53935 !important;
    animation: fd-blink 1s infinite !important;
}

/* Layout Fisso (griglia) */
.fd-ticker-bar.fd-ticker-bar-fixed,
div.fd-ticker-bar.fd-ticker-bar-fixed {
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 8px !important;
    padding: 15px !important;
}
.fd-ticker-bar.fd-ticker-bar-fixed .fd-ticker-bar-scroll,
div.fd-ticker-bar.fd-ticker-bar-fixed .fd-ticker-bar-scroll {
    padding: 0 !important;
}
.fd-ticker-bar.fd-ticker-bar-fixed .fd-ticker-bar-container,
div.fd-ticker-bar.fd-ticker-bar-fixed .fd-ticker-bar-container {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    overflow: visible !important;
    justify-content: flex-start !important;
}
.fd-ticker-bar.fd-ticker-bar-fixed .fd-ticker-bar-card,
div.fd-ticker-bar.fd-ticker-bar-fixed .fd-ticker-bar-card {
    flex: 0 0 calc(25% - 8px) !important;
    max-width: calc(25% - 8px) !important;
    min-width: 0 !important;
}
@media (max-width: 1200px) {
    .fd-ticker-bar.fd-ticker-bar-fixed .fd-ticker-bar-card,
    div.fd-ticker-bar.fd-ticker-bar-fixed .fd-ticker-bar-card {
        flex: 0 0 calc(33.333% - 8px) !important;
        max-width: calc(33.333% - 8px) !important;
    }
}
@media (max-width: 768px) {
    .fd-ticker-bar.fd-ticker-bar-fixed .fd-ticker-bar-card,
    div.fd-ticker-bar.fd-ticker-bar-fixed .fd-ticker-bar-card {
        flex: 0 0 calc(50% - 5px) !important;
        max-width: calc(50% - 5px) !important;
    }
}
@media (max-width: 480px) {
    .fd-ticker-bar.fd-ticker-bar-fixed .fd-ticker-bar-card,
    div.fd-ticker-bar.fd-ticker-bar-fixed .fd-ticker-bar-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}
    animation: fd-blink 1s infinite !important;
}

/* Mobile */
@media (max-width: 768px) {
    .fd-ticker-bar .fd-ticker-bar-card,
    div.fd-ticker-bar .fd-ticker-bar-card {
        min-width: 160px !important;
        padding: 8px 12px !important;
        padding-right: 45px !important;
    }
    .fd-ticker-bar .fd-ticker-bar-arrow,
    div.fd-ticker-bar .fd-ticker-bar-arrow {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        font-size: 20px !important;
    }
    .fd-ticker-bar .fd-ticker-bar-logo,
    div.fd-ticker-bar .fd-ticker-bar-logo {
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        max-width: 18px !important;
    }
    .fd-ticker-bar .fd-ticker-bar-name,
    div.fd-ticker-bar .fd-ticker-bar-name {
        font-size: 11px !important;
    }
}
    padding: 0 5px !important;
}
.fd-next-ticker-empty {
    padding: 20px !important;
    text-align: center !important;
    color: #666 !important;
}

/* Mobile */
@media (max-width: 768px) {
    .fd-next-ticker-match {
        min-width: 240px !important;
        padding: 10px 12px !important;
        gap: 8px !important;
    }
    .fd-next-ticker-logo {
        width: 24px !important;
        height: 24px !important;
    }
    .fd-next-ticker-name {
        font-size: 11px !important;
    }
    .fd-next-ticker-datetime {
        min-width: 45px !important;
    }
}

/* ====================== */
/* ROUND RESULTS */
/* ====================== */
.fd-round-results .fd-match {
    display: grid !important;
    grid-template-columns: 60px 1fr 80px 1fr !important;
    align-items: center !important;
    padding: 12px 15px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    background: #fff !important;
}
.fd-round-results .fd-match:last-child {
    border-bottom: none !important;
}
.fd-round-results .fd-match:hover {
    background: #fafafa !important;
}
.fd-round-results .fd-match-live {
    background: #fff5f5 !important;
    border-left: 3px solid #e53935 !important;
}
.fd-round-results .fd-match-finished {
    border-left: 3px solid #4caf50 !important;
}

.fd-round-results .fd-match-time {
    text-align: center !important;
}
.fd-round-results .fd-time {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #666 !important;
}
.fd-round-results .fd-status-ft {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #4caf50 !important;
}
.fd-round-results .fd-live-badge {
    display: inline-block !important;
    padding: 3px 8px !important;
    background: #e53935 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    border-radius: 4px !important;
    animation: fdBlink 1s infinite !important;
}
.fd-round-results .fd-vs {
    color: #999 !important;
    font-size: 12px !important;
}

.fd-round-results .fd-match-home {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 10px !important;
    text-align: right !important;
}
.fd-round-results .fd-match-away {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    text-align: left !important;
}
.fd-round-results .fd-team-name {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #333 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
.fd-round-results .fd-team-logo {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
    flex-shrink: 0 !important;
}
.fd-round-results .fd-match-score {
    text-align: center !important;
}
.fd-round-results .fd-score {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1e3a5f !important;
}

/* Mobile Round Results */
@media (max-width: 600px) {
    .fd-round-results .fd-match {
        grid-template-columns: 50px 1fr 60px 1fr !important;
        padding: 10px !important;
        gap: 5px !important;
    }
    .fd-round-results .fd-team-name {
        font-size: 12px !important;
    }
    .fd-round-results .fd-team-logo {
        width: 22px !important;
        height: 22px !important;
    }
    .fd-round-results .fd-score {
        font-size: 15px !important;
    }
}
