/* 英雄页面样式 */
.heroes-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 英雄banner */
.heroes-banner {
    background: linear-gradient(145deg, #2b1216, #1a1a1a);
    padding: 40px 20px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 30px;
}

.heroes-banner h1 {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 30px;
}

/* 英雄筛选 */
.heroes-filter {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-label {
    color: #aaa;
    font-size: 16px;
}

.filter-item {
    color: #fff;
    text-decoration: none;
    padding: 6px 15px;
    border: 1px solid #6e1620;
    border-radius: 15px;
    transition: all 0.3s;
}

.filter-item:hover,
.filter-item.active {
    background: #6e1620;
    border-color: #6e1620;
}

/* 英雄列表 */
.heroes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.hero-card {
    background: linear-gradient(145deg, #2b1216, #1a1a1a);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.hero-card:hover {
    transform: translateY(-10px);
}

.hero-image {
    position: relative;
    width: 100%;
    height: 400px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-difficulty {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #d4af37;
    border-radius: 3px;
    font-size: 12px;
}

.hero-info {
    padding: 20px;
}

.hero-info h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.hero-tag {
    padding: 4px 10px;
    background: #6e1620;
    color: #fff;
    border-radius: 3px;
    font-size: 12px;
}

.hero-skills {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-skills img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #6e1620;
    transition: transform 0.3s;
}

.hero-skills img:hover {
    transform: translateY(-5px);
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.page-item,
.page-next {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    border: 1px solid #6e1620;
    border-radius: 3px;
    transition: all 0.3s;
}

.page-item:hover,
.page-item.active {
    background: #6e1620;
}

.page-next {
    padding: 8px 20px;
}

.page-dots {
    color: #666;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .heroes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .heroes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .heroes-grid {
        grid-template-columns: 1fr;
    }

    .filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-item {
        text-align: center;
    }

    .hero-image {
        height: 300px;
    }
} 