
.modern-filter-container {
    background: #1f2937;
    border-radius: 20px;
    padding: 24px;
    margin: 20px 0;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative !important;
    overflow: hidden !important;
        width: 100% !important;
    max-width: 100% !important;
}
.modern-filter-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
}
.modern-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.modern-filter-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
.modern-filter-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    padding: 6px 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.modern-filter-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-1px);
}
.modern-filter-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.modern-filter-container.collapsed .modern-filter-toggle i {
    transform: rotate(180deg);
}
.modern-filter-container.collapsed .modern-controls-wrapper,
.modern-filter-container.collapsed .modern-category-grid,
.modern-filter-container.collapsed .modern-advanced-panel {
        display: none !important;
}
.modern-filter-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.modern-filter-count {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.modern-controls-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.modern-search-container {
	display: flex;
	align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}
.modern-search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}
.modern-search-input {
	width: 100%;
    padding: 14px 50px 14px 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}
.modern-search-input::placeholder {
    color: #ffffff;
    font-weight: 400;
}
.modern-search-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}
.modern-search-box .modern-search-icon {
    position: absolute !important;
    left: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
        color: #ffffff !important;
    font-size: 18px !important;
        pointer-events: none !important;
    z-index: 10 !important;
    display: inline-block !important;
}
.modern-advanced-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0.8;
}
.modern-advanced-icon:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(1.1);
}
.modern-action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.modern-action-btn {
	display: flex;
	align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative;
	overflow: hidden;
}
.modern-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
	width: 100%;
	height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}
.modern-action-btn:hover::before {
    left: 100%;
}
.modern-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}
.modern-action-btn.active {
    background: #ffffff;
    color: #667eea;
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}
.modern-action-btn.active i {
    color: #667eea !important;
}
.modern-filter-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    min-height: 48px;
}
.modern-filter-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}
.modern-filter-toggle i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.modern-action-btn.active:hover {
    box-shadow: 0 8px 25px rgba(255,255,255,0.4);
}
.modern-action-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
    margin-left: 6px;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: none; 
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}
.modern-action-btn.active .modern-action-count {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}
.modern-category-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
}
.modern-filter-container .modern-category-container {
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    contain: layout !important;
}
.modern-filter-container .modern-category-container .modern-category-card {
    position: relative !important;
    float: none !important;
    width: auto !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
    margin: 0 !important;
}
@media (max-width: 768px) {
    .modern-filter-container .modern-category-container {
        position: relative !important;
        overflow: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    .modern-filter-container .modern-category-container .modern-category-card {
        position: relative !important;
        float: none !important;
        display: flex !important;
        width: auto !important;
        max-width: 100% !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
    }
}
.modern-category-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    position: relative !important;
    overflow: hidden;
    min-height: 80px;
    width: auto !important;
    max-width: 100% !important;
}
.modern-category-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.modern-category-card.active {
    background: #ffffff;
    border-color: #ffffff;
    color: #667eea;
}
.modern-category-card.active:hover {
    transform: translateY(-4px) scale(1.02);
}
.modern-category-icon {
    font-size: 24px;
    margin-bottom: 8px;
    color: #ffffff;
    transition: all 0.3s ease;
}
.modern-category-card.active .modern-category-icon {
    color: #667eea;
}
.modern-category-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s ease;
}
.modern-category-card.active .modern-category-name {
    color: #667eea;
}
@media (max-width: 480px) {
    .modern-filter-container {
        margin: 8px 2px !important;
        padding: 12px 10px !important;
        border-radius: 16px;
    }
    .modern-filter-title {
        font-size: 18px;
    }
    .modern-search-input {
        padding: 10px 40px 10px 40px;
    font-size: 16px;
}
    .modern-search-icon {
        left: 12px;
        font-size: 14px;
}
    .modern-advanced-icon {
        right: 12px;
    font-size: 12px;
        padding: 4px;
    }
    .modern-action-buttons {
        gap: 6px;
    }
    .modern-action-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-width: 80px;
    }
    .modern-category-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 6px;
    }
    .modern-category-card {
        padding: 10px 6px;
        min-height: 60px;
        border-radius: 12px;
    }
    .modern-category-icon {
        font-size: 18px;
        margin-bottom: 3px;
    }
    .modern-category-name {
        font-size: 11px;
        line-height: 1.1;
    }
}
.modern-advanced-panel {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-top: 12px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    animation: slideDown 0.3s ease-out;
}
.modern-advanced-panel.active {
    display: block;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modern-filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}
.modern-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.modern-filter-group label {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}
.modern-filter-select {
    padding: 10px 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: #000000;
    font-size: 14px;
    backdrop-filter: blur(20px);
    outline: none;
    cursor: pointer;
}
.modern-filter-select:focus {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
}
.modern-filter-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 16px;
}
.modern-filter-apply-btn,
.modern-filter-reset-btn {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.modern-filter-apply-btn {
    background: #ffffff;
    color: #667eea;
    border-color: #ffffff;
}
.modern-filter-apply-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}
.modern-filter-reset-btn {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}
.modern-filter-reset-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
    .modern-advanced-panel {
        padding: 16px;
        border-radius: 14px;
        margin-bottom: 16px;
    }
    .modern-filter-row {
        grid-template-columns: 1fr;
    gap: 12px;
        margin-bottom: 12px;
    }
    .modern-filter-actions {
    flex-direction: column;
        gap: 8px;
    }
    .modern-filter-apply-btn,
    .modern-filter-reset-btn {
        width: 100%;
        padding: 12px;
    }
}
.modern-empty-state {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 40px;
    margin: 5px 0;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
.modern-empty-content {
    max-width: 400px;
    margin: 0 auto;
}
.modern-empty-content i {
    font-size: 64px;
    color: rgba(0, 0, 0, 0.4);
        margin-bottom: 20px;
    display: block;
}
.modern-classic-container {
    margin-top: 20px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.modern-classic-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    position: relative;
}
.modern-classic-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
}
.modern-classic-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    flex-shrink: 1;
    min-width: 0;
}
.modern-classic-header-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    white-space: nowrap;
}
.modern-classic-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.modern-classic-item {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: white;
}
.modern-classic-item:hover {
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.04), 
        rgba(118, 75, 162, 0.04), 
        rgba(240, 147, 251, 0.04)
    );
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #667eea;
}
.modern-classic-item:nth-child(even) {
    background: rgba(248, 250, 252, 0.8);
}
.modern-classic-item:nth-child(even):hover {
    background: linear-gradient(90deg, 
        rgba(102, 126, 234, 0.06), 
        rgba(118, 75, 162, 0.06), 
        rgba(240, 147, 251, 0.06)
    );
}
.modern-classic-item.live {
    background: linear-gradient(90deg, 
        rgba(255, 107, 107, 0.08), 
        rgba(255, 159, 67, 0.08)
    );
    border-left: 4px solid #ff6b6b;
}
.modern-classic-time {
    flex: 0 0 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.modern-classic-match {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.modern-classic-teams {
    flex: 1;
    font-weight: 600;
    color: #2c3e50;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.modern-classic-league {
    flex: 0 0 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    flex-direction: column;
}
.modern-classic-time-display {
    font-family: 'Monaco', 'Consolas', monospace;
    font-weight: 700;
    color: #2c3e50;
    font-size: 14px;
    text-align: center;
    margin-bottom: 4px;
}
.modern-classic-time-display.live {
    color: #ef4444 !important;
    font-weight: 700;
}
.modern-classic-actions {
    flex: 0 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modern-classic-time {
    font-weight: 700;
    color: #2c3e50;
    min-width: 100px;
    font-family: 'Monaco', 'Consolas', monospace;
}
.modern-live-indicator {
    animation: blink 1.5s infinite;
    margin-right: 8px;
}
.sport-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}
.sport-football { background: linear-gradient(135deg, #27ae60, #2ecc71) !important; }
.sport-basketball { background: linear-gradient(135deg, #e67e22, #f39c12) !important; }
.sport-tennis { background: linear-gradient(135deg, #8e44ad, #9b59b6) !important; }
.sport-hockey { background: linear-gradient(135deg, #2980b9, #3498db) !important; }
.sport-soccer { background: linear-gradient(135deg, #27ae60, #2ecc71) !important; }
.match-info {
    display: flex;
    align-items: center;
    gap: 10px;
}
.match-teams {
    font-weight: 600;
    color: #2c3e50;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.live-pulse {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
}
.modern-classic-league {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.league-name {
    color: #7f8c8d;
    font-weight: 500;
    font-style: italic;
    font-size: 12px;
    text-align: center;
}
.modern-classic-live-row {
    background: linear-gradient(90deg, 
        rgba(231, 76, 60, 0.08), 
        rgba(192, 57, 43, 0.05), 
        rgba(231, 76, 60, 0.08)
    );
    border-left: 4px solid #e74c3c;
}
.modern-classic-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}
.modern-classic-watch-btn {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 10px 12px;
    border-radius: 50%;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modern-classic-watch-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.4);
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}
@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}
@media (max-width: 1024px) {
    .modern-classic-header {
        padding: 18px 20px;
        flex-wrap: nowrap;
    }
    .modern-classic-header-title {
        font-size: 16px;
        flex-shrink: 1;
        min-width: 0;
    }
    .modern-classic-header-count {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 13px;
        padding: 6px 12px;
    }
    .modern-classic-item {
        padding: 18px 20px;
    }
    .modern-classic-time {
        flex: 0 0 120px;
    }
    .modern-classic-league {
        flex: 0 0 180px;
    }
    .modern-classic-time-display {
        font-size: 13px;
    }
    .sport-badge {
        padding: 4px 8px;
        font-size: 10px;
    }
}
@media (max-width: 768px) {
    #modern-classic-btn {
        display: none !important;
    }
    .modern-classic-container {
        display: none !important;
    }
}
.modern-empty-content h3 {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: none;
}
.modern-empty-content p {
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}
.modern-empty-reset {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.modern-empty-reset:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}
.modern-empty-reset i {
        font-size: 14px !important;
    color: white !important;
    margin: 0 !important;
}
@media (max-width: 768px) {
    .modern-empty-state {
        padding: 40px 20px;
        margin: 20px 0;
        border-radius: 16px;
    }
    .modern-empty-content i {
        font-size: 48px;
        margin-bottom: 16px;
    }
    .modern-empty-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .modern-empty-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }
    .modern-empty-reset {
        padding: 10px 20px;
        font-size: 13px;
    }
}
@media (max-width: 1366px) {
    .modern-filter-container {
        border: none !important;
    }
    .modern-filter-header {
        flex-direction: row;
        gap: 8px;
        align-items: center;
        justify-content: space-between;
        width: 100% !important;
    }
    .modern-search-container {
        flex-direction: column;
        gap: 8px;
        flex: 1;
        width: 100% !important;
    }
    .modern-search-box {
        display: none !important; 
    }
    .modern-action-buttons {
        display: flex !important; 
        gap: 8px !important;
        width: 100% !important;
        flex: 1 !important; 
        order: 2 !important;
        flex-wrap: nowrap !important;
        justify-content: stretch !important;
    }
    .modern-search-box {
        width: 100%;
        position: relative;
        order: 1;
    }
    .modern-search-input {
        padding: 12px 50px 12px 44px;
        width: 100%;
    }
    .modern-search-icon {
        left: 14px;
    }
    .modern-advanced-icon {
        right: 14px;
    }
    .modern-filter-toggle {
        display: none !important; 
    }
    .modern-controls-wrapper {
        gap: 8px !important;
        margin-bottom: 8px !important;
    }
    .modern-filter-container .modern-category-container {
        position: relative !important;
        overflow: visible !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .modern-filter-container .modern-category-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-behavior: smooth !important;
        padding: 4px 0 8px 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: none !important;
        scrollbar-width: thin;
        scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    }
    .modern-filter-container .modern-category-grid::-webkit-scrollbar {
        height: 4px;
    }
    .modern-filter-container .modern-category-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
    }
    .modern-filter-container .modern-category-grid::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
    }
    .modern-filter-container .modern-category-grid::-webkit-scrollbar-thumb:hover {
        background: rgba(255, 255, 255, 0.5);
    }
    .modern-filter-container .modern-category-container .modern-category-card {
        flex: 0 0 auto !important;
        width: 100px !important;
        min-width: 100px !important;
        padding: 10px 8px !important;
        min-height: 70px !important;
        border-radius: 12px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        float: none !important;
        max-width: 100px !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        margin: 0 !important;
    }
    .modern-category-icon {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .modern-category-name {
        font-size: 11px;
        line-height: 1.1;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    .modern-action-buttons {
        display: flex !important;
        gap: 8px !important;
        width: 100% !important;
        flex: 1 !important; 
        order: 2 !important;
        flex-wrap: nowrap !important;
        justify-content: stretch !important;
    }
    .modern-action-btn {
        flex: 1 1 auto !important;
        min-width: 80px !important;
        max-width: none !important;
        width: auto !important;
        padding: 10px 12px !important;
        font-size: 13px !important;
        justify-content: center !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        box-sizing: border-box !important;
    }
    .modern-action-btn span:not(.modern-action-count) {
        white-space: nowrap;
        overflow: visible !important;
        text-overflow: ellipsis;
        flex: 1;
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 12px !important;
        color: inherit !important;
        width: auto !important;
        height: auto !important;
    }
    .modern-action-btn .modern-action-count {
        display: none !important; 
    }
    .modern-action-btn .modern-action-count:not(:empty) {
        display: inline-block !important;
    }
    .modern-action-btn .modern-action-count:empty {
        display: none !important;
    }
    #modern-classic-btn {
        display: none !important;
    }
    .mobile-panel {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        z-index: 9999;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    }
    .mobile-panel.active {
        right: 0;
    }
    .mobile-panel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid #e5e7eb;
        background: #ffffff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        gap: 12px;
    }
    .mobile-panel-header .mobile-search-input-container {
        flex: 1;
        position: relative;
        margin-bottom: 0;
    }
    .mobile-panel-close {
        background: #f3f4f6;
        border: none;
        color: #6b7280;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        transition: all 0.3s ease;
    }
    .mobile-panel-close:hover {
        background: rgba(255,255,255,0.3);
        transform: scale(1.1);
    }
    .mobile-panel-content {
        padding: 0;
    }
    .mobile-search-input-container {
        position: relative;
        margin-bottom: 15px;
    }
    .mobile-search-description {
        text-align: center;
        color: #ff4757;
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    .mobile-search-input {
        width: 100%;
        padding: 15px 50px 15px 20px;
        border: 2px solid #333333;
        border-radius: 25px;
        background: rgba(255,255,255,0.9);
        color: #333;
        font-size: 16px;
        outline: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    .mobile-search-input:focus {
        border-color: #ff4757;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1), 0 0 0 3px rgba(255, 71, 87, 0.2);
    }
    .mobile-search-input::placeholder {
        color: #666;
    }
    .mobile-search-input-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #666;
        font-size: 16px;
    }
    .mobile-search-filters {
        display: flex;
        gap: 8px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    .mobile-filter-btn {
        padding: 8px 16px;
        border: none;
        border-radius: 20px;
        background: rgba(255,255,255,0.2);
        color: #ffffff;
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }
    .mobile-filter-btn.active {
        background: #ffffff;
        color: #667eea;
        border-color: #ffffff;
    }
    .mobile-filter-btn:hover {
        background: rgba(255,255,255,0.3);
    }
    .mobile-search-results {
        max-height: 60vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0;
        width: 100%;
    }
    .mobile-search-results .uefa-card {
        margin: 0 !important;
        flex-shrink: 0;
        width: 100% !important;
        box-sizing: border-box !important;
        --card-px: 8px !important;
        padding: var(--card-py) calc(8px + var(--right) + 10px) var(--card-py) 8px !important;
    }
    .mobile-search-results .uefa-card .uefa-meta-wrap {
        right: 8px !important;
    }
    .uefa-teams.single-team {
        margin-right: 0px !important;
    }
    .uefa-card.single-event-card {
        padding-right: calc(22px + 160px - 40px) !important; 
    }
    .uefa-teams .uefa-team:only-child .uefa-name {
        max-width: none !important;
        flex: 1 1 auto !important;
    }
    .uefa-teams .uefa-team:only-child .uefa-crest {
        width: 24px;
        height: 24px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-search-empty {
        text-align: center;
        color: rgba(255,255,255,0.8);
        font-size: 16px;
        padding: 20px;
        margin-top: 10px;
    }
    .mobile-search-empty i {
        font-size: 48px;
        color: rgba(255,255,255,0.4);
        margin-bottom: 16px;
        display: block;
    }
    .mobile-search-empty h4 {
        color: #ff4757;
        margin: 0 0 8px 0;
        font-size: 18px;
        font-weight: 600;
    }
    .mobile-search-empty p {
        color: rgba(255,255,255,0.7);
        margin: 0 0 20px 0;
        font-size: 14px;
        line-height: 1.4;
    }
    .mobile-clear-search {
        background: #ff4757;
        color: #ffffff;
        border: none;
        padding: 12px 24px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }
    .mobile-clear-search:hover {
        background: #ff3742;
    }
    .mobile-panel-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-panel-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    body.mobile-panel-open {
        overflow: hidden;
    }
}
.uefa-card.live[data-hot-game="1"] {
    position: relative;
    border-left: 4px solid #ffa500 !important; 
}
.uefa-card.live[data-hot-game="1"]::after {
    content: '🔥';
    position: absolute;
    top: 50%;
    right: 6px;
    font-size: 12px;
    z-index: 10;
    transform: translateY(-50%);
}
@media (max-width: 1024px) and (min-width: 768px) {
    .uefa-card.live {
        border-left: 4px solid #ef4444 !important;
    }
    .uefa-card.live[data-hot-game="1"]::after {
        top: 50%;
        right: 6px;
        font-size: 12px;
        transform: translateY(-50%);
    }
    .uefa-card.live[data-hot-game="1"] {
        border-left: 4px solid #ffa500 !important;
    }
    .se-sport-header {
        padding: 16px 20px !important;
        min-height: 60px !important;
    }
    .se-sport-info {
        gap: 12px !important;
        align-items: center !important;
    }
    .se-sport-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    .se-sport-icon-img {
        width: 24px !important;
        height: 24px !important;
        object-fit: contain !important;
    }
    .se-sport-name {
        font-size: 16px !important;
        font-weight: 600 !important;
        line-height: 1.2 !important;
    }
    .se-upcoming-count {
        padding: 6px 12px !important;
        font-size: 13px !important;
        min-width: auto !important;
        height: auto !important;
    }
    .se-upcoming-count-text {
        font-size: 13px !important;
        line-height: 1 !important;
    }
}
@media (max-width: 767px) {
    .uefa-card.live {
        border-left: 4px solid #ef4444 !important;
    }
    .uefa-card.live[data-hot-game="1"]::after {
        top: 38px;
        right: 10px;
        font-size: 12px;
        transform: none;
    }
    .uefa-card.live[data-hot-game="1"] {
        border-left: 4px solid #ffa500 !important; 
    }
    .modern-category-card {
        width: 75px !important;
        min-width: 75px !important;
        padding: 8px 6px;
        min-height: 65px;
    }
    .modern-category-icon {
        font-size: 16px;
        margin-bottom: 3px;
    }
    .modern-category-name {
        font-size: 10px;
        line-height: 1.1;
    }
}
@font-face {
    font-family: 'Champions Regular';
    src: url('/assets/fonts/champions-regular.woff2') format('woff2'),
       url('/assets/fonts/champions-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
:root {
    --container: 1180px;
    --page-pad: 24px;
    --page-bg: #eef2f6;
    --grid-gap: 26px;
    --card-bg: #fff;
    --card-br: 18px;
    --card-bd: #e6e9ef;
    --card-shadow: 0 8px 24px rgba(17,24,39,.06);
    --card-px: 22px;          
    --card-py: 18px;          
    --card-h: 96px;           
    --row-gap: 12px;          
    --crest: 22px;            
    --crest-gap: 10px;        
    --name-size: 18px;
    --name-weight: 400;
    --team-name-base: calc(100vw - 320px); 
    --team-name-single: min(300px, var(--team-name-base)); 
    --team-name-double: min(200px, calc(var(--team-name-base) / 2.2)); 
    --right: 160px;           
    --split: 1px;             
    --split-gap: 2px;         
    --right-gap: 18px;        
    --time-size: 18px;
    --btn-size: 13px;
    --ink: #0f172a;
    --muted: #64748b;
    --blue: #4361ee;
    --blue-weak: #e9efff;
    --blue-bd: #d6e3ff;
}
.uefa-matches {
    display: grid;
    gap: var(--grid-gap);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 24px 0;
}
@media (max-width: 1200px) {
    .uefa-matches {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 720px) {
    .uefa-matches {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 12px 0;
    }
    .uefa-card {
        padding: var(--card-py) 8px var(--card-py) 12px !important;
    }
    .uefa-star:first-child {
    }
    .uefa-star:last-child {
    }
    .uefa-meta-wrap {
        gap: var(--right-gap) !important;
        width: var(--right) !important;
    }
    .uefa-stars {
        margin-right: 8px !important;
    }
    .uefa-star {
        margin-left: 0 !important;
        color: #374151 !important; 
    }
    .uefa-star i {
        color: #374151 !important; 
    }
    .uefa-star.active {
        color: #fbbf24 !important;
    }
    .uefa-star.active i {
        color: #fbbf24 !important;
    }
    .uefa-time {
        font-size: 14px !important;
        line-height: 1.1 !important;
        min-width: 60px !important;
        display: block !important;
        text-align: center !important;
    }
    .uefa-day {
        font-size: 11px !important;
        margin-bottom: 2px !important;
        opacity: 0.8 !important;
    }
    .uefa-hour {
        font-size: 14px !important;
    }
    .uefa-card.live .uefa-time {
        color: #ef4444 !important;
        font-weight: 600 !important;
    }
    .uefa-meta {
        flex-shrink: 0 !important;
        min-width: 70px !important;
        height: 100% !important;
        justify-content: center !important;
        padding: 0 !important;
    }
    .uefa-time {
        margin: 0 !important;
    }
    .uefa-teams .uefa-team:not(:only-child) .uefa-name {
        max-width: none !important; 
        width: auto !important;
        flex: 1 1 0 !important; 
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-right: 1px !important; 
    }
    .uefa-teams .uefa-team:only-child .uefa-name {
        max-width: none !important; 
        width: auto !important;
        flex: 1 1 0 !important; 
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-right: 0px !important; 
    }
    .uefa-teams .uefa-team:only-child .uefa-crest {
        width: 22px !important;
        height: 22px !important;
    }
    .uefa-vline {
        display: block !important;
        width: 1px !important;
        background: #e5e7eb !important;
        height: 50px !important;
        align-self: center !important;
        flex-shrink: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}
.uefa-card {
    position: relative;
    background: var(--card-bg);
    border: 1px solid var(--card-bd);
    border-radius: var(--card-br);
    box-shadow: var(--card-shadow);
    min-height: var(--card-h);
    padding: var(--card-py) calc(var(--card-px) + var(--right) + 10px) var(--card-py) var(--card-px);
    display: flex;
    align-items: flex-start;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden; 
}
@media (min-width: 769px) {
    .uefa-card:hover {
        background: #f8f9fa;
        box-shadow: 0 12px 32px rgba(17,24,39,.12);
        text-decoration: none;
        color: inherit;
    }
}
.uefa-card.live {
    border-left: 4px solid #ef4444;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.uefa-teams {
    display: flex;
    flex-direction: column;
    gap: var(--row-gap);
    min-width: 0;
    justify-content: center;
    height: 100%;
    align-items: flex-start;
    flex: 1 1 auto; 
    overflow: hidden;
    margin-right: 5px; 
}
.uefa-team {
    display: flex;
    align-items: center;
    min-width: 0;
    width: 100%; 
    overflow: hidden;
}
.uefa-crest {
    width: var(--crest);
    height: var(--crest);
    border-radius: 50%;
    overflow: hidden;
    background: #none !important; 
    margin-right: var(--crest-gap);
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #64748b;
}
.uefa-crest img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.uefa-name {
    font-family: 'Champions Regular', Arial, sans-serif;
    font-size: var(--name-size);
    font-weight: var(--name-weight);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--ink);
    max-width: none; 
    min-width: 0;
    flex: 0 1 auto; 
    display: block; 
}
.uefa-meta-wrap {
    position: absolute;
    top: var(--card-py);
    right: var(--card-px);
    bottom: var(--card-py);
    width: var(--right);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--right-gap);
}
.uefa-stars {
    display: flex;
    flex-direction: column;
    gap: var(--row-gap);
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
    margin: 0;
}
.uefa-star {
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #374151;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 2px;
    vertical-align: middle;
}
.uefa-star i {
    font-size: 16px;
    transition: inherit;
}
.uefa-star:first-child {
}
.uefa-star:last-child {
}
.uefa-star:hover {
    color: #fbbf24;
    transform: scale(1.2);
}
.uefa-star:hover i {
    color: #fbbf24;
}
.uefa-star.active {
    color: #fbbf24;
}
.uefa-star.active i {
    color: #fbbf24;
}
.uefa-vline {
    width: var(--split);
    align-self: stretch;
    margin: var(--split-gap) 0;
    background: var(--card-bd);
    border-radius: 2px;
}
.uefa-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 0;
}
.uefa-time {
    margin: 0;
}
.uefa-teams .uefa-team:not(:only-child) .uefa-name {
    max-width: none; 
    width: auto;
    flex: 1 1 0; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 2px; 
}
.uefa-teams .uefa-team:only-child .uefa-name {
    max-width: none; 
    width: auto;
    flex: 1 1 0; 
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 0px; 
}
.uefa-teams.single-team {
    margin-right: 0px !important; 
}
.uefa-card.single-event-card {
    padding-right: calc(var(--card-px) + var(--right) - 40px) !important; 
}
.uefa-teams .uefa-team:only-child .uefa-name {
    max-width: none !important; 
    flex: 1 1 auto !important; 
}
.uefa-teams .uefa-team:only-child .uefa-crest {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.uefa-time {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink); 
    text-align: center;
    display: block;
}
.uefa-day {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 3px;
    opacity: 0.8;
}
.uefa-hour {
    display: block;
    font-size: 16px;
    font-weight: 400;
}
.uefa-card.live .uefa-time {
    color: #ef4444;
    font-weight: 600;
}
.uefa-btn {
    font-size: var(--btn-size);
    font-weight: 700;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 10px;
    color: var(--blue);
    background: var(--blue-weak);
    border: 1px solid var(--blue-bd);
    text-decoration: none;
    transition: all 0.2s ease;
}
.uefa-btn:hover {
    filter: brightness(.95);
    text-decoration: none;
    color: var(--blue);
}
@media (max-width: 1024px) and (min-width: 769px) {
    .uefa-teams .uefa-team:not(:only-child) .uefa-name {
        max-width: none !important;
        width: auto !important;
        flex: 1 1 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-right: 1px !important; 
    }
    .uefa-teams .uefa-team:only-child .uefa-name {
        max-width: none !important;
        width: auto !important;
        flex: 1 1 0 !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-right: 0px !important; 
    }
}
@media (max-width: 1024px) and (min-width: 721px) {
    .uefa-star {
        color: #374151 !important; 
    }
    .uefa-star i {
        color: #374151 !important; 
    }
    .uefa-star.active {
        color: #fbbf24 !important;
    }
    .uefa-star.active i {
        color: #fbbf24 !important;
    }
}
@media (max-width: 540px) {
    :root {
        --right: 130px;
        --name-size: 16px;
        --time-size: 16px;
        --crest: 20px;
        --right-gap: 10px;
        --card-px: 16px;
    }
    .uefa-card {
        min-height: 88px;
    }
    .uefa-btn {
        font-size: 11px;
        padding: 4px 8px;
    }
    .uefa-teams .uefa-team:not(:only-child) .uefa-name {
        max-width: none !important; 
        width: auto !important;
        flex: 1 1 0 !important; 
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-right: 0px !important; 
    }
    .uefa-teams .uefa-team:only-child .uefa-name {
        max-width: none !important; 
        width: auto !important;
        flex: 1 1 0 !important; 
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        margin-right: 0px !important; 
    }
    .uefa-star:first-child {
    }
    .uefa-star:last-child {
    }
    .uefa-meta-wrap {
        gap: var(--right-gap) !important;
        padding-left: 3px !important;
        width: calc(var(--right) - 25px) !important;
    }
    .uefa-stars {
        margin-left: 0 !important;
    }
    .uefa-star {
        margin-left: 0 !important;
    }
    .uefa-meta {
        margin-top: 0 !important;
        height: 100% !important;
    }
    .uefa-btn {
        margin-top: auto !important;
    }
}
.team-logo-normal {
}
.team-logo-white {
    filter: brightness(0) saturate(100%) invert(15%) sepia(20%) 
            hue-rotate(180deg) brightness(1.1) contrast(1.2);
}
.team-logo-siyah {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) 
            hue-rotate(0deg) brightness(1.8) contrast(1.0);
}
    .team-logo-siyah {
        filter: brightness(0) saturate(100%) invert(85%) sepia(5%) 
                hue-rotate(0deg) brightness(1.5) contrast(1.0);
    }
}
@media (prefers-color-scheme: light) {
    .team-logo-white {
        filter: brightness(0) saturate(100%) invert(25%) sepia(15%) 
                hue-rotate(180deg) brightness(1.2) contrast(1.3);
    }
    .team-logo-siyah {
        filter: brightness(0) saturate(100%) invert(75%) sepia(0%) 
                hue-rotate(0deg) brightness(1.3) contrast(1.0);
    }
}
.uefa-card:hover .team-logo-white {
    filter: brightness(0) saturate(100%) invert(35%) sepia(25%) 
            hue-rotate(180deg) brightness(1.3) contrast(1.4);
    transition: filter 0.3s ease;
}
.uefa-card:hover .team-logo-siyah {
    filter: brightness(0) saturate(100%) invert(65%) sepia(10%) 
            hue-rotate(0deg) brightness(1.4) contrast(1.1);
    transition: filter 0.3s ease;
}
.uefa-card:hover .team-logo-normal {
    transition: filter 0.3s ease;
}
img.team-logo-white {
    filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.3) contrast(2) !important;
}
img.team-logo-siyah {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0) contrast(100%) !important;
}
.se-scoreboard-header .logo img.team-logo-white,
.se-scoreboard-header .logo img.team-logo-siyah,
.se-scoreboard-header .logo img.team-logo-normal {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
}
.se-scoreboard-header .logo {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(245,245,245,0.9)) !important;
    border-radius: 12px !important;
    padding: 4px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}
div[class*="se-scoreboard"] img.team-logo-white,
.se-scoreboard-header img.team-logo-white,
.se-scoreboard-header .team img.team-logo-white,
.se-scoreboard-header .team .logo img.team-logo-white,
.se-scoreboard-header .team-meta .logo img.team-logo-white {
    filter: brightness(0) saturate(100%) invert(20%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0.3) contrast(2), drop-shadow(0 2px 4px rgba(0,0,0,0.3)) !important;
    background: transparent !important;
}
div[class*="se-scoreboard"] img.team-logo-siyah,
.se-scoreboard-header img.team-logo-siyah,
.se-scoreboard-header .team img.team-logo-siyah,
.se-scoreboard-header .team .logo img.team-logo-siyah,
.se-scoreboard-header .team-meta .logo img.team-logo-siyah {
    filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0) contrast(100%), drop-shadow(0 2px 4px rgba(0,0,0,0.3)) !important;
    background: transparent !important;
}
div[class*="se-scoreboard"] img.team-logo-normal,
.se-scoreboard-header img.team-logo-normal,
.se-scoreboard-header .team img.team-logo-normal,
.se-scoreboard-header .team .logo img.team-logo-normal,
.se-scoreboard-header .team-meta .logo img.team-logo-normal {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)) !important;
    background: transparent !important;
}
.team-logo-normal {
}
.uefa-crest img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    background: transparent !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 2px !important;
}
.uefa-crest {
    background: transparent !important;
}

