/* 导航样式 */
.artist-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

.artist-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.artist-name {
    flex: 1;
    font-size: 1.8rem;
    color: #ff6b6b;
}

.artist-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6b6b;
}

.artist-intro {
    padding: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

/* 专场演出页样式 */
.lyrics-page {
    display: none;
}

.lyrics-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.lyrics-item {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    padding: 30px 20px;
    color: white;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
}

.lyrics-item:hover {
    transform: translateY(-5px);
}

.lyrics-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.lyrics-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    text-align: left;
}

/* 响应式设计 - index.html特定部分 */
@media (max-width: 768px) {
    .artist-header {
        flex-direction: column;
        text-align: center;
    }

    .artist-name {
        margin-bottom: 15px;
    }

    .lyrics-list {
        grid-template-columns: 1fr;
    }
}