.nds-player {
    --accent: #ff334f;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    border-radius: 22px 22px 0 0;
    color: #fff;
    user-select: none;
}
.nds-player video {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    background: #000;
}
.nds-player::after {
    content: "";
    pointer-events: none;
    position: absolute;
    inset: 48% 0 0;
    background: linear-gradient(transparent, rgba(0,0,0,.72));
    opacity: .9;
}
.nds-player.is-idle::after,
.nds-player.is-idle .nds-controls { opacity: 0; }
.nds-player:hover .nds-controls,
.nds-player:focus-within .nds-controls { opacity: 1; }

.nds-big-play {
    position:absolute;
    top:50%; left:50%;
    transform:translate(-50%,-50%);
    width:76px; height:76px;
    display:grid; place-items:center;
    border:0; border-radius:50%;
    color:#fff;
    background:linear-gradient(135deg,#ff334f,#ff6174);
    box-shadow:0 18px 55px rgba(255,51,79,.34);
    z-index:4;
    font-size:1.45rem;
    transition:.2s ease;
}
.nds-big-play:hover { transform:translate(-50%,-50%) scale(1.06); }
.nds-player.is-playing .nds-big-play { opacity:0; pointer-events:none; }

.nds-loading {
    display:none;
    position:absolute;
    inset:0;
    z-index:5;
    place-items:center;
    background:rgba(0,0,0,.20);
    pointer-events:none;
}
.nds-player.is-buffering .nds-loading { display:grid; }
.nds-spinner {
    width:48px;height:48px;border-radius:50%;
    border:4px solid rgba(255,255,255,.18);
    border-top-color:var(--accent);
    animation:ndsSpin .8s linear infinite;
}
@keyframes ndsSpin { to { transform:rotate(360deg); } }

.nds-controls {
    position:absolute;
    left:0; right:0; bottom:0;
    z-index:10;
    padding:0 16px 13px;
    transition:opacity .2s ease;
}
.nds-progress-wrap { position:relative; height:20px; display:flex; align-items:center; cursor:pointer; }
.nds-progress-track {
    position:absolute; left:0; right:0;
    height:4px; border-radius:999px;
    background:rgba(255,255,255,.20);
    overflow:hidden;
}
.nds-buffered { position:absolute; inset:0 auto 0 0; width:0; background:rgba(255,255,255,.38); }
.nds-played { position:absolute; inset:0 auto 0 0; width:0; background:var(--accent); }
.nds-seek {
    position:absolute; inset:0;
    width:100%; opacity:0; cursor:pointer;
}
.nds-control-row { display:flex; align-items:center; gap:9px; min-height:38px; }
.nds-control-btn {
    width:38px; height:38px;
    display:grid; place-items:center;
    border:0; border-radius:10px;
    background:transparent;
    color:#fff;
    font-size:1rem;
}
.nds-control-btn:hover { background:rgba(255,255,255,.12); }
.nds-time { font-size:.83rem; color:#e6e8ec; font-variant-numeric:tabular-nums; white-space:nowrap; }
.nds-spacer { flex:1; }
.nds-volume { width:88px; accent-color:var(--accent); }
.nds-quality-chip {
    font-size:.76rem;
    font-weight:800;
    padding:.34rem .5rem;
    border-radius:8px;
    background:rgba(255,255,255,.10);
    color:#fff;
    white-space:nowrap;
}
.nds-settings {
    display:none;
    position:absolute;
    right:14px;
    bottom:62px;
    z-index:20;
    min-width:250px;
    max-height:min(420px,70vh);
    overflow:auto;
    padding:10px;
    border-radius:16px;
    background:rgba(14,16,21,.96);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 24px 70px rgba(0,0,0,.55);
    backdrop-filter:blur(18px);
}
.nds-settings.open { display:block; }
.nds-settings-title { padding:6px 8px 10px; font-size:.76rem; color:#9197a2; font-weight:800; text-transform:uppercase; letter-spacing:.08em; }
.nds-setting-option {
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:1rem;
    padding:.62rem .7rem;
    border:0;
    border-radius:10px;
    color:#e9ebef;
    background:transparent;
    text-align:left;
}
.nds-setting-option:hover { background:rgba(255,255,255,.07); }
.nds-setting-option.active { background:rgba(255,51,79,.14); color:#fff; }
.nds-setting-option.active::after { content:"✓"; color:var(--accent); font-weight:900; }
.nds-settings-divider { height:1px; background:rgba(255,255,255,.08); margin:8px 2px; }
.nds-player-error {
    display:none;
    position:absolute;
    inset:0;
    z-index:30;
    padding:2rem;
    place-items:center;
    text-align:center;
    background:#08090c;
}
.nds-player.has-error .nds-player-error { display:grid; }
.nds-player-error i { color:var(--accent); font-size:2rem; margin-bottom:.8rem; }

@media(max-width:650px){
    .nds-controls{padding:0 9px 8px}
    .nds-volume{display:none}
    .nds-control-btn{width:34px;height:34px}
    .nds-quality-chip{display:none}
    .nds-time{font-size:.75rem}
    .nds-settings{right:8px;bottom:52px;min-width:220px}
    .nds-big-play{width:62px;height:62px}
}

/* ========================================================================== */
/* NDS v6.3.3 - Lyrics wie Qualitäts-Chip                                     */
/* ========================================================================== */
.nds-lyrics-toggle {
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: .34rem .5rem !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: rgba(255,255,255,.10) !important;
    box-shadow: none !important;
    white-space: nowrap !important;
    font-size: .76rem !important;
    font-weight: 800 !important;
    line-height: normal !important;
    color: #ff4d62 !important; /* AUS = rot */
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}
.nds-lyrics-toggle .nds-lyrics-btn-label {
    display: inline !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    white-space: nowrap !important;
    font: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
}
.nds-lyrics-toggle:hover {
    background: rgba(255,255,255,.15) !important;
}
.nds-lyrics-toggle.active,
.nds-lyrics-toggle[aria-pressed="true"] {
    color: #38d27d !important; /* AN = grün */
    background: rgba(255,255,255,.10) !important;
}
.nds-lyrics-toggle:not(.active),
.nds-lyrics-toggle[aria-pressed="false"] {
    color: #ff4d62 !important; /* AUS = rot */
}
@media(max-width:650px){
    .nds-lyrics-toggle {
        font-size: .72rem !important;
        padding: .32rem .46rem !important;
    }
}


/* ========================================================================== */
/* v6.4.1 – Autoplay Countdown im Player                                      */
/* ========================================================================== */
.nds-autoplay-overlay {
    position: absolute;
    inset: 0;
    z-index: 35;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 42px);
    background: rgba(4,5,8,.76);
    backdrop-filter: blur(9px);
}
.nds-autoplay-overlay[hidden] { display: none !important; }
.nds-autoplay-panel {
    width: min(520px, 94%);
    padding: 20px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background: rgba(18,20,26,.96);
    box-shadow: 0 24px 70px rgba(0,0,0,.48);
}
.nds-autoplay-kicker {
    margin-bottom: 12px;
    color: #ff4c61;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.nds-autoplay-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}
.nds-autoplay-thumb {
    width: 112px;
    height: 64px;
    flex: 0 0 auto;
    border-radius: 10px;
    object-fit: cover;
    background: #0a0b0e;
}
.nds-autoplay-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}
.nds-autoplay-next-title {
    overflow: hidden;
    color: #fff;
    font-size: 1rem;
    font-weight: 780;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.nds-autoplay-countdown {
    color: #9299a5;
    font-size: .78rem;
}
.nds-autoplay-progress {
    height: 3px;
    margin: 17px 0 15px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255,255,255,.09);
}
.nds-autoplay-progress span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg,#ff334f,#ff6578);
}
.nds-autoplay-actions {
    display: flex;
    gap: 9px;
    justify-content: flex-end;
}
.nds-autoplay-actions button {
    min-height: 38px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: .76rem;
    font-weight: 760;
    cursor: pointer;
}
.nds-autoplay-now {
    border: 0;
    background: #ff3b54;
    color: #fff;
}
.nds-autoplay-now:hover { filter: brightness(1.06); }
.nds-autoplay-cancel {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.035);
    color: #c0c5ce;
}
.nds-autoplay-cancel:hover {
    border-color: rgba(255,255,255,.2);
    color: #fff;
}
.nds-player.is-autoplay-countdown .nds-controls,
.nds-player.is-autoplay-countdown .nds-big-play,
.nds-player.is-autoplay-countdown .video-product-badges {
    opacity: 0 !important;
    pointer-events: none !important;
}
@media (max-width: 576px) {
    .nds-autoplay-panel { padding: 16px; border-radius: 15px; }
    .nds-autoplay-thumb { width: 86px; height: 52px; }
    .nds-autoplay-next-title { font-size: .88rem; }
    .nds-autoplay-actions { justify-content: stretch; }
    .nds-autoplay-actions button { flex: 1; padding: 0 10px; }
}


/* ========================================================================== */
/* v6.4.2 – Player-Autoplay-Button                                             */
/* ========================================================================== */
.nds-autoplay-player-toggle {
    flex: 0 0 auto !important;
    width: 34px !important;
    height: 30px !important;
    min-width: 34px !important;
    min-height: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important;
    border: 0 !important;
    background: rgba(255,255,255,.10) !important;
    color: #ff4d62 !important;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nds-autoplay-player-toggle:hover {
    background: rgba(255,255,255,.15) !important;
    transform: translateY(-1px);
}
.nds-autoplay-player-toggle.is-on,
.nds-autoplay-player-toggle[aria-pressed="true"] {
    color: #38d27d !important;
}
.nds-autoplay-player-toggle i {
    font-size: .86rem;
    line-height: 1;
    color: inherit !important;
}
@media(max-width:650px){
    .nds-autoplay-player-toggle {
        width: 32px !important;
        min-width: 32px !important;
        height: 30px !important;
    }
    .nds-autoplay-player-toggle i {
        font-size: .8rem;
    }
}


/* ========================================================================== */
/* v6.4.3 – Autoplay-Fallback + NDS Support CTA                               */
/* ========================================================================== */
.nds-autoplay-support {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 15px;
    padding: 12px 13px;
    border: 1px solid rgba(255,75,96,.20);
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(255,51,79,.10), rgba(255,255,255,.025));
}
.nds-autoplay-support-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.nds-autoplay-support-copy strong {
    color: #fff;
    font-size: .82rem;
    font-weight: 850;
}
.nds-autoplay-support-copy span {
    color: #aeb3bd;
    font-size: .69rem;
    line-height: 1.35;
}
.nds-autoplay-shop {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid rgba(255,75,96,.30);
    border-radius: 9px;
    background: rgba(255,51,79,.12);
    color: #ff7584;
    font-size: .72rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}
.nds-autoplay-shop:hover {
    background: #ff334f;
    color: #fff;
    transform: translateY(-1px);
}
.nds-autoplay-unmute {
    position: absolute;
    z-index: 33;
    left: 50%;
    bottom: 74px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 15px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(12,14,18,.88);
    color: #fff;
    box-shadow: 0 10px 32px rgba(0,0,0,.36);
    backdrop-filter: blur(10px);
    font-size: .78rem;
    font-weight: 800;
    cursor: pointer;
}
.nds-autoplay-unmute:hover {
    background: rgba(255,51,79,.92);
    border-color: rgba(255,51,79,1);
}
.nds-autoplay-unmute[hidden] { display: none !important; }
.nds-autoplay-unmute i { color: inherit; }

@media(max-width:650px){
    .nds-autoplay-support {
        align-items: stretch;
        flex-direction: column;
        gap: 9px;
        padding: 10px 11px;
    }
    .nds-autoplay-shop {
        width: 100%;
    }
    .nds-autoplay-support-copy span {
        font-size: .66rem;
    }
    .nds-autoplay-unmute {
        bottom: 64px;
        min-height: 36px;
        padding: 0 12px;
        font-size: .72rem;
    }
}


/* ========================================================================== */
/* v6.4.4 – Mehr Luft im Autoplay-Countdown                                   */
/* ========================================================================== */
.nds-autoplay-panel {
    width: min(560px, 94%);
    padding: 24px 26px;
}
.nds-autoplay-kicker {
    margin-bottom: 15px;
}
.nds-autoplay-preview {
    gap: 16px;
}
.nds-autoplay-copy {
    gap: 7px;
}
.nds-autoplay-progress {
    margin: 21px 0 18px;
}
.nds-autoplay-support {
    gap: 18px;
    margin-top: 0;
    padding: 15px 16px;
}
.nds-autoplay-support-copy {
    gap: 5px;
}
.nds-autoplay-support-copy span {
    line-height: 1.5;
}
.nds-autoplay-shop {
    min-height: 40px;
    padding: 0 15px;
}
.nds-autoplay-actions {
    gap: 10px;
    margin-top: 16px;
}
.nds-autoplay-actions button {
    min-height: 40px;
    padding: 0 16px;
}

@media (max-width: 650px) {
    .nds-autoplay-panel {
        width: min(94%, 520px);
        padding: 19px 18px;
    }
    .nds-autoplay-kicker {
        margin-bottom: 12px;
    }
    .nds-autoplay-progress {
        margin: 17px 0 15px;
    }
    .nds-autoplay-support {
        gap: 11px;
        padding: 13px;
    }
    .nds-autoplay-actions {
        margin-top: 13px;
    }
}

/* ========================================================================== */
/* v6.5.1 – Mobile Qualitätsmenü vollständig sichtbar                         */
/* ========================================================================== */
@media (max-width: 650px) {
    /*
     * Im 16:9-Mobilplayer ist nach oben schlicht nicht genug Platz für
     * Auto + 2160p + 1080p + 720p + 480p. Deshalb wird das Menü mobil als
     * kompakte Bottom-Sheet-Fläche an den Viewport gebunden und ist nicht
     * mehr auf die Playerhöhe begrenzt.
     */
    .nds-settings {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        top: auto !important;
        bottom: max(12px, env(safe-area-inset-bottom)) !important;
        z-index: 10050 !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: min(68dvh, 430px) !important;
        padding: 12px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        border-radius: 17px !important;
        background: rgba(14,16,21,.985) !important;
        box-shadow: 0 24px 80px rgba(0,0,0,.72) !important;
    }

    .nds-settings-title {
        position: sticky;
        top: -12px;
        z-index: 2;
        margin: -12px -12px 7px;
        padding: 14px 18px 11px !important;
        background: rgba(14,16,21,.985);
        border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .nds-quality-options {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .nds-setting-option {
        min-height: 43px;
        padding: .68rem .8rem !important;
        font-size: .88rem;
    }

    .nds-setting-option:last-child {
        margin-bottom: max(0px, env(safe-area-inset-bottom));
    }
}


/* ========================================================================== */
/* v6.5.2 – Mobile/Tablet Qualitätsmenü: garantiert im Viewport              */
/* ========================================================================== */
@media (max-width: 991px) {
    .nds-settings {
        position: fixed !important;
        left: 50% !important;
        right: auto !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
        z-index: 10050 !important;
        width: min(320px, calc(100vw - 24px)) !important;
        min-width: 0 !important;
        max-width: calc(100vw - 24px) !important;
        max-height: calc(100dvh - 24px) !important;
        padding: 10px !important;
        overflow: hidden !important;
        border-radius: 16px !important;
        background: rgba(14,16,21,.992) !important;
        border: 1px solid rgba(255,255,255,.12) !important;
        box-shadow: 0 24px 90px rgba(0,0,0,.78) !important;
        backdrop-filter: blur(18px);
    }

    .nds-settings.open {
        display: flex !important;
        flex-direction: column !important;
    }

    .nds-settings-title {
        position: static !important;
        flex: 0 0 auto !important;
        margin: 0 0 5px !important;
        padding: 7px 9px 10px !important;
        background: transparent !important;
        border-bottom: 1px solid rgba(255,255,255,.07) !important;
    }

    .nds-quality-options {
        display: flex !important;
        flex: 1 1 auto !important;
        min-height: 0 !important;
        flex-direction: column !important;
        gap: 2px !important;
        max-height: calc(100dvh - 86px) !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding-right: 2px;
    }

    .nds-setting-option {
        flex: 0 0 auto !important;
        min-height: 38px !important;
        padding: .52rem .68rem !important;
        font-size: .84rem !important;
        line-height: 1.1 !important;
    }
}

/* Sehr kleine bzw. quer gehaltene Smartphones: noch kompakter. */
@media (max-width: 991px) and (max-height: 520px) {
    .nds-settings {
        width: min(300px, calc(100vw - 20px)) !important;
        max-height: calc(100dvh - 16px) !important;
        padding: 8px !important;
    }
    .nds-settings-title {
        padding: 5px 7px 7px !important;
        margin-bottom: 3px !important;
        font-size: .69rem !important;
    }
    .nds-quality-options {
        max-height: calc(100dvh - 60px) !important;
    }
    .nds-setting-option {
        min-height: 32px !important;
        padding: .38rem .58rem !important;
        font-size: .78rem !important;
    }
}

/* ========================================================================== */
/* v6.5.3 – Mobile Qualität als kompakte horizontale Player-Leiste            */
/* ========================================================================== */
@media (max-width: 991px) {
    /*
     * Auf Smartphones kein großes, zentriertes Einstellungsfenster mehr.
     * Die Qualitätsstufen liegen als schmale, horizontal scrollbar Leiste
     * direkt über den Player-Bedienelementen. Dadurch bleibt das Video sichtbar
     * und jede Stufe ist unabhängig von der Displayhöhe erreichbar.
     */
    .nds-settings {
        position: absolute !important;
        left: 8px !important;
        right: 8px !important;
        top: auto !important;
        bottom: 54px !important;
        transform: none !important;
        z-index: 24 !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        max-height: none !important;
        padding: 7px !important;
        overflow: hidden !important;
        border-radius: 12px !important;
        background: rgba(12,14,18,.96) !important;
        border: 1px solid rgba(255,255,255,.12) !important;
        box-shadow: 0 10px 34px rgba(0,0,0,.58) !important;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .nds-settings.open {
        display: block !important;
    }

    .nds-settings-title {
        display: none !important;
    }

    .nds-quality-options {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 6px !important;
        width: 100% !important;
        max-height: none !important;
        min-height: 0 !important;
        padding: 0 1px 2px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        overscroll-behavior-x: contain;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        scroll-snap-type: x proximity;
    }

    .nds-quality-options::-webkit-scrollbar {
        display: none;
    }

    .nds-setting-option {
        flex: 0 0 auto !important;
        width: auto !important;
        min-width: 58px !important;
        min-height: 36px !important;
        padding: .48rem .68rem !important;
        justify-content: center !important;
        gap: .35rem !important;
        border-radius: 9px !important;
        font-size: .78rem !important;
        line-height: 1 !important;
        font-weight: 800 !important;
        white-space: nowrap !important;
        scroll-snap-align: nearest;
        background: rgba(255,255,255,.065) !important;
    }

    .nds-setting-option.active {
        background: rgba(255,51,79,.22) !important;
        box-shadow: inset 0 0 0 1px rgba(255,51,79,.38);
    }

    .nds-setting-option.active::after {
        margin-left: 2px;
        font-size: .72rem;
    }
}

/* Sehr schmale Geräte: noch etwas dichter, aber weiterhin komplett bedienbar. */
@media (max-width: 390px) {
    .nds-settings {
        left: 6px !important;
        right: 6px !important;
        bottom: 49px !important;
        padding: 6px !important;
    }
    .nds-quality-options {
        gap: 5px !important;
    }
    .nds-setting-option {
        min-width: 54px !important;
        min-height: 34px !important;
        padding: .42rem .58rem !important;
        font-size: .74rem !important;
    }
}


/* ========================================================================== */
/* v6.5.6 – Mobiler 5-Sekunden-Countdown passt vollständig in den 16:9-Player */
/* ========================================================================== */
@media (max-width: 700px) {
    .nds-autoplay-overlay {
        padding: 5px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .nds-autoplay-panel {
        width: min(96%, 430px) !important;
        max-width: 96% !important;
        max-height: calc(100% - 8px) !important;
        padding: 8px 10px !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }

    .nds-autoplay-kicker {
        margin-bottom: 4px !important;
        font-size: .53rem !important;
        line-height: 1 !important;
        letter-spacing: .08em !important;
    }

    .nds-autoplay-preview {
        gap: 0 !important;
        min-height: 28px !important;
    }

    .nds-autoplay-thumb {
        display: none !important;
    }

    .nds-autoplay-copy {
        width: 100% !important;
        gap: 2px !important;
    }

    .nds-autoplay-next-title {
        max-width: 100% !important;
        font-size: .76rem !important;
        line-height: 1.18 !important;
    }

    .nds-autoplay-countdown {
        font-size: .61rem !important;
        line-height: 1.1 !important;
    }

    .nds-autoplay-progress {
        height: 2px !important;
        margin: 6px 0 !important;
    }

    .nds-autoplay-support {
        min-height: 30px !important;
        margin: 0 !important;
        padding: 4px 6px !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 7px !important;
        border-radius: 9px !important;
    }

    .nds-autoplay-support-copy {
        min-width: 0 !important;
        display: block !important;
    }

    .nds-autoplay-support-copy strong {
        display: block !important;
        overflow: hidden !important;
        font-size: .61rem !important;
        line-height: 1.1 !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }

    .nds-autoplay-support-copy span {
        display: none !important;
    }

    .nds-autoplay-shop {
        width: auto !important;
        min-width: 0 !important;
        min-height: 26px !important;
        padding: 0 8px !important;
        gap: 5px !important;
        border-radius: 7px !important;
        font-size: .58rem !important;
        line-height: 1 !important;
    }

    .nds-autoplay-actions {
        margin-top: 6px !important;
        gap: 6px !important;
        justify-content: stretch !important;
    }

    .nds-autoplay-actions button {
        min-height: 29px !important;
        padding: 0 7px !important;
        border-radius: 8px !important;
        font-size: .6rem !important;
        line-height: 1 !important;
    }
}

/* Auf sehr schmalen Handys bleibt nur das Wesentliche sichtbar. */
@media (max-width: 370px) {
    .nds-autoplay-panel {
        padding: 7px 8px !important;
    }
    .nds-autoplay-kicker {
        display: none !important;
    }
    .nds-autoplay-preview {
        min-height: 25px !important;
    }
    .nds-autoplay-support {
        min-height: 27px !important;
    }
    .nds-autoplay-support-copy strong {
        font-size: .57rem !important;
    }
    .nds-autoplay-actions button {
        min-height: 27px !important;
        font-size: .57rem !important;
    }
}
