.menu-button,
.primary-action,
.secondary-action,
.player-order-button,
.playlist-preview-button,
.playlist-order-button,
.popup-cta,
.support-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        background-color 0.24s ease,
        box-shadow 0.24s ease,
        color 0.24s ease;
}

.menu-button {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    z-index: 1;
}

.menu-button:hover {
    transform: translateY(-2px);
    border-color: rgba(150, 166, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 1px rgba(150, 166, 255, 0.16), 0 12px 30px rgba(0, 0, 0, 0.2);
}

.hero-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    transition:
        transform 0.24s ease,
        border-color 0.24s ease,
        box-shadow 0.24s ease,
        background-color 0.24s ease;
}

.hero-social-link:hover {
    transform: translateY(-2px) scale(1.03);
    border-color: var(--accent-strong);
    background: rgba(65, 105, 225, 0.16);
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    box-shadow: 0 0 0 1px rgba(65, 105, 225, 0.22), 0 12px 24px rgba(0, 0, 0, 0.22);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 24%, transparent), 0 12px 24px rgba(0, 0, 0, 0.22);
}

.hero-social-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.hero-proof-panel {
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background-color 0.28s ease;
}

.hero-proof-panel:hover {
    transform: none;
    border-color: var(--line);
    box-shadow: var(--shadow);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
        var(--panel);
}

.featured-release,
.playlist-table,
.popup-content,
.player-dock {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
        var(--panel);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.featured-release {
    width: min(100%, 1040px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 92px minmax(220px, 1fr) auto auto;
    gap: 12px;
    align-items: center;
    padding: 11px 14px;
    border-radius: var(--radius-xl);
}

.featured-artwork-wrap {
    position: relative;
    width: 92px;
    border-radius: calc(var(--radius-xl) - 10px);
    overflow: hidden;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.featured-artwork {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.featured-copy {
    display: grid;
    align-content: center;
    gap: 3px;
    min-width: 0;
}

.featured-heading-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.featured-title {
    margin: 0;
    font-size: clamp(1.18rem, 2vw, 1.52rem);
    line-height: 1;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.tag-row--featured {
    flex-wrap: nowrap;
    gap: 6px;
    overflow: hidden;
}

.featured-lead {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.24;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.meta-chip,
.track-pill,
.beat-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.meta-row--featured {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    min-width: 0;
    align-items: center;
}

.meta-row--featured .meta-chip {
    flex: 0 0 auto;
    justify-content: center;
    padding: 0 9px;
    gap: 5px;
    white-space: nowrap;
}

.meta-chip-label,
.track-pill-label {
    color: var(--muted);
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.meta-chip-value,
.track-pill-value {
    font-size: 0.78rem;
    font-weight: 600;
}

.meta-row--featured .meta-chip-label {
    font-size: 0.56rem;
}

.meta-row--featured .meta-chip-value {
    font-size: 0.72rem;
}

.beat-tag {
    min-height: 20px;
    padding: 0 8px;
    color: var(--accent-strong);
    font-size: 0.68rem;
    font-weight: 500;
    white-space: nowrap;
}

.featured-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    justify-self: end;
    padding-top: 0;
}

.playlist-order-button,
.popup-cta,
.player-order-button {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #f8fbff;
    font-weight: 700;
}

.primary-action {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-width: 200px;
    max-width: 100%;
    padding: 0 26px;
    border: 1px solid rgba(132, 164, 248, 0.58);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.primary-action > span {
    position: relative;
    z-index: 1;
}

.primary-action::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    height: 100%;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    transition: width 0.35s ease;
    z-index: 0;
}

.magic-cta {
    justify-content: center;
}

.secondary-action,
.playlist-preview-button {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line);
    color: var(--text);
    font-weight: 600;
}

.primary-action:hover,
.primary-action:focus-visible,
.secondary-action:hover,
.player-order-button:hover,
.playlist-preview-button:hover,
.playlist-order-button:hover,
.popup-cta:hover,
.support-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.25);
}

.primary-action:hover,
.primary-action:focus-visible {
    color: #f8fbff;
    border-color: rgba(156, 184, 255, 0.82);
}

.primary-action:hover::after,
.primary-action:focus-visible::after {
    width: 100%;
}

.primary-action.is-active,
.secondary-action.is-active {
    border-color: rgba(156, 184, 255, 0.82);
}

.featured-preview-button,
.featured-order-button {
    min-height: 34px;
    padding: 0 12px;
}

.featured-preview-button {
    width: 34px;
    min-width: 34px;
    padding: 0;
    border-radius: 50%;
    font-size: 0.92rem;
}

.featured-order-button {
    min-width: 104px;
    font-size: 0.82rem;
}

.playlist-table {
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.playlist-header,
.beat-row {
    display: grid;
    grid-template-columns: minmax(0, 2fr) 44px 44px 62px 176px;
    gap: 4px;
    align-items: center;
    padding: 0 18px;
}

.playlist-header {
    min-height: 44px;
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--line);
}

.beat-list {
    display: grid;
}

.beat-row {
    position: relative;
    min-height: 66px;
    padding-top: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: background-color 0.22s ease;
}

.beat-row:last-child {
    border-bottom: 0;
}

.beat-row:hover,
.beat-row:focus-visible,
.beat-row.is-active {
    background: rgba(255, 255, 255, 0.04);
}

.beat-row:focus-visible {
    outline: 1px solid rgba(150, 166, 255, 0.55);
    outline-offset: -1px;
}

.beat-row.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--accent-strong));
}

.beat-row-main {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
}

.beat-row-artwork-button {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
}

.beat-row-image {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
}

.beat-row-copy {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.beat-row-title-link {
    position: relative;
    width: fit-content;
    max-width: 100%;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.beat-row-title-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(142, 173, 255, 0), rgba(142, 173, 255, 0.9), rgba(142, 173, 255, 0));
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.beat-row-title-link:hover::after,
.beat-row-title-link:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.beat-row-description {
    display: none;
}

.beat-row-meta {
    display: grid;
    gap: 4px;
}

.playlist-header > span:nth-child(2),
.playlist-header > span:nth-child(3),
.beat-row-meta[data-role="bpm"],
.beat-row-meta[data-role="key"] {
    justify-items: center;
    text-align: center;
}

.beat-row-meta[data-role="duration"] {
    justify-self: start;
    justify-items: start;
    text-align: left;
    width: 62px;
}

.beat-row-label {
    display: none;
    color: var(--muted);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.beat-row-value {
    font-size: 0.84rem;
    font-weight: 600;
}

.beat-row-actions {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.playlist-preview-button {
    position: relative;
    min-width: 40px;
    width: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
}

.playlist-order-button {
    position: relative;
    min-width: 118px;
    min-height: 36px;
    padding: 0 14px;
    gap: 6px;
    border: 1px solid rgba(77, 136, 255, 0.72);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(69, 134, 255, 0.78), rgba(32, 106, 239, 0.88));
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 0 0 1px rgba(130, 174, 255, 0.12), 0 8px 16px rgba(11, 55, 138, 0.2);
    white-space: nowrap;
    overflow: hidden;
}

.playlist-preview-button::before,
.player-order-button::before {
    content: '';
    width: 15px;
    height: 15px;
    display: block;
    flex: 0 0 auto;
    background-color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
}

.playlist-preview-button::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5.14v13.72c0 .78.84 1.26 1.5.86l10-6.86a1 1 0 0 0 0-1.72l-10-6.86A1 1 0 0 0 8 5.14Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5.14v13.72c0 .78.84 1.26 1.5.86l10-6.86a1 1 0 0 0 0-1.72l-10-6.86A1 1 0 0 0 8 5.14Z'/%3E%3C/svg%3E");
}

.playlist-preview-button[data-state="pause"]::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 5h4v14H7zM13 5h4v14h-4z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 5h4v14H7zM13 5h4v14h-4z'/%3E%3C/svg%3E");
}

.playlist-order-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transition: left 0.45s ease;
    pointer-events: none;
}

.playlist-order-button:hover::before,
.playlist-order-button:focus-visible::before {
    left: 100%;
}

.playlist-order-button-icon {
    width: 16px;
    height: 16px;
    display: block;
    flex: 0 0 auto;
    background-color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a1 1 0 0 1 1 1v8.59l2.3-2.29a1 1 0 1 1 1.4 1.41l-4 4a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 1.4-1.41L11 12.59V4a1 1 0 0 1 1-1Zm-7 14a1 1 0 0 1 1 1v1h12v-1a1 1 0 1 1 2 0v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a1 1 0 0 1 1 1v8.59l2.3-2.29a1 1 0 1 1 1.4 1.41l-4 4a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 1.4-1.41L11 12.59V4a1 1 0 0 1 1-1Zm-7 14a1 1 0 0 1 1 1v1h12v-1a1 1 0 1 1 2 0v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E");
    transition: transform 0.2s ease;
}

.playlist-order-button-label {
    position: relative;
    z-index: 1;
    line-height: 1;
}

.playlist-order-button:hover,
.playlist-order-button:focus-visible {
    background: linear-gradient(135deg, rgba(54, 125, 255, 0.96), rgba(19, 121, 255, 1));
    border-color: rgba(129, 184, 255, 0.9);
    box-shadow: 0 0 12px rgba(19, 121, 255, 0.32), 0 10px 20px rgba(13, 49, 118, 0.24);
}

.playlist-order-button:hover .playlist-order-button-icon,
.playlist-order-button:focus-visible .playlist-order-button-icon {
    transform: translateY(1px);
}

.player-order-button::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a1 1 0 0 1 1 1v8.59l2.3-2.29a1 1 0 1 1 1.4 1.41l-4 4a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 1.4-1.41L11 12.59V4a1 1 0 0 1 1-1Zm-7 14a1 1 0 0 1 1 1v1h12v-1a1 1 0 1 1 2 0v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a1 1 0 0 1 1 1v8.59l2.3-2.29a1 1 0 1 1 1.4 1.41l-4 4a1 1 0 0 1-1.4 0l-4-4a1 1 0 0 1 1.4-1.41L11 12.59V4a1 1 0 0 1 1-1Zm-7 14a1 1 0 0 1 1 1v1h12v-1a1 1 0 1 1 2 0v2a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-2a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E");
}

.playlist-empty-state {
    margin: 0;
    padding: 24px 18px 28px;
    color: var(--muted);
}

.playlist-footer {
    display: flex;
    justify-content: center;
}

.playlist-more-button {
    min-width: 188px;
}

.playlist-more-button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    box-shadow: none;
}

.playlist-more-button[disabled]:hover {
    transform: none;
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.popup-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(3, 3, 4, 0.82);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    z-index: 50;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    position: relative;
    width: min(100%, 760px);
    max-height: min(86vh, 860px);
    overflow-y: auto;
    padding: 28px;
    border-radius: var(--radius-xl);
    transform: translateY(18px) scale(0.98);
    transition: transform 0.28s ease;
}

.popup-overlay.show .popup-content {
    transform: translateY(0) scale(1);
}

.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
}

.course-modal {
    z-index: 70;
    background: rgba(2, 5, 13, 0.66);
    backdrop-filter: blur(8px);
}

.course-modal-content {
    display: grid;
    gap: 16px;
    width: min(100%, 520px);
    overflow: hidden;
    padding: clamp(28px, 5vw, 42px);
    border: 1px solid rgba(187, 255, 97, 0.3);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        rgba(9, 15, 31, 0.94);
    box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(187, 255, 97, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    text-align: center;
}

.course-modal-eyebrow {
    justify-self: center;
    color: #bbff61;
}

.course-modal-title {
    margin: 0 auto;
    max-width: 420px;
    color: #ffffff;
    font-size: clamp(1.78rem, 4.8vw, 3rem);
    line-height: 1;
    letter-spacing: 0;
    text-wrap: balance;
}

.course-modal-lead {
    margin: 0;
    color: rgba(238, 244, 255, 0.78);
    font-family: var(--font-copy);
    font-size: clamp(1rem, 2.4vw, 1.16rem);
    line-height: 1.42;
    letter-spacing: 0;
}

.course-modal-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    min-height: 50px;
    min-width: 190px;
    margin-top: 4px;
    padding: 0 24px;
    border: 1px solid rgba(187, 255, 97, 0.76);
    border-radius: 12px;
    background: #bbff61;
    color: #101809;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow:
        0 16px 34px rgba(187, 255, 97, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.46);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
}

.course-modal-cta:hover,
.course-modal-cta:focus-visible {
    transform: translateY(-2px);
    background: #c8ff7a;
    box-shadow:
        0 20px 42px rgba(187, 255, 97, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.course-modal-close:hover,
.course-modal-close:focus-visible {
    background: rgba(187, 255, 97, 0.14);
    color: #ffffff;
}

.image-modal-content {
    width: min(100%, 760px);
    padding: 22px;
}

.image-modal-kicker {
    margin-bottom: 18px;
}

.image-modal-image {
    width: 100%;
    max-height: min(72vh, 860px);
    object-fit: contain;
    border-radius: calc(var(--radius-xl) - 8px);
}

@media (max-width: 920px) {
    .featured-release {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .featured-artwork-wrap {
        width: 132px;
        max-width: 132px;
    }

    .featured-heading-row {
        flex-wrap: wrap;
    }

    .meta-row--featured {
        flex-wrap: wrap;
    }

    .featured-actions {
        justify-self: start;
    }

    .playlist-header {
        display: none;
    }

    .beat-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .beat-row-main,
    .beat-row-actions {
        grid-column: 1 / -1;
    }

    .beat-row-meta {
        padding: 8px 10px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.03);
    }

    .beat-row-label {
        display: block;
    }

    .beat-row-actions {
        justify-content: flex-start;
    }

    .playlist-footer {
        justify-content: center;
    }
}

@media (max-width: 720px) {
    .popup-content {
        padding: 16px;
    }

    .course-modal {
        padding: 14px;
    }

    .course-modal-content {
        gap: 14px;
        padding: 30px 18px 22px;
        border-radius: 18px;
    }

    .course-modal-cta {
        width: 100%;
        min-width: 0;
    }

    .hero-social-link {
        width: 38px;
        height: 38px;
    }

    .hero-social-icon {
        width: 18px;
        height: 18px;
    }

    .beat-row {
        grid-template-columns: minmax(0, 1fr) 96px;
        min-height: 0;
        gap: 6px 10px;
        padding: 10px 12px;
    }

    .beat-row-main {
        grid-column: 1;
        grid-row: 1;
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 8px;
        align-self: center;
    }

    .beat-row-image {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    .beat-row-artwork-button {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    .beat-row-copy {
        gap: 4px;
    }

    .beat-row-meta[data-role="duration"],
    .beat-row-meta[data-role="bpm"],
    .beat-row-meta[data-role="key"] {
        display: none;
    }

    .beat-row-actions {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
        width: 96px;
        display: grid;
        grid-template-columns: repeat(2, 38px);
        justify-content: center;
        justify-items: center;
        align-self: center;
        gap: 8px;
    }

    .beat-row-title-link {
        font-size: 0.88rem;
    }

    .beat-tag {
        min-height: 18px;
        padding: 0 7px;
        font-size: 0.62rem;
    }

    .playlist-preview-button,
    .playlist-order-button {
        min-width: 38px;
        width: 38px;
        min-height: 38px;
        padding: 0;
        gap: 0;
        flex: 0 0 auto;
        display: grid;
        place-items: center;
    }

    .playlist-preview-button {
        position: relative;
        font-size: 0;
    }

    .playlist-preview-button::before {
        content: '';
        width: 18px;
        height: 18px;
        display: block;
        margin: 0;
        background-color: currentColor;
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: contain;
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5.14v13.72c0 .78.84 1.26 1.5.86l10-6.86a1 1 0 0 0 0-1.72l-10-6.86A1 1 0 0 0 8 5.14Z'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M8 5.14v13.72c0 .78.84 1.26 1.5.86l10-6.86a1 1 0 0 0 0-1.72l-10-6.86A1 1 0 0 0 8 5.14Z'/%3E%3C/svg%3E");
    }

    .playlist-preview-button[data-state="pause"]::before {
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 5h4v14H7zM13 5h4v14h-4z'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 5h4v14H7zM13 5h4v14h-4z'/%3E%3C/svg%3E");
    }

    .playlist-order-button {
        position: relative;
        border-radius: 10px;
        box-shadow: 0 0 0 1px rgba(130, 174, 255, 0.12);
    }

    .playlist-order-button::before {
        display: none;
    }

    .playlist-order-button-label {
        display: none;
    }

    .playlist-order-button-icon {
        width: 18px;
        height: 18px;
    }

    .playlist-footer {
        justify-content: center;
    }

    .support-section-cta {
        justify-self: center;
    }

}

/* Player replacement: clean desktop dock based on external new-player reference */
.player-dock {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    width: 100%;
    max-width: 100vw;
    padding: 0;
    overflow: clip;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
    transition:
        transform 0.28s ease,
        opacity 0.28s ease,
        visibility 0.28s ease;
}

.player-track-link {
    position: relative;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.player-track-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: translateY(2px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.player-track-link:hover::after,
.player-track-link:focus-visible::after {
    opacity: 0.74;
    transform: translateY(0);
}

body.player-dock-visible .player-dock {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.player-desktop-shell,
.player-mobile-shell {
    display: none;
}

.player-dock svg {
    display: block;
}

#audioPlayer {
    display: none;
}

@media (min-width: 721px) {
    .player-desktop-shell {
        display: block;
        background: #000;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.42);
    }

    .player-desktop-timeline-wrap {
        position: relative;
        height: 4px;
        background: transparent;
        transform-origin: bottom center;
        transition: height 0.16s ease;
        touch-action: none;
    }

    .player-desktop-timeline-wrap:hover,
    .player-desktop-timeline-wrap.is-hovering,
    .player-desktop-timeline-wrap.is-seeking {
        height: 11px;
    }

    .player-desktop-progress-bar {
        width: 100%;
        height: 100%;
        border-radius: 0;
        background: rgba(255, 255, 255, 0.12);
        overflow: visible;
        cursor: pointer;
        transition: height 0.16s ease;
    }

    .player-desktop-progress-bar .progress-fill {
        width: 0;
        height: 100%;
        border-radius: inherit;
        background: #1f51ff;
        box-shadow: 0 0 12px rgba(31, 81, 255, 0.58);
    }

    .player-desktop-progress-thumb {
        position: absolute;
        top: 50%;
        left: 0;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #fff;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.15s ease;
    }

    .player-desktop-thumb-tooltip,
    .player-desktop-cursor-tooltip {
        position: absolute;
        left: 50%;
        bottom: calc(100% + 10px);
        transform: translateX(-50%);
        padding: 4px 8px;
        border-radius: 999px;
        background: rgba(37, 37, 37, 0.96);
        color: #fff;
        font-size: 0.68rem;
        line-height: 1;
        white-space: nowrap;
        pointer-events: none;
    }

    .player-desktop-thumb-tooltip {
        opacity: 0;
        transition: opacity 0.15s ease;
    }

    .player-desktop-cursor-tooltip {
        opacity: 0;
        transition: opacity 0.15s ease;
    }

    .player-desktop-timeline-wrap.is-hovering .player-desktop-progress-thumb,
    .player-desktop-timeline-wrap.is-seeking .player-desktop-progress-thumb,
    .player-desktop-timeline-wrap.is-hovering .player-desktop-thumb-tooltip,
    .player-desktop-timeline-wrap.is-seeking .player-desktop-thumb-tooltip {
        opacity: 1;
    }

    .player-desktop-bar {
        display: grid;
        grid-template-columns: minmax(240px, 1fr) auto minmax(300px, 1fr);
        align-items: center;
        gap: 20px;
        min-height: 61px;
        padding-right: 18px;
    }

    .player-desktop-now-playing {
        display: flex;
        align-items: stretch;
        min-width: 0;
    }

    .player-desktop-cover {
        flex: 0 0 61px;
        width: 61px;
        height: 61px;
        overflow: hidden;
    }

    .player-desktop-cover img {
        width: 61px;
        height: 61px;
        border-radius: 0;
        object-fit: cover;
    }

    .player-desktop-copy {
        min-width: 0;
        padding-left: 16px;
        gap: 4px;
        align-content: center;
    }

    .player-desktop-copy .track-title {
        font-size: 1.02rem;
        font-weight: 700;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-desktop-copy .track-artist {
        color: rgba(255, 255, 255, 0.62);
        font-size: 0.86rem;
    }

    .player-desktop-center {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
    }

    .player-desktop-icon-button,
    .player-desktop-play-button {
        display: inline-grid;
        place-items: center;
        padding: 0;
        border: 0;
        background: transparent;
        cursor: pointer;
        transition:
            transform 0.18s ease,
            opacity 0.18s ease,
            color 0.18s ease;
    }

    .player-desktop-icon-button {
        width: 31px;
        height: 31px;
        color: rgba(255, 255, 255, 0.86);
        opacity: 0.56;
    }

    .player-desktop-icon-button svg {
        width: 20px;
        height: 20px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .player-desktop-icon-button:hover,
    .player-desktop-icon-button:focus-visible {
        opacity: 1;
        transform: translateY(-1px);
    }

    .player-desktop-icon-button.is-active {
        color: #1f51ff;
        opacity: 1;
    }

    .player-desktop-play-button {
        width: 43px;
        height: 43px;
        border-radius: 50%;
        background: #fff;
        color: #000;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .player-desktop-play-button:hover,
    .player-desktop-play-button:focus-visible {
        transform: scale(1.03);
    }

    .player-desktop-play-button svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
        stroke: none;
    }

    .player-dock.is-playing .player-desktop-play-button {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.1),
            0 0 18px rgba(255, 255, 255, 0.1);
    }

    .player-desktop-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 18px;
        min-width: 0;
    }

    .player-desktop-volume {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
        cursor: pointer;
        user-select: none;
        outline: none;
    }

    .player-desktop-volume-icon {
        display: inline-grid;
        place-items: center;
        padding: 0;
        border: 0;
        background: transparent;
        width: 18px;
        height: 18px;
        color: rgba(255, 255, 255, 0.9);
        flex: 0 0 auto;
        cursor: pointer;
        appearance: none;
    }

    .player-desktop-volume-icon:hover,
    .player-desktop-volume-icon:focus-visible {
        color: #fff;
    }

    .player-desktop-volume-icon svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .player-desktop-volume-track {
        position: relative;
        width: 99px;
        height: 2px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.24);
    }

    .player-desktop-volume-fill {
        position: absolute;
        top: 0;
        left: 0;
        width: 70%;
        height: 100%;
        border-radius: inherit;
        background: #fff;
    }

    .player-desktop-volume-thumb {
        position: absolute;
        top: 50%;
        left: 70%;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #fff;
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.15s ease;
    }

    .player-desktop-volume:hover .player-desktop-volume-thumb,
    .player-desktop-volume.is-dragging .player-desktop-volume-thumb,
    .player-desktop-volume:focus-visible .player-desktop-volume-thumb {
        opacity: 1;
    }

    .player-desktop-order-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        gap: 8px;
        min-height: 38px;
        padding: 0 18px;
        border-radius: 999px;
        border: 1px solid rgba(117, 157, 255, 0.42);
        background: linear-gradient(135deg, rgba(69, 134, 255, 0.96), rgba(22, 92, 255, 0.92));
        color: #f8fbff;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        box-shadow:
            0 10px 22px rgba(7, 31, 91, 0.24),
            inset 0 1px 0 rgba(255, 255, 255, 0.14);
        white-space: nowrap;
        transition:
            transform 0.18s ease,
            border-color 0.18s ease,
            background 0.18s ease,
            box-shadow 0.18s ease;
    }

    .player-desktop-order-button:hover,
    .player-desktop-order-button:focus-visible {
        transform: translateY(-1px);
        border-color: rgba(161, 194, 255, 0.88);
        background: linear-gradient(135deg, rgba(86, 148, 255, 1), rgba(35, 107, 255, 0.98));
        box-shadow:
            0 14px 28px rgba(6, 32, 96, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 720px) {
    .player-mobile-shell {
        display: block;
        width: 100%;
        max-width: 100vw;
        min-width: 0;
        padding: 0 max(8px, env(safe-area-inset-left, 0px)) calc(8px + env(safe-area-inset-bottom, 0px)) max(8px, env(safe-area-inset-right, 0px));
    }

    .player-mobile-card,
    .player-mobile-mini {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
            #020202;
        box-shadow:
            0 -16px 34px rgba(0, 0, 0, 0.34),
            inset 0 1px 0 rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(18px);
    }

    .player-mobile-mini {
        position: relative;
        display: none;
        align-items: center;
        gap: 8px;
        min-height: 62px;
        padding: 12px 10px;
        border-radius: 20px;
        color: var(--text);
        overflow: hidden;
    }

    body.player-dock-collapsed .player-mobile-mini {
        display: flex;
    }

    .player-mobile-mini-main {
        position: relative;
        z-index: 1;
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 0;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        cursor: pointer;
    }

    .player-mobile-mini-cover {
        position: relative;
        z-index: 1;
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        border-radius: 11px;
        overflow: hidden;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
    }

    .player-mobile-mini-cover img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .player-mobile-mini-progress {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.1);
    }

    .player-mobile-mini-progress-fill {
        display: block;
        width: 0;
        height: 100%;
        background: #1f51ff;
        box-shadow: 0 0 14px rgba(31, 81, 255, 0.48);
    }

    .player-mobile-mini-copy {
        display: grid;
        gap: 2px;
        min-width: 0;
        flex: 1 1 auto;
        text-align: left;
    }

    .player-mobile-mini-actions {
        position: relative;
        z-index: 1;
        display: flex;
        align-items: center;
        gap: 4px;
        flex: 0 0 auto;
    }

    .player-mobile-mini-control,
    .player-mobile-mini-play-button {
        display: inline-grid;
        place-items: center;
        padding: 0;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
        color: rgba(255, 255, 255, 0.8);
        cursor: pointer;
        flex: 0 0 auto;
    }

    .player-mobile-mini-control {
        width: 28px;
        height: 28px;
    }

    .player-mobile-mini-control svg {
        width: 13px;
        height: 13px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .player-mobile-mini-play-button {
        width: 32px;
        height: 32px;
        background: #fff;
        color: #000;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .player-mobile-mini-play-button svg {
        width: 13px;
        height: 13px;
        fill: currentColor;
        stroke: none;
    }

    .player-dock.is-playing .player-mobile-mini-play-button {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.1),
            0 0 14px rgba(255, 255, 255, 0.08);
    }

    .player-mobile-mini-title {
        font-size: 0.88rem;
        font-weight: 700;
        line-height: 1.05;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-mobile-mini-hint {
        color: rgba(255, 255, 255, 0.54);
        font-size: 0.64rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .player-mobile-card {
        position: relative;
        display: grid;
        gap: 12px;
        padding: 10px 12px 12px;
        border-radius: 24px 24px 18px 18px;
        overflow: hidden;
    }

    .player-mobile-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, rgba(31, 81, 255, 0.86), rgba(76, 128, 255, 0.68));
        pointer-events: none;
    }

    body.player-dock-collapsed .player-mobile-card {
        display: none;
    }

    .player-mobile-top-actions {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    .player-mobile-close,
    .player-mobile-order-button {
        width: 34px;
        height: 34px;
        min-height: 34px;
        display: inline-grid;
        place-items: center;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.03);
        color: rgba(255, 255, 255, 0.7);
        cursor: pointer;
        opacity: 1;
        box-shadow: none;
    }

    .player-mobile-order-button {
        position: relative;
        justify-self: auto;
        margin-top: 0;
        padding: 0;
        font-size: 0;
        letter-spacing: 0;
        text-transform: none;
        flex: 0 0 auto;
    }

    .player-mobile-order-button::before {
        width: 16px;
        height: 16px;
        margin: 0;
    }

    .player-mobile-close:hover,
    .player-mobile-close:focus-visible,
    .player-mobile-order-button:hover,
    .player-mobile-order-button:focus-visible {
        border-color: rgba(122, 162, 255, 0.46);
        background: rgba(31, 81, 255, 0.12);
        color: #fff;
    }

    .player-mobile-close::before {
        content: '';
        width: 14px;
        height: 14px;
        display: block;
        background-color: currentColor;
        mask-repeat: no-repeat;
        mask-position: center;
        mask-size: contain;
        -webkit-mask-repeat: no-repeat;
        -webkit-mask-position: center;
        -webkit-mask-size: contain;
        -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.72 6.72a.75.75 0 0 1 1.06 0L12 10.94l4.22-4.22a.75.75 0 1 1 1.06 1.06L13.06 12l4.22 4.22a.75.75 0 1 1-1.06 1.06L12 13.06l-4.22 4.22a.75.75 0 1 1-1.06-1.06L10.94 12 6.72 7.78a.75.75 0 0 1 0-1.06Z'/%3E%3C/svg%3E");
        mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.72 6.72a.75.75 0 0 1 1.06 0L12 10.94l4.22-4.22a.75.75 0 1 1 1.06 1.06L13.06 12l4.22 4.22a.75.75 0 1 1-1.06 1.06L12 13.06l-4.22 4.22a.75.75 0 1 1-1.06-1.06L10.94 12 6.72 7.78a.75.75 0 0 1 0-1.06Z'/%3E%3C/svg%3E");
    }

    .player-mobile-now-playing {
        display: grid;
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 12px;
        align-items: center;
        padding-right: 0;
        min-width: 0;
    }

    .player-mobile-cover img {
        width: 52px;
        height: 52px;
        border-radius: 0;
        object-fit: cover;
    }

    .player-mobile-copy {
        min-width: 0;
        gap: 3px;
        padding-top: 0;
    }

    .player-mobile-copy .player-kicker {
        margin: 0;
        color: rgba(255, 255, 255, 0.46);
        font-size: 0.58rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .player-mobile-copy .track-title {
        font-size: 0.92rem;
        font-weight: 700;
        line-height: 1.08;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .player-mobile-copy .track-artist {
        color: rgba(255, 255, 255, 0.62);
        font-size: 0.74rem;
    }

    .player-mobile-shell .player-progress-row {
        display: block;
    }

    .player-mobile-shell .progress-container {
        gap: 7px;
    }

    .player-mobile-progress-bar {
        height: 3px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        cursor: pointer;
        touch-action: none;
    }

    .player-mobile-progress-bar .progress-fill {
        width: 0;
        height: 100%;
        border-radius: inherit;
        background: #1f51ff;
        box-shadow: 0 0 12px rgba(31, 81, 255, 0.48);
    }

    .player-mobile-shell .time-display {
        display: flex;
        justify-content: space-between;
        color: rgba(255, 255, 255, 0.48);
        font-size: 0.64rem;
        letter-spacing: 0.04em;
    }

    .player-mobile-actions {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: clamp(6px, 2vw, 12px);
        min-width: 0;
    }

    .player-mobile-nav-button,
    .player-mobile-play-button {
        display: inline-grid;
        place-items: center;
        padding: 0;
        border: 0;
        cursor: pointer;
    }

    .player-mobile-nav-button {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.03);
        color: rgba(255, 255, 255, 0.84);
        opacity: 0.76;
    }

    .player-mobile-nav-button svg {
        width: 15px;
        height: 15px;
        fill: none;
        stroke: currentColor;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .player-mobile-play-button {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #fff;
        color: #000;
        box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
    }

    .player-mobile-play-button svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
        stroke: none;
    }

    .player-dock.is-playing .player-mobile-play-button {
        box-shadow:
            0 0 0 1px rgba(255, 255, 255, 0.1),
            0 0 18px rgba(255, 255, 255, 0.1);
    }

    .player-mobile-mode-button.is-active {
        border-color: rgba(112, 149, 248, 0.36);
        background: rgba(31, 81, 255, 0.16);
        color: #9fb9ff;
        opacity: 1;
    }
}

@media (max-width: 420px) {
    .player-mobile-now-playing {
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 9px;
    }

    .player-mobile-cover img {
        width: 48px;
        height: 48px;
        border-radius: 0;
    }

    .player-mobile-mini {
        min-height: 58px;
        padding-right: 10px;
    }

    .player-mobile-mini-cover {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }

    .player-mobile-mini-actions {
        gap: 3px;
    }

    .player-mobile-mini-control {
        width: 26px;
        height: 26px;
    }

    .player-mobile-mini-play-button {
        width: 30px;
        height: 30px;
    }

    .player-mobile-top-actions {
        gap: 6px;
    }

    .player-mobile-close,
    .player-mobile-order-button {
        width: 32px;
        height: 32px;
        min-height: 32px;
    }

    .player-mobile-actions {
        gap: 5px;
    }

    .player-mobile-nav-button {
        width: 32px;
        height: 32px;
    }

    .player-mobile-play-button {
        width: 42px;
        height: 42px;
    }
}
