/* 移动端专辑详情页样式 */

body.mobile-app .m-album-hero {
    padding: 20px 16px;
    text-align: center;
    background: var(--app-surface);
    border-bottom: 1px solid var(--app-border);
}

body.mobile-app .m-album-cover {
    width: 200px;
    height: 200px;
    margin: 0 auto 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
}

body.mobile-app .m-album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.mobile-app .m-album-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--app-text-primary);
    margin: 0 0 8px;
    line-height: 1.2;
}

body.mobile-app .m-album-artist {
    font-size: 15px;
    color: var(--app-text-secondary);
    margin: 0 0 12px;
}

body.mobile-app .m-album-description {
    font-size: 14px;
    color: var(--app-text-secondary);
    line-height: 1.5;
    margin: 0 0 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

body.mobile-app .m-album-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
}

body.mobile-app .m-album-play-all {
    height: 44px;
    padding: 0 24px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, var(--app-accent), var(--app-accent-hover));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all .2s;
}

body.mobile-app .m-album-play-all:active {
    transform: scale(.97);
}
