    /* Base CSS */
    :root { --glass: rgba(21, 27, 43, 0.6); --glass-border: rgba(255, 255, 255, 0.08); --accent: #00e676; --text-main: #e2e8f0; --text-sub: #94a3b8; }
    body { background-color: #0b0e14; color: var(--text-main); font-family: 'Inter', sans-serif; }
    .sh-container { max-width: 1000px; margin: 20px auto; padding: 0 15px 60px; }
    .sh-hero { background: linear-gradient(145deg, #1e293b, #0f172a); border-radius: 16px; padding: 25px 20px; border: 1px solid var(--glass-border); text-align: center; margin-bottom: 25px; }
    .hero-top { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; color: var(--text-sub); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; }
    .cup-logo-mini { width: 20px; height: 20px; object-fit: contain; }
    .hero-main { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; }
    .team-box { display: flex; flex-direction: column; align-items: center; gap: 10px; }
    .t-logo { width: 64px; height: 64px; object-fit: contain; }
    .t-name { font-weight: 700; font-size: 1.1rem; }
    .score-now { font-size: 2.5rem; font-weight: 800; color: #fff; }
    .status-pill { margin-top: 5px; padding: 4px 12px; border-radius: 20px; background: rgba(255,255,255,0.1); color: var(--accent); font-size: 0.85rem; font-weight: 700; }
    
    .sh-tabs { display: flex; gap: 10px; overflow-x: auto; margin-bottom: 20px; position: sticky; top: 70px; z-index: 90; background: #0b0e14; padding: 10px 0; }
    .tab { background: #1e293b; color: var(--text-sub); border: 1px solid var(--glass-border); padding: 10px 20px; border-radius: 30px; cursor: pointer; white-space: nowrap; }
    .tab.active { background: var(--accent); color: #000; }
    .pane { display: none; } .pane.active { display: block; animation: fadeIn 0.3s ease; }
    .sh-card { background: #151b2b; border-radius: 12px; border: 1px solid var(--glass-border); padding: 20px; margin-bottom: 20px; }
    
    /* Timeline Styles */
    .timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,0.1); transform: translateX(-50%); }
    .tl-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; position: relative; }
    .tl-time { position: absolute; left: 50%; transform: translateX(-50%); background: #151b2b; border: 1px solid var(--glass-border); padding: 2px 8px; border-radius: 12px; font-size: 0.75rem; z-index: 2; }
    .tl-card { width: 42%; display: flex; align-items: center; gap: 10px; padding: 10px; background: rgba(255,255,255,0.03); border-radius: 8px; }
    .tl-item.home .tl-card { margin-right: auto; flex-direction: row-reverse; text-align: right; }
    
    /* Internal Linking CSS */
    .player-link { color: var(--text-main); text-decoration: none; border-bottom: 1px dotted var(--text-sub); transition: 0.2s ease; }
    .player-link:hover { color: var(--accent); border-bottom-color: var(--accent); }
    
    /* Pitch Styles */
    .pitch-container { position: relative; background: linear-gradient(to bottom, #2e7d32, #388e3c); border-radius: 8px; padding: 20px 10px; min-height: 600px; border: 2px solid rgba(255,255,255,0.2); }
    .p-row { display: flex; justify-content: center; gap: 15px; width: 100%; margin-bottom: 15px; }
    .p-node { display: flex; flex-direction: column; align-items: center; width: 60px; text-decoration: none; color: inherit; }
    
    /* Player Link Hover Effects */
    .p-link { cursor: pointer; transition: transform 0.2s ease; }
    .p-link:hover { transform: translateY(-3px); }
    .p-link:hover .p-img { border-color: var(--accent); box-shadow: 0 4px 10px rgba(0,0,0,0.5); }
    .p-link:hover .p-name { color: var(--accent); background: rgba(0,0,0,0.7); }
    
    .p-img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid #fff; transition: all 0.2s ease; background: #1e293b; object-fit: cover; }
    .p-name { font-size: 0.7rem; color: #fff; background: rgba(0,0,0,0.4); padding: 2px 6px; border-radius: 4px; margin-top: 4px; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%; transition: all 0.2s ease; }
    
    /* Stats & H2H */
    .stat-row { margin-bottom: 16px; }
    .stat-bar-bg { width: 100%; height: 6px; background: #334155; border-radius: 3px; }
    .stat-bar-fill { height: 100%; background: var(--accent); }
    .league-link{ text-decoration:none; color:var(--text-sub); font-weight:600; transition: color 0.2s;}
    .league-link:hover{ color:var(--accent); }
    .h2h-item { display: flex; padding: 15px; background: rgba(255,255,255,0.03); border-radius: 8px; margin-bottom: 10px; text-decoration: none; color: inherit; align-items: center; transition: background 0.2s; }
    .h2h-item:hover { background: rgba(255,255,255,0.06); }
    .info-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
    
    .team-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.team-link:hover .t-name {
    color: #00e676;
}