body[data-type="alphatabs"] #page .page-title {
    display: none;
}
#alphatabs .score-category .score-header {
    background: linear-gradient(60deg, #4568dc 0, #b06ab3 50%) !important;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

#alphatabs .score-category .score-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.1) 50%, transparent 80%);
    pointer-events: none;
}

#alphatabs .score-category .score-title,
#alphatabs .score-category .score-category-description {
    background: linear-gradient(90deg, #ffffff 0, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    z-index: 1;
}

#alphatabs .score-category .score-title {
    font-size: 2.2rem;
    margin: 0 0 0.8rem 0;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

#alphatabs .score-category .score-category-description {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 300;
}
#alphatabs .score-items{
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -o-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -o-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -8px;
}
/* 新增乐谱项悬浮动画 */
#alphatabs .score-item {
    width: calc(25% - 12px);
    border-radius: 12px;
    border: var(--style-border-always);
    overflow: hidden;
    margin: 8px 6px;
    background: var(--anzhiyu-card-bg);
    -webkit-box-shadow: var(--anzhiyu-shadow-border);
    box-shadow: var(--anzhiyu-shadow-border);
    /*min-height: 400px;*/
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#alphatabs .score-item .score-info{
    padding: 8px 16px 16px 16px;
    /*margin-top: 12px;*/
}
#alphatabs .score-item .score-name{
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: visable;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    width: fit-content;
    cursor: pointer;
}
#alphatabs .score-item .score-description{
    margin-top: 15px;
    line-height: 20px;
    color: var(--anzhiyu-secondtext);
    height: 60px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
}
#alphatabs .score-link{
    font-size: 12px;
    background: var(--anzhiyu-gray-op);
    padding: 4px 8px;
    border-radius: 8px;
    cursor: pointer;
}
#alphatabs .score-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 25px rgba(69,104,220,0.15);
}

/* 难度标签增强 */
#alphatabs .difficulty {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#alphatabs .diff-初级 {
    background: rgba(76,175,80,0.15);
    color: #4CAF50 !important;
}

#alphatabs .diff-中级 {
    background: rgba(255,193,7,0.15);
    color: #FFC107 !important;
}

#alphatabs .diff-高级 {
    background: rgba(244,67,54,0.15);
    color: #F44336 !important;
}

/* 乐谱封面增强 */
#alphatabs .score-cover {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    background: var(--anzhiyu-secondbg);
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: box;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -o-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

#alphatabs .score-image {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 0.4s ease;
}

#alphatabs .score-item:hover .score-image {
    transform: scale(1.05);
}
