

select.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none; 
    background-color: white;
}


select.custom-select::-ms-expand {
    display: none;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;900&display=swap');
body { font-family: 'Inter', sans-serif; }


.football-bg {
    position: relative;
    overflow: hidden;
    background-color: #0f172a; 
}


.football-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    
    background-image: url('https://images.unsplash.com/photo-1526232761682-d26e03ac148e?q=80&w=2069&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    
    
    filter: blur(4px);
    transform: scale(1.05); 
    z-index: 0;
}


.glass-effect {
    position: relative;
    z-index: 10;
    background: rgba(15, 23, 42, 0.85); 
    backdrop-filter: blur(8px); 
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
