:root {
    --bg-main: #0b0e14;       /* En arka plan zemin */
    --bg-sidebar: #131620;    /* Sol menü zemini */
    --bg-panel: #1a1e29;      /* Kartların zemini */
    --bg-hover: #1b202e;      /* Menü hover rengi */
    
    --accent-cyan: #00f2fe;   /* Aktif menü sol şeridi ve ikonlar */
    --accent-green: #00ffba;  /* Yenile butonlarındaki fıstık yeşili */
    
    --text-main: #ffffff;
    --text-muted: #8b92a5;
    --border-color: #212635;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', 'Outfit', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    height: 100vh;
    overflow: hidden;
}

/* LAYOUT (Masaüstü Kliniği) */
.app-layout {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* SOL MENÜ (SIDEBAR) */
.sidebar {
    width: 250px;
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.brand {
    padding: 25px 20px;
    border-bottom: 1px solid var(--border-color);
}
.brand h1 {
    font-size: 1.5rem;
    color: #ffb300; /* Taç sarısı / gradient hissi */
    background: linear-gradient(90deg, #ffb300, #ffea00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}
.brand p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.side-menu {
    flex: 1;
    padding: 15px 0;
    overflow-y: auto;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.2s;
    border-left: 3px solid transparent;
}
.menu-item .icon {
    margin-right: 12px;
    font-size: 1.1rem;
}
.menu-item:hover {
    background-color: var(--bg-hover);
    color: var(--text-main);
}
.menu-item.active {
    background-color: var(--bg-hover);
    color: var(--text-main);
    border-left: 3px solid var(--accent-cyan);
}
.menu-item.active .icon {
    color: var(--accent-cyan);
}

.sidebar-footer {
    padding: 15px 0;
    border-top: 1px solid var(--border-color);
}

/* SAĞ İÇERİK (MAIN CONTENT) */
.content-area {
    flex: 1;
    padding: 30px 40px;
    overflow-y: auto;
    background-color: var(--bg-main);
}

.header-banner {
    margin-bottom: 25px;
}
.header-banner h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.header-banner p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Sections */
.view-section {
    display: none;
    animation: fadeIn 0.2s ease;
}
.view-section.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Cards */
.card {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
}

/* Forms */
.input-row {
    display: flex;
    gap: 20px;
}
.input-group {
    flex: 1;
    margin-bottom: 20px;
}
.input-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}
input, select {
    width: 100%;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}
input:focus, select:focus {
    border-color: var(--accent-cyan);
}

/* Butonlar (Neon Yeşili/Mavisi) */
.primary-btn {
    width: 100%;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: transform 0.1s;
}
.primary-btn:active { transform: scale(0.98); }
.primary-btn.neon-green {
    background: linear-gradient(90deg, #00ffba, #00c853);
}
.primary-btn.neon-cyan {
    background: linear-gradient(90deg, #00f2fe, #4facfe);
}

/* Oyuncu Satırları (Kadro Sonucu) */
.player-row {
    background-color: var(--bg-panel);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.pos-badge {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    min-width: 80px;
    text-align: center;
    margin-right: 15px;
}
.player-info {
    display: flex;
    align-items: center;
}
.player-score {
    text-align: right;
}
.score-val {
    color: var(--accent-green);
    font-weight: bold;
    font-size: 1.1rem;
}
.score-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===================== PAZAR YERİ (SCOUT) — 2 PANEL ===================== */
.scout-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.scout-left { flex: 1; min-width: 0; }
.scout-right { flex: 1.1; min-width: 0; }

.search-bar { display: flex; gap: 10px; margin-bottom: 15px; }
.search-bar input { flex: 1; }
.search-bar .primary-btn { width: auto; padding: 10px 20px; }

.player-list, .listing-list { display: flex; flex-direction: column; gap: 8px; }
.hint { color: var(--text-muted); font-size: 0.85rem; text-align: center; padding: 12px 0; }

/* Sol: oyuncu kartı (isim/kulüp/L5-L15/floor) */
.scout-player {
    display: flex; align-items: center; gap: 12px;
    background: var(--bg-main); border: 1px solid var(--border-color);
    border-radius: 8px; padding: 10px 12px; cursor: pointer; transition: 0.15s;
}
.scout-player:hover { border-color: var(--accent-cyan); }
.scout-player.selected { border-color: var(--accent-cyan); background: var(--bg-hover); }
.scout-player img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.scout-player .sp-main { flex: 1; min-width: 0; }
.scout-player .sp-name { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.scout-player .sp-sub { font-size: 0.75rem; color: var(--text-muted); }
.scout-player .sp-price { text-align: right; }
.scout-player .sp-floor { color: var(--accent-green); font-weight: bold; }
.scout-player .sp-avg { font-size: 0.72rem; color: var(--text-muted); }

/* Sağ drawer */
.drawer-title { font-size: 1.2rem; margin-bottom: 12px; }
.drawer-toolbar { display: flex; gap: 10px; margin-bottom: 12px; align-items: center; }
.seg { display: flex; border: 1px solid var(--border-color); border-radius: 6px; overflow: hidden; }
.seg-btn {
    background: var(--bg-main); color: var(--text-muted); border: none;
    padding: 8px 14px; font-size: 0.85rem; font-weight: 600; cursor: pointer;
}
.seg-btn.active { background: var(--accent-cyan); color: #000; }
.drawer-toolbar select { width: auto; padding: 8px 10px; }
.price-graph {
    border: 1px dashed var(--border-color); border-radius: 6px;
    min-height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}

/* İlan satırı (fiyat / süre / seri / satıcı) */
.listing-row {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--bg-main); border: 1px solid var(--border-color);
    border-radius: 6px; padding: 10px 12px;
}
.listing-row .lr-price { color: var(--accent-green); font-weight: bold; font-size: 1rem; }
.listing-row .lr-meta { font-size: 0.72rem; color: var(--text-muted); }
.listing-row .lr-badge {
    background: var(--bg-panel); border: 1px solid var(--border-color);
    border-radius: 4px; padding: 2px 8px; font-size: 0.72rem; color: var(--text-muted);
}
.listing-row.offsale { opacity: 0.55; }

/* Mobil Cihazlara Uyumluluk */
@media (max-width: 768px) {
    .scout-layout { flex-direction: column; }
    .scout-left, .scout-right { width: 100%; flex: none; }
    .app-layout { flex-direction: column; }
    .sidebar { width: 100%; height: auto; flex-direction: row; align-items: center; border-right: none; border-bottom: 1px solid var(--border-color); }
    .brand { border-bottom: none; border-right: 1px solid var(--border-color); padding: 10px 15px; }
    .side-menu { display: flex; flex-direction: row; padding: 0; overflow-x: auto; white-space: nowrap; }
    .menu-item { padding: 15px; border-left: none; border-bottom: 3px solid transparent; }
    .menu-item.active { border-left: none; border-bottom: 3px solid var(--accent-cyan); }
    .sidebar-footer { display: none; }
    .content-area { padding: 20px 15px; }
    .input-row { flex-direction: column; gap: 0; }
}

/* ===================== PRO BİLEŞENLER ===================== */
/* Dashboard hero + hızlı kartlar */
.hero-card {
    background: linear-gradient(135deg, #16203a, #1a1e29);
    border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; margin-bottom: 18px;
}
.hero-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.hero-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.hero-card .primary-btn { width: auto; padding: 12px 22px; }
.quick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.quick-card {
    background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 10px;
    padding: 16px; cursor: pointer; transition: 0.15s; display: flex; flex-direction: column; gap: 4px;
}
.quick-card:hover { border-color: var(--accent-cyan); transform: translateY(-2px); }
.quick-card .q-icon { font-size: 1.6rem; }
.quick-card b { font-size: 0.95rem; }
.quick-card span:last-child { font-size: 0.78rem; color: var(--text-muted); }

/* Veri Merkezi durum kartları */
.status-list { display: flex; flex-direction: column; gap: 10px; }
.status-card { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 8px; padding: 12px 14px; }
.sc-top { display: flex; justify-content: space-between; align-items: center; gap: 8px; flex-wrap: wrap; }
.sc-desc { color: var(--text-muted); font-size: 0.82rem; margin-top: 4px; }
.sc-path { color: #5a6075; font-size: 0.72rem; margin-top: 3px; }

/* Açık Artırma kart gridi */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.auc-card { background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; }
.auc-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; background: var(--bg-main); }
.auc-body { padding: 8px 10px; }
.auc-name { font-weight: 600; font-size: 0.85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.auc-sub { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 6px; }
.auc-foot { display: flex; justify-content: space-between; align-items: center; }
.auc-bid { color: var(--accent-green); font-weight: bold; font-size: 0.85rem; }
.auc-time { font-size: 0.72rem; color: var(--text-muted); }

/* Lineup özeti + bütçe çubuğu */
.lineup-summary { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ls-top { display: flex; justify-content: space-between; font-size: 0.9rem; margin-bottom: 8px; }
.budget-bar { height: 8px; background: var(--bg-main); border-radius: 5px; overflow: hidden; }
.budget-bar > div { height: 100%; transition: width .4s; }
.thr-ok { font-size: 0.8rem; color: var(--accent-green); margin-top: 6px; }
.warn { color: #f59e0b; font-size: 0.82rem; margin-top: 8px; }
.err { color: #ef4444; }

/* Oyuncular profil kutuları */
.oy-detay { background: var(--bg-main); border: 1px solid var(--border-color); border-top: none; border-radius: 0 0 8px 8px; padding: 12px; margin-top: -8px; margin-bottom: 10px; }
.stat-row { display: flex; gap: 10px; }
.stat-box { flex: 1; text-align: center; }

/* Yakında kartları */
.soon-card { background: var(--bg-panel); border: 1px dashed var(--border-color); border-radius: 12px; padding: 40px 20px; text-align: center; }
.soon-emoji { font-size: 3rem; display: block; margin-bottom: 12px; }
.soon-card b { font-size: 1.2rem; display: block; margin-bottom: 6px; color: var(--accent-cyan); }
.soon-card p { color: var(--text-muted); font-size: 0.9rem; }

/* Ayarlar */
.setting-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border-color); }
.setting-row:last-of-type { border-bottom: none; }
.user-info { color: var(--accent-cyan); margin-top: 6px; font-size: 0.8rem; }

/* ===================== MOBİL-ÖNCELİKLİ (alt tab bar) ===================== */
@media (max-width: 768px) {
    body { overflow-y: auto; }
    .app-layout { flex-direction: column; }
    /* Sidebar → alt sabit tab bar */
    .sidebar {
        position: fixed; bottom: 0; left: 0; right: 0; width: 100%; height: 62px;
        flex-direction: row; border-right: none; border-top: 1px solid var(--border-color);
        z-index: 100; background: var(--bg-sidebar);
    }
    .brand { display: none; }
    /* Ayarlar mobilde de erişilebilsin → alt çubuğun sağına sabit */
    .sidebar-footer { display: flex; align-items: center; border-top: none; padding: 0; flex-shrink: 0; }
    .side-menu {
        flex: 1; flex-direction: row; padding: 0; overflow-x: auto; overflow-y: hidden;
        white-space: nowrap; -webkit-overflow-scrolling: touch;
    }
    .side-menu::-webkit-scrollbar { display: none; }
    .menu-item {
        flex-direction: column; gap: 2px; padding: 8px 14px; border-left: none;
        min-width: 64px; justify-content: center;
    }
    .menu-item .icon { margin-right: 0; font-size: 1.3rem; }
    .menu-item .lbl { font-size: 0.62rem; }
    .menu-item.active { border-left: none; border-bottom: none; background: transparent; }
    .menu-item.active .lbl { color: var(--accent-cyan); }
    /* İçerik: alt bara çarpmasın */
    .content-area { padding: 16px 14px 80px; }
    .header-banner h2 { font-size: 1.4rem; }
    .input-row { flex-direction: column; gap: 0; }
    .scout-layout { flex-direction: column; }
    .scout-left, .scout-right { width: 100%; flex: none; }
    .quick-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    /* Dokunma hedefleri büyüt */
    .primary-btn { padding: 14px; font-size: 1rem; }
    input, select { padding: 12px 15px; font-size: 1rem; }
}

/* ===================== SKORLAR / MAÇLAR ===================== */
.match-day { margin-bottom: 18px; }
.md-title { font-size: 0.85rem; color: var(--accent-cyan); font-weight: 700; text-transform: capitalize; margin-bottom: 8px; padding-bottom: 4px; border-bottom: 1px solid var(--border-color); }
.match-row {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px;
    background: var(--bg-panel); border: 1px solid var(--border-color);
    border-radius: 8px 8px 0 0; padding: 12px 14px; margin-top: 8px;
}
.m-team { font-weight: 600; font-size: 0.9rem; }
.m-team.home { text-align: right; }
.m-team.away { text-align: left; }
.m-score { color: var(--accent-green); font-weight: bold; font-size: 1.05rem; min-width: 56px; text-align: center; }
.m-time { color: var(--text-muted); font-size: 0.85rem; min-width: 56px; text-align: center; }
.m-comp { background: var(--bg-main); border: 1px solid var(--border-color); border-top: none; border-radius: 0 0 8px 8px; padding: 4px 14px; font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-bottom: 2px; }

/* ===================== TELEGRAM SAFE-AREA + MOBİL VIEWPORT ===================== */
:root {
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}
/* Modern mobil viewport (adres çubuğu/klavye ile bozulmasın) */
html, body { height: 100%; }
@supports (height: 100dvh) {
    .app-layout { min-height: 100dvh; }
}
@media (max-width: 768px) {
    body { height: auto; min-height: 100dvh; }
    /* Alt tab bar çentik/gesture barına çarpmasın */
    .sidebar {
        height: calc(60px + var(--safe-bottom));
        padding-bottom: var(--safe-bottom);
    }
    .side-menu { align-items: center; }
    /* İçerik: üstte çentik, altta tab bar + güvenli alan kadar boşluk */
    .content-area {
        padding-top: calc(16px + var(--safe-top));
        padding-bottom: calc(76px + var(--safe-bottom));
    }
    /* Telegram'da seçili menü üstte ince çizgi (alt bar olduğu için) */
    .menu-item.active { border-top: 2px solid var(--accent-cyan); }
    .menu-item.active .icon { color: var(--accent-cyan); }
}

/* ===================== OYUNCULAR — ANALİZ & FİLTRE ===================== */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; margin-top: 12px; }
.filter-bar select, .filter-bar input { width: auto; flex: 1; min-width: 90px; }
.oy-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.oy-head img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.oy-name { font-size: 1.05rem; font-weight: 700; }
.stat-box.custom { background: var(--bg-panel); border: 1px dashed var(--accent-cyan); border-radius: 6px; padding: 6px 4px; }
.stat-box.custom input { width: 42px; padding: 2px 4px; font-size: 0.8rem; text-align: center; display: inline-block; }
.gchart-wrap { margin-top: 12px; }
.gchart-lbl { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 6px; }
.gchart { display: flex; align-items: flex-end; gap: 4px; height: 70px; background: var(--bg-main); border: 1px solid var(--border-color); border-radius: 6px; padding: 6px; }
.gbar { flex: 1; height: 100%; display: flex; align-items: flex-end; }
.gbar > div { width: 100%; border-radius: 2px 2px 0 0; min-height: 4px; transition: height .3s; }

/* ===================== VERİ DURUMU (müşteri rozeti) ===================== */
.status-hero { margin-bottom: 14px; }
.hero-badge { display: flex; align-items: center; gap: 14px; background: var(--bg-panel); border: 1px solid var(--border-color); border-left: 5px solid var(--accent-green); border-radius: 12px; padding: 18px 20px; }
.hb-icon { font-size: 2rem; }
.hb-title { font-size: 1.1rem; font-weight: 700; }
.hb-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }

/* ===================== MAÇ DİZİLİŞİ (tıkla→aç) ===================== */
.match-row { cursor: pointer; transition: 0.15s; }
.match-row:hover { border-color: var(--accent-cyan); }
.mac-dizilis { background: var(--bg-main); border: 1px solid var(--border-color); border-top: none; border-radius: 0 0 8px 8px; padding: 12px; margin-bottom: 4px; }
.dz-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dz-ad { font-weight: 700; font-size: 0.85rem; color: var(--accent-cyan); margin-bottom: 6px; padding-bottom: 4px; border-bottom: 1px solid var(--border-color); }
.dz-oyuncu { display: flex; justify-content: space-between; font-size: 0.8rem; padding: 3px 0; }
.dz-oyuncu b { color: var(--accent-green); }

/* ===================== MAÇ DETAY SAYFASI (PRO) ===================== */
.md-hero { background: linear-gradient(135deg,#16203a,#1a1e29); border:1px solid var(--border-color); border-radius:12px; padding:20px; margin-bottom:16px; }
.md-teams { display:flex; justify-content:space-between; align-items:center; font-size:1.05rem; font-weight:700; gap:10px; }
.md-teams > span { flex:1; }
.md-teams > span:first-child { text-align:right; }
.md-teams > span:last-child { text-align:left; }
.md-skor { flex:0 0 auto !important; font-size:1.5rem; color:var(--accent-green); background:var(--bg-main); padding:6px 14px; border-radius:8px; }
.md-meta { text-align:center; color:var(--text-muted); font-size:0.8rem; margin-top:8px; }
.md-bolum { font-size:0.95rem; font-weight:700; color:var(--accent-cyan); margin-bottom:8px; }
.md-stars { margin-bottom:8px; }
.star-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.star-card { background:var(--bg-panel); border:1px solid var(--border-color); border-radius:8px; padding:8px; text-align:center; }
.star-score { font-size:1.2rem; font-weight:800; }
.star-name { font-size:0.78rem; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.star-pos { font-size:0.68rem; color:var(--text-muted); }

/* ===================== TANITICI / AÇIKLAMA (renkli bilgi kutusu) ===================== */
.info-legend { background:rgba(0,242,254,0.06); border:1px solid #1d3a44; border-radius:10px; padding:12px 14px; margin-bottom:14px; }
.info-legend .il-title { font-size:0.85rem; font-weight:700; color:var(--accent-cyan); margin-bottom:8px; }
.info-legend .il-row { display:flex; flex-wrap:wrap; gap:8px 16px; }
.info-legend .il-item { font-size:0.76rem; color:var(--text-muted); }
.info-legend .il-item b { color:var(--text-main); }
.chip { display:inline-block; padding:1px 7px; border-radius:10px; font-size:0.72rem; font-weight:700; }
.chip-green { background:rgba(0,255,186,0.15); color:var(--accent-green); }
.chip-yellow { background:rgba(255,179,0,0.15); color:#ffb300; }
.chip-red { background:rgba(239,68,68,0.15); color:#ef4444; }
.chip-cyan { background:rgba(0,242,254,0.12); color:var(--accent-cyan); }

/* ===================== MAÇ DETAY — 3 SEKME ===================== */
.md-tabs { width: 100%; margin-bottom: 14px; }
.md-tabs .seg-btn { flex: 1; }
/* İstatistik karşılaştırma barları */
.stat-line { margin-bottom: 12px; }
.stat-vals { display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem; margin-bottom: 4px; }
.stat-vals span { color: var(--text-muted); }
.stat-bar { display: flex; height: 6px; border-radius: 4px; overflow: hidden; background: var(--bg-main); }
.sb-home { background: var(--accent-cyan); }
.sb-away { background: #a78bfa; }
/* Oyuncular (en iyi performans) */
.perf-row { display: flex; align-items: center; gap: 10px; background: var(--bg-panel); border: 1px solid var(--border-color); border-radius: 8px; padding: 8px 10px; margin-bottom: 8px; }
.perf-row img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.perf-main { flex: 1; min-width: 0; }
.perf-name { font-weight: 600; font-size: 0.88rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.perf-nums { display: flex; align-items: center; gap: 10px; }
.perf-badge { color: #06121a; font-weight: 800; font-size: 0.9rem; border-radius: 8px; padding: 3px 8px; min-width: 34px; text-align: center; }
.perf-l10 { font-size: 0.72rem; color: var(--text-muted); }
.perf-fark { font-size: 0.8rem; font-weight: 700; min-width: 38px; text-align: right; }
