#filterList {
    max-height: 60vh;
    overflow-y: auto;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 主要容器 */
.container {
    padding: 2rem;
    max-width: 1400px;
}

/* 標題區塊 */
.page-title {
    position: relative;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border-radius: 2px;
}

/* 搜尋區塊 */
.search-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.search-form {
    padding: 1.5rem;
    background: linear-gradient(135deg, #2c3e50, #3498db);
    border: none;
    margin: 0;
    border-radius: 0;
}

.search-input {
    border: none !important;
    border-radius: 10px !important;
    padding: 1rem 1.5rem !important;
    font-size: 1.1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    width: 100%;
    outline: none;
    background: white;
}

.search-input:focus {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transform: translateY(-1px);
    outline: none;
    border: none !important;
}

.search-input::placeholder {
    color: #95a5a6;
}

.form-control:focus {
    border-color: transparent !important;
    box-shadow: none !important;
}

/* 載入動畫 */
.spinner-border {
    width: 2rem;
    height: 2rem;
    color: white !important;
    margin: 1rem 0;
}

/* 搜尋結果列表 */
.search-results {
    padding: 1.5rem 0;
    max-height: 500px;
    overflow-y: auto;
    background: white;
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 4px;
}

/* 搜尋結果項目 */
.result-item {
    padding: 1.2rem;
    margin-bottom: 0.8rem;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.result-item .player-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.result-item .player-name {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
}

.result-item .player-steam {
    color: #7f8c8d;
    font-size: 0.9rem;
}

/* 標記的文字樣式 */
mark {
    background: #ffeaa7;
    padding: 0.2em 0;
    border-radius: 4px;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .search-form {
        padding: 1rem;
    }
    
    .search-input {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
}

/* 無結果提示 */
.no-results {
    text-align: center;
    padding: 2rem;
    color: #7f8c8d;
    font-size: 1.1rem;
}

/* 動畫效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results {
    animation: fadeIn 0.3s ease-out;
}