body { background: linear-gradient(to bottom, #000000, #004B4B); color: #FFFFFF; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; } h1, h2, h3, h4, h5, h6 { font-family: 'Poppins', sans-serif; color: #00FFFF; } .player-card { background: rgba(13, 26, 26, 0.7); backdrop-filter: blur(10px); border: 1px solid rgba(0, 255, 255, 0.2); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; transition: transform 0.3s ease, box-shadow 0.3s ease; } .player-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0, 255, 255, 0.1); } .player-card img { border-radius: 50%; border: 2px solid #00FFFF; } .player-card .player-name { font-size: 1.25rem; font-weight: bold; margin-top: 1rem; } .player-card .player-team { color: #AAAAAA; font-size: 0.9rem; } .player-card .player-stats { margin-top: 1rem; font-size: 0.9rem; } .section-title { margin-bottom: 2rem; } .search-bar { max-width: 400px; margin: 0 auto 3rem auto; } .form-control { background-color: rgba(13, 26, 26, 0.7); border: 1px solid rgba(0, 255, 255, 0.2); color: #FFFFFF; } .form-control:focus { background-color: rgba(13, 26, 26, 0.9); border-color: #00FFFF; box-shadow: 0 0 0 0.25rem rgba(0, 255, 255, 0.25); color: #FFFFFF; } .footer { padding: 2rem 0; margin-top: 4rem; border-top: 1px solid rgba(0, 255, 255, 0.2); color: #AAAAAA; font-size: 0.9rem; } .player-link { text-decoration: none; color: inherit; } .player-link:hover { color: inherit; } .search-results-popover { position: absolute; background: #0D1A1A; border: 1px solid rgba(0, 255, 255, 0.2); border-radius: 8px; z-index: 100; max-height: 300px; overflow-y: auto; } .search-results-popover .result-item { padding: 8px 12px; cursor: pointer; } .search-results-popover .result-item:hover { background: rgba(0, 255, 255, 0.1); }