body {
    margin: 0;
    background: #0d0d0d;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.search-box input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    background: #1a1a1a;
    color: #fff;
    font-size: 16px;
}

.music-list {
    margin-top: 20px;
}

.item {
    padding: 12px;
    border-bottom: 1px solid #222;
    cursor: pointer;
    transition: 0.2s;
}

.item:hover {
    background: #1f1f1f;
}

.title {
    font-size: 15px;
}

.artist {
    font-size: 12px;
    color: #888;
}

.player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #111;
    padding: 15px;
    border-top: 1px solid #222;
}

#title {
    margin-bottom: 5px;
    font-size: 14px;
}

.lyric {
    margin-top: 10px;
    font-size: 12px;
    color: #aaa;
    max-height: 120px;
    overflow-y: auto;
}
