* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", sans-serif;
    background: #0e0e0e;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    height: 60px;
}

.search-section {
    text-align: center;
    margin-bottom: 40px;
}

.search-box {
    margin-bottom: 20px;
}

.search-box input {
    width: 300px;
    padding: 10px 20px;
    border: 1px solid #333;
    border-radius: 20px;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.filter-box {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid #333;
    border-radius: 20px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: #333;
}

.filter-btn.active {
    background: #f3c258;
    color: #000;
    border-color: #f3c258;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
}

.hero-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #1a1a1a;
    transition: transform 0.3s;
    cursor: pointer;
}

.hero-card:hover {
    transform: translateY(-5px);
}

.hero-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.hero-info {
    padding: 10px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8);
}

.hero-name {
    font-size: 14px;
    margin-bottom: 4px;
}

.hero-role {
    font-size: 12px;
    color: #f3c258;
} 