/* ============================================================
   SPORT ICONS — Asyasportv173 style kategori ikonları
   ============================================================ */

.sports-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.sports-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

/* Kategori filtre butonları */
.category-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #333;
}

.category-filter:hover {
    border-color: #007bff;
    background: #f8f9fa;
}

.category-filter.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}

.category-filter .icon {
    flex-shrink: 0;
}

.category-filter .text {
    font-size: 14px;
    font-weight: 500;
}

.category-filter .count {
    font-size: 12px;
    color: #666;
    margin-left: auto;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 4px;
}

.category-filter.active .count {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Maç kartı tasarımı */
.match-card {
    display: block;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    margin-bottom: 8px;
}

.match-card:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.match-card.active {
    border-color: #28a745;
    background: #f8fff8;
}

.match-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.match-date .event {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.match-date .time {
    font-weight: 600;
    color: #333;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.team {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
}

.team-logo {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    object-fit: contain;
}

.vs {
    font-size: 12px;
    color: #999;
    font-weight: 600;
}

/* GÜNÜN MAÇI badge */
.today-match {
    background-color: #ffe600;
    border: 2px solid #000;
    padding: 4px;
    border-radius: 8px;
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 2px 0 rgba(0,0,0,.25);
    color: #000;
    text-transform: uppercase;
    margin-right: 8px;
}

/* Match list grid */
.match-list-grid {
    display: grid;
    gap: 8px;
}

.match-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.match-search {
    margin-bottom: 16px;
}

.match-search input {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.match-search input:focus {
    border-color: #007bff;
}

/* Loading state */
.loading {
    text-align: center;
    padding: 32px;
    color: #666;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f0f0f0;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .match-filters {
        padding: 12px;
    }
    
    .category-filter {
        padding: 6px 10px;
        font-size: 13px;
    }
    
    .match-card {
        padding: 10px;
    }
    
    .match-teams {
        gap: 8px;
    }
    
    .team {
        font-size: 13px;
    }
    
    .team-logo {
        width: 20px;
        height: 20px;
    }
}
