.lm-large-player {
    width: 100%;
    max-width: 900px;
    background: #0A0A0A;
    border: 2px solid #FFCC00;
    border-radius: 14px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;

    font-family: "Arial", sans-serif;
    color: #FFF;
}

.lm-large-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.lm-large-info h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.lm-large-live {
    font-size: 15px;
    color: #FFCC00;
    margin-top: 4px;
    font-weight: 600;
}

.lm-large-play {
    margin-left: auto;
    width: 70px;
    height: 70px;
    border-radius: 14px;
    background: #FFCC00;
    border: none;
    font-size: 30px;
    color: #0A0A0A;
    cursor: pointer;
    transition: 0.25s;
}

.lm-large-play:hover {
    transform: scale(1.07);
}

.lm-large-bars {
    display: flex;
    gap: 5px;
    margin-left: 20px;
}

.lm-large-bars span {
    width: 7px;
    height: 26px;
    background: #FFCC00;
    border-radius: 4px;
    animation: lmLargeAnim 0.8s infinite ease-in-out alternate;
}

.lm-large-bars span:nth-child(2) { animation-delay: 0.15s; }
.lm-large-bars span:nth-child(3) { animation-delay: 0.3s; }
.lm-large-bars span:nth-child(4) { animation-delay: 0.45s; }

@keyframes lmLargeAnim {
    from { transform: scaleY(0.3); }
    to { transform: scaleY(1); }
}
