#playerLive { margin: 0; font-family: 'Poppins', sans-serif; }

#playerLive #main {
    width: 100%;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    overflow: hidden;
    margin: auto;
    position: relative;
    box-sizing: border-box;
}

#playerLive h2 { color: #e6352d; font-size: 28px; margin: 0 0 10px 0; }

#playerLive .track img {
    display: inline-block;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 1px solid #eee;
}

#playerLive .track .artist {
    font-size: 20px;
    font-weight: 600;
    color: #e6352d;
}

#playerLive .track .song {
    font-size: 18px;
    color: #777;
}

#playerLive .controls {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

#playerLive .icon-button {
    width: 64px;
    height: 64px;
    background-color: #ffeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 6px 12px rgba(230,53,45,0.25);
}

#playerLive .icon-button:hover {
    transform: scale(1.1);
    background-color: #ffd5d2;
}

#playerLive .icon-button svg { fill: #e6352d; }

#playerLive .volume-control {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

#playerLive input[type="range"] {
    -webkit-appearance: none;
    width: 200px;
    height: 6px;
    background: linear-gradient(to right, #e6352d 50%, #ddd 50%);
    border-radius: 5px;
    outline: none;
}

#playerLive input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #e6352d;
    border-radius: 50%;
    cursor: pointer;
}