.players-container {
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 2rem 2rem;
    position: relative;
    z-index: 1;
}

.players-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.players-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.hall-of-fame {
    text-align: center;
    margin-top: 4rem;
}

.hall-of-fame h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fame-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center; /* 居中显示 */
}

.fame-card {
    text-align: center;
}

.fame-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 16px; /* 圆角正方形 */
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.6);
    position: relative;
}

.fame-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px; /* 确保图片本身也是圆角 */
}

.fame-crown {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: url('../images/crown.png') no-repeat center/contain;
}

.fame-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .players-container {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .players-hero h1 {
        font-size: 2.5rem;
    }

    .fame-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .fame-card {
        padding: 1.5rem;
    }
    
    .fame-avatar {
        width: 120px;
        height: 120px;
    }
}
