/* LaRadio Core — Player */

.laradio-player,
.laradio-player-fixed {
    box-sizing: border-box;
}

.laradio-player {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #17191d;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 1rem;
    max-width: 520px;
}

.laradio-player__content {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.laradio-player__badge,
.laradio-player-fixed__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: #d87538;
    color: #ffffff;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: .25rem .55rem;
}

.laradio-player__title {
    font-size: 1.05rem;
}

.laradio-player__button,
.laradio-player-fixed__button {
    border: 0;
    background: #d87538;
    color: #ffffff;
    font-weight: 800;
    border-radius: 999px;
    padding: .75rem 1rem;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(216,117,56,.28);
}

.laradio-player__button:hover,
.laradio-player-fixed__button:hover {
    filter: brightness(1.08);
}

.laradio-player-fixed {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 9999;
    width: min(92vw, 680px);
    background: rgba(23, 25, 29, .95);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    box-shadow: 0 18px 50px rgba(0,0,0,.35);
    backdrop-filter: blur(10px);
}

.laradio-player-fixed__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: .75rem .9rem .75rem 1rem;
}

.laradio-player-fixed__status {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 0;
}

@media (max-width: 640px) {
    .laradio-player {
        flex-direction: column;
        align-items: stretch;
    }

    .laradio-player__button {
        width: 100%;
    }

    .laradio-player-fixed {
        width: calc(100vw - 20px);
        bottom: 10px;
        border-radius: 18px;
    }

    .laradio-player-fixed__inner {
        align-items: stretch;
        flex-direction: column;
    }

    .laradio-player-fixed__button {
        width: 100%;
    }

    .laradio-player-fixed--hide-mobile {
        display: none;
    }
}

@media (min-width: 641px) {
    .laradio-player-fixed--hide-desktop {
        display: none;
    }
}


/* Botones globales del theme */
.laradio-live-trigger.is-playing,
[data-laradio-live-trigger].is-playing {
    filter: brightness(1.08);
}


.laradio-player-global-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
}
