#sports { background: #11121b; padding: 80px 0; }
#sports .container { max-width: 1320px !important; }
#sports h2 { color: #fff; text-align: center; margin-bottom: 10px; font-size: 46px; font-weight: 900; font-style: italic; font-family: 'Poppins', sans-serif; }
#sports h2 .highlighted { color: #a72943; }

.sports-subtitle { color: #e8e6e3; text-align: center; font-size: 16px; max-width: 620px; margin: 0 auto 50px; }

.sports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.sport-card {
    background: linear-gradient(145deg, rgba(21,25,33,.9) 0%, rgba(26,32,48,.6) 100%);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 12px;
    padding: 28px;
    text-decoration: none;
    color: inherit;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.sport-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgb(39, 42, 51), transparent);
    opacity: 0;
    transition: opacity .3s;
}
.sport-card:hover::before { opacity: 1; }
.sport-card:hover {
    border-color: rgba(255,255,255,.08);
    transform: translateY(-2px);
    color: inherit;
    box-shadow: 0 16px 48px rgba(0,0,0,.25);
}

.sport-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; font-style: normal; }
.sport-card .league-count {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    color: #33c748;
    margin-bottom: 14px;
    display: block;
}
.sport-card .desc { font-size: 12px; color: #e8e6e3; margin-bottom: 16px; line-height: 1.5; }

.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
    font-size: 9px; font-weight: 700; padding: 3px 8px; border-radius: 3px;
    letter-spacing: .4px; text-transform: uppercase;
}
.t-sc { background: rgba(167,41,67,.12); color: #c94460; }
.t-hl { background: rgba(51,199,72,.1); color: #44b85e; }
.t-od { background: rgba(253,188,64,.1); color: #daa032; }
.t-st { background: rgba(108,135,255,.1); color: #7b9bff; }
.t-pr { background: rgba(192,130,255,.1); color: #b490e8; }
.t-li { background: rgba(20,184,166,.1); color: #20b09a; }
.t-ms { background: rgba(244,114,182,.1); color: #e070a8; }
.t-ev { background: rgba(251,191,36,.1); color: #d4a020; }

@media (max-width: 991px) { .sports-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .sports-grid { grid-template-columns: 1fr; } }