.player-menu {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 45px;
    min-height: 56px;
    margin: 0 12px 12px;
    padding: 10px 10.5px;
    overflow: hidden;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(90.67deg, #335cee 15.8%, #7a33ee 80.02%);
    color: #fff;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: background .2s;
}
.player-menu:hover { filter: brightness(1.08); }
.player-menu__icon { width: 24px; height: 24px; flex: 0 0 24px; }
.player-menu__label { display: grid; gap: 4px; min-width: 64px; white-space: nowrap; }
.player-menu__label strong { font-size: 14px; font-weight: 600; }
.player-menu__label small { font-size: 11px; opacity: .85; }
.player-menu__arrow { width: 16px; height: 16px; flex: 0 0 16px; margin-left: auto; }
.aside:not(.admin-sidebar):hover,.aside:not(.admin-sidebar):focus-within { width: 210px; }
.player-menu__label,.player-menu__arrow { display: none; }
.aside:hover .player-menu,.aside:focus-within .player-menu { width: calc(100% - 24px); }
.aside:hover .player-menu__label,.aside:focus-within .player-menu__label { display: grid; }
.aside:hover .player-menu__arrow,.aside:focus-within .player-menu__arrow { display: block; }
.player-menu:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }
.player-launcher {
    --player-accent: var(--brand-button, #6d3fe8);
    box-sizing: border-box;
    position: fixed;
    inset: 0;
    width: min(600px, calc(100% - 32px));
    max-width: none;
    max-height: calc(100% - 32px);
    max-height: calc(100dvh - 32px);
    margin: auto;
    padding: 0;
    border: 0;
    border-radius: 18px;
    overflow: auto;
    overscroll-behavior: contain;
    background: var(--brand-surface, #fff);
    color: var(--brand-text, #1c2034);
    box-shadow: 0 24px 80px rgba(19, 23, 40, .22);
    font-family: inherit;
}
.player-launcher:not([open]) { display: none; }
.player-launcher::backdrop { background: rgba(22, 27, 40, .54); }
.player-launcher *, .player-launcher *::before, .player-launcher *::after { box-sizing: border-box; }
.player-launcher__content { position: relative; padding: 34px; }
.player-launcher__close {
    position: absolute; top: 15px; right: 15px;
    display: grid; place-items: center;
    width: 36px; height: 36px;
    border: 0; border-radius: 9px;
    background: transparent; color: var(--brand-muted, #777d90); cursor: pointer;
}
.player-launcher__close:hover { background: rgba(110, 110, 140, .1); }
.player-launcher svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.player-launcher__close svg { width: 20px; height: 20px; }
.player-launcher__title { margin: 0 26px 12px 0; font-size: 26px; line-height: 1.25; font-weight: 700; }
.player-launcher__description { margin: 0 0 26px; max-width: 430px; font-size: 15px; line-height: 1.6; color: var(--brand-muted, #777d90); }
.player-launcher__options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.player-launcher__card { display: flex; flex-direction: column; align-items: center; padding: 24px 18px 18px; border: 1px solid var(--brand-border, #e7e7ef); border-radius: 12px; text-align: center; }
.player-launcher__icon { display: grid; place-items: center; width: 60px; height: 60px; margin-bottom: 16px; color: var(--player-accent); }
.player-launcher__icon svg { width: 44px; height: 44px; stroke-width: 2.5; }
.player-launcher__card h3 { margin: 0 0 8px; font-size: 22px; line-height: 1.2; font-weight: 700; }
.player-launcher__subtitle { margin: 0 0 10px; font-size: 14px; font-weight: 600; line-height: 1.4; }
.player-launcher__hint { margin: 0 0 24px; font-size: 13px; line-height: 1.65; color: var(--brand-muted, #777d90); }
.player-launcher__action { display: flex; justify-content: center; align-items: center; gap: 8px; width: 100%; min-height: 44px; margin-top: auto; padding: 10px 8px; border: 1px solid var(--player-accent); border-radius: 8px; background: var(--player-accent); color: var(--brand-button_text, #fff); font-size: 13px; line-height: 1.4; font-weight: 600; text-decoration: none; transition: filter .2s; }
.player-launcher__action--web { background: transparent; color: var(--player-accent); }
.player-launcher__action svg { width: 17px; height: 17px; flex-shrink: 0; }
.player-launcher__action:hover { filter: brightness(.9); }
.player-launcher a:focus-visible, .player-launcher button:focus-visible { outline: 2px solid var(--player-accent); outline-offset: 4px; }
@media (max-width: 520px) {
    .player-launcher__content { padding: 28px 20px 20px; }
    .player-launcher__title { font-size: 22px; }
    .player-launcher__description { margin-bottom: 20px; font-size: 14px; }
    .player-launcher__options { grid-template-columns: 1fr; gap: 12px; }
    .player-launcher__card { padding: 16px; }
    .player-launcher__icon { width: 44px; height: 44px; margin-bottom: 10px; }
    .player-launcher__icon svg { width: 34px; height: 34px; }
    .player-launcher__hint { margin-bottom: 16px; }
}
