.halloffame-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.halloffame-container label {
    font-size: 18px;
    margin-right: 10px;
    color: white;
}

.halloffame-container select {
    font-size: 22px;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="10" viewBox="0 0 14 10"><path fill="none" stroke="%23333" stroke-width="1.5" d="M1 1l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px 10px;
    text-align: center;
}

.halloffame-container select:hover {
    border-color: #888;
}

.halloffame-container select:focus {
    outline: none;
    border-color: #555;
}

.halloffame-content {
    text-align: center;
}

.halloffame-content h2 {
    text-align: center;
    margin-bottom: 20px;
    color: white;
}

.halloffame-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start; /* 确保左对齐 */
    gap: 20px;
}

.halloffame-item {
    flex: 0 1 calc(25% - 20px); /* 修改为每行4个项目 */
    box-sizing: border-box;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    background-color: #000;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 22px;
    color: white;
}

.halloffame-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.halloffame-img {
    width: 100%; /* 确保图片自适应父容器宽度 */
    height: auto; /* 保持图片比例 */
    max-width: 300px; /* 限制最大宽度 */
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}
