.sc-player {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    padding: 40px 20px 70px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sc-player-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.sc-player-header {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.sc-player-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.sc-btn-play {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: none;
    background: #f44336;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    box-shadow: 0 10px 20px rgba(244, 67, 54, 0.4);
    transition: transform .15s ease;
}

.sc-btn-play:active {
    transform: scale(0.97);
}

.sc-controls {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.sc-btn-mute {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#sc-volume {
    width: 240px;
}

.nd-carrer {
    width: 300px;
    height: auto;
    position: fixed;
    bottom: 0px;
    right: 0px;
    right: 0px;
    padding: 15px;
    text-align: center;
    background-color: #fff;
    background-image: linear-gradient(to top, #0ba360 0%, #3cba92 100%);
    transition: all ease 0.4s;
    transform: translateY(100%);
    z-index: -1;
    opacity: 0;
}

.nd-carrer.show-nd-carrer {
    transform: translateY(0%);
    z-index: 999;
    opacity: 1;
}

.nd-carrer-inner {

    border: 1px dashed rgba(255, 255, 255, 0.7);
    padding: 20px 10px;
    position: relative;
}

.nd-carrer-close {
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: -10px;
    right: -10px;
    line-height: 20px;
    text-align: center;
    font-size: 15px;
    cursor: pointer;
    transition: all ease 1s;
}

.nd-carrer-close:hover {
    background-color: red;
    color: #fff;
}

.nd-carrer .nd-carrer-icon {
    text-align: center;
    padding: 10px 0px 10px 0px;

}

.nd-carrer .nd-carrer-icon img {
    max-width: 40px;
}

.nd-carrer p {
    font-family: arial;
    font-weight: normal;
    font-size: 15px;
    color: #fff;
    margin: 0px 0px 10px 0px;
    text-align: center;
}

.nd-carrer a {
    font-size: 15px;
    color: #fff;
    font-weight: bold;
}

.nd-carrer a:hover {
    text-decoration: underline;
}