/* ============================================
   PLAYER.CSS — Оранжево-бордовая гамма
   Активный трек: #8E2326
   ============================================ */

:root {
    /* Основные цвета — тёплая оранжевая гамма + бордовый */
    --color-primary: #D97A2B;
    --color-primary-dark: #BF6A22;
    --color-primary-light: #E8994A;
    --color-secondary: #F5A623;
    --color-secondary-light: #F7C04A;
    --color-accent: #E8B86D;
    
    /* Активный трек — бордовый */
    --color-active: #8E2326;
    --color-active-light: #A82A2E;
    --color-active-bg: rgba(142, 35, 38, 0.12);
    
    /* Нейтральные */
    --color-bg: #120E0A;
    --color-bg-card: #1C1610;
    --color-bg-card-hover: #2A221A;
    --color-bg-player: rgba(18, 14, 10, 0.95);
    --color-text: #F0EBE4;
    --color-text-secondary: #B8AFA0;
    --color-text-muted: #7A7060;
    --color-border: rgba(217, 122, 43, 0.15);
    --color-border-hover: rgba(217, 122, 43, 0.35);
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #D97A2B, #F5A623);
    --gradient-hover: linear-gradient(135deg, #F5A623, #D97A2B);
    --gradient-progress: linear-gradient(90deg, #D97A2B, #F5A623);
    --gradient-active: linear-gradient(135deg, #8E2326, #C0392B);
    
    /* Тени */
    --shadow-player: 0 -8px 40px rgba(217, 122, 43, 0.12);
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.5);
    --shadow-btn: 0 4px 20px rgba(217, 122, 43, 0.25);
    --shadow-btn-hover: 0 6px 30px rgba(217, 122, 43, 0.4);
    --shadow-active: 0 0 20px rgba(142, 35, 38, 0.3);
    
    /* Скругления */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Отступы */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
}

/* ============================================
   НИЖНИЙ ПЛЕЕР
   ============================================ */
#unifiedPlayer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-bg-player, rgba(18, 14, 10, 0.95));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--color-border);
    padding: 10px 16px;
    z-index: 9999;
    display: none;
    box-shadow: var(--shadow-player);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#unifiedPlayer .player-inner {
    display: flex;
    align-items: center;
    gap: 8px 14px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
	width: 100%;

}

#unifiedPlayer .top-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    width: 100%;
}

/* Информация о треке */
#unifiedPlayer .track-info {
    flex: 0 1 200px;
    min-width: 120px;
    color: var(--color-text);
    overflow: hidden;
}

#unifiedPlayer .track-info .title {
    font-weight: 600;
    font-size: 15px;
    color: var(--color-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#unifiedPlayer .track-info .artist {
    font-size: 14px;
    color: var(--color-text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Кнопки управления */
#unifiedPlayer .controls-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

#unifiedPlayer .controls {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

#unifiedPlayer .controls button {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 20px;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: var(--radius-full);
    transition: color 0.2s, background 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#unifiedPlayer .controls button:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.06);
}

#unifiedPlayer .controls button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

#unifiedPlayer .controls .play-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--gradient-primary);
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: var(--shadow-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}

#unifiedPlayer .controls .play-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-btn-hover);
}

#unifiedPlayer .controls .play-btn:active {
    transform: scale(0.95);
}

#unifiedPlayer .controls .play-btn svg {
    width: 24px;
    height: 24px;
    fill: white;
    stroke: none;
}

#unifiedPlayer .controls .play-btn.playing {
    background: var(--gradient-active);
    box-shadow: var(--shadow-active);
}

/* Прогресс-бар */
#unifiedPlayer .progress-wrap {
    flex: 1 1 300px;  /* Растягивается на всю доступную ширину */
    min-width: 200px;
    max-width: 100%;
}

#unifiedPlayer .progress-wrap .time-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

#unifiedPlayer .progress-wrap .time-row span {
    color: var(--color-text-muted);
    font-size: 12px;
    min-width: 34px;
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
}

#unifiedPlayer .progress-wrap .progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    min-width: 50px;
    transition: height 0.15s;
}

#unifiedPlayer .progress-wrap .progress-bar:hover {
    height: 6px;
}

#unifiedPlayer .progress-wrap .progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-progress);
    border-radius: 4px;
    transition: width 0.05s linear;
}

#unifiedPlayer .bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Громкость */
#unifiedPlayer .volume-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

#unifiedPlayer .volume-wrap .volume-icon {
    color: var(--color-text-muted);
    font-size: 14px;
}

#unifiedPlayer .volume-wrap input[type="range"] {
    width: 80px;
    height: 3px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
    appearance: none;
    outline: none;
    cursor: pointer;
}

#unifiedPlayer .volume-wrap input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(217, 122, 43, 0.3);
}

#unifiedPlayer .volume-wrap input[type="range"]::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Действия */
#unifiedPlayer .actions {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
    align-items: center;
}

#unifiedPlayer .actions button,
#unifiedPlayer .actions a {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: background 0.2s, color 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#unifiedPlayer .actions button:hover,
#unifiedPlayer .actions a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text);
}

#unifiedPlayer .actions .download-btn {
    color: var(--color-primary-light);
}

#unifiedPlayer .actions .download-btn:hover {
    color: var(--color-primary);
    background: rgba(217, 122, 43, 0.12);
}

#unifiedPlayer .actions .close-btn:hover {
    color: var(--color-active);
    background: rgba(142, 35, 38, 0.1);
}

#unifiedPlayer .actions .share-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ============================================
   СПИСОК ТРЕКОВ 
   ============================================ */
.vertical-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vertical-nav-menu h3 {
    color: #5a4a3a;
    font-size: 18px;
    padding: 16px 0 10px 0;
    margin: 0;
    border-bottom: 1px solid var(--color-border);
    font-weight: 600;
    letter-spacing: 0.3px;
    padding-left: 0;
}

.vertical-nav-menu li {
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background 0.15s;
    border-radius: var(--radius-sm);
}

.vertical-nav-menu li:hover {
    background: rgb(104, 79, 85);
}

.vertical-nav-menu li a {
    color: rgb(35, 48, 50);
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    padding: 6px 0 6px 16px;
    cursor: pointer;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.vertical-nav-menu li a:hover {
    text-decoration: underline; color: #fff; text-shadow: 1px 0 4px #ccf, 2px 0 7px #f90;
}

/* ===== АКТИВНЫЙ ТРЕК — ЦВЕТ #8E2326 ===== */
.vertical-nav-menu li.active a {
    color: var(--color-active);
    font-weight: 600;
    background: var(--color-active-bg);
    padding-left: 16px;
    border-left: 3px solid var(--color-active);
    box-shadow: var(--shadow-active);
}

.vertical-nav-menu li.active a:hover {
    color: #fff;
    background: rgba(142, 35, 38, 0.18);
}

/* Для элементов с колонками */
.vertical-nav-menu li .col-sm-8,
.vertical-nav-menu li .col-sm-4 {
    display: inline-block;
    vertical-align: middle;
}

.vertical-nav-menu li .col-sm-8 {
    width: 70%;
}

.vertical-nav-menu li .col-sm-4 {
    width: 28%;
    text-align: right;
}

.vertical-nav-menu li .right a {
    color: var(--color-secondary-light);
    font-size: 13px;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.vertical-nav-menu li .right a:hover {
    color: var(--color-secondary);
    background: rgba(245, 166, 35, 0.08);
}

/* ============================================
   СКРЫВАЕМ ВСТРОЕННЫЕ АУДИО
   ============================================ */
.vertical-nav-menu audio {
    display: none !important;
}

/* ============================================
   МОДАЛЬНОЕ ОКНО ШЕРИНГА (ОДИН РАЗ)
   ============================================ */
.share-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.25s ease-out;
}

.share-modal-overlay.active {
    display: flex;
}

.share-modal {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl) var(--spacing-lg);
    max-width: 460px;
    width: 92%;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    animation: slideUp 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.share-modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.share-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-text-muted);
    padding: 0 4px;
    transition: color 0.2s;
    line-height: 1;
}

.share-modal-close:hover {
    color: var(--color-text);
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: var(--spacing-lg) 0 var(--spacing-sm);
}

.share-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 6px;
    border-radius: var(--radius-md);
    border: none;
    background: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none;
    color: var(--color-text-secondary);
    font-size: 11px;
    font-weight: 500;
}

.share-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: scale(1.04);
}

.share-item:active {
    transform: scale(0.95);
}

.share-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
    transition: transform 0.2s;
}

.share-item:hover .share-icon-circle {
    transform: scale(1.05);
}

.share-icon-circle.vk { background: #0077FF; }
.share-icon-circle.telegram { background: #0088CC; }
.share-icon-circle.whatsapp { background: #25D366; }
.share-icon-circle.twitter { background: #000000; }
.share-icon-circle.facebook { background: #1877F2; }
.share-icon-circle.ok { background: #EE8208; }
.share-icon-circle.viber { background: #7360F2; }
.share-icon-circle.skype { background: #00AFF0; }
.share-icon-circle.reddit { background: #FF4500; }
.share-icon-circle.pinterest { background: #E60023; }
.share-icon-circle.copy { background: var(--color-text-muted); }

.share-link-row {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.share-link-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 13px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
    outline: none;
    cursor: text;
    transition: border-color 0.2s;
    min-width: 0;
}

.share-link-input:focus {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.06);
}

.share-copy-btn {
    padding: 10px 18px;
    border: none;
    border-radius: var(--radius-md);
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.share-copy-btn:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-btn-hover);
}

.share-copy-btn:active {
    transform: scale(0.95);
}

/* ============================================
   КНОПКА ШЕРИНГА В ПЛЕЕРЕ
   ============================================ */
#unifiedPlayer .actions .share-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: var(--radius-full);
    transition: background 0.2s, color 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#unifiedPlayer .actions .share-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-primary-light);
}

#unifiedPlayer .actions .share-btn svg {
    stroke: currentColor;
}

/* ============================================
   АНИМАЦИИ
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.duration-skeleton {
    display: inline-block;
    width: 44px;
    height: 14px;
    background: linear-gradient(90deg, rgba(255,255,255,0.05) 25%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.05) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
}

/* ============================================
   ДОПОЛНИТЕЛЬНЫЕ СТИЛИ
   ============================================ */
.empty-message {
    padding: 40px 20px;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 16px;
}

.error-message {
    padding: 40px 20px;
    text-align: center;
    color: var(--color-active);
}

.error-message p:first-child {
    font-weight: 600;
    font-size: 18px;
}

/* Полоса прокрутки для списка */
.vertical-nav-menu {
    max-height: 600px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) transparent;
}

.vertical-nav-menu::-webkit-scrollbar {
    width: 4px;
}

.vertical-nav-menu::-webkit-scrollbar-track {
    background: transparent;
}

.vertical-nav-menu::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 10px;
}

.vertical-nav-menu::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

/* ============================================
   АДАПТИВ
   ============================================ */
@media (max-width: 900px) {
    #unifiedPlayer .player-inner {
        gap: 12px;
    }
    
    #unifiedPlayer .track-info {
        min-width: 120px;
    }
    
    #unifiedPlayer .volume-wrap input[type="range"] {
        width: 60px;
    }
    
    #unifiedPlayer .controls .play-btn {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    #unifiedPlayer {
        padding: 8px 12px;
    }
    
    #unifiedPlayer .player-inner {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px 10px;
        max-width: 100%;       
        width: 100%;           
        box-sizing: border-box;
        margin: 0 auto;
    }
    
    #unifiedPlayer .controls-row {
        gap: 10px;
    }
    
    #unifiedPlayer .track-info {
        min-width: 100px;
        order: 1;
        flex: 1 1 120px;
    }
    
    #unifiedPlayer .track-info .title {
        font-size: 14px;
    }
    
    #unifiedPlayer .track-info .artist {
        font-size: 12px;
    }
    
    #unifiedPlayer .controls {
        order: 2;
    }
    
    #unifiedPlayer .controls button {
        font-size: 18px;
        padding: 4px 6px;
    }
    
    #unifiedPlayer .controls button svg {
        width: 17px;
        height: 17px;
    }
    
    #unifiedPlayer .controls .play-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    #unifiedPlayer .controls .play-btn svg {
        width: 18px;
        height: 18px;
    }
    
    #unifiedPlayer .progress-wrap {
        flex: 1 1 180px;
        min-width: 100px;
        order: 3;
    }
    
    #unifiedPlayer .progress-wrap .time-row {
        flex: 0 0 auto;
    }
    
    #unifiedPlayer .progress-wrap .time-row span {
        font-size: 11px;
        min-width: 30px;
    }
    
    #unifiedPlayer .progress-wrap .progress-bar {
        flex: 1 1 auto;       /* растягивается на всё оставшееся место */
        min-width: 0;         /* разрешает сжиматься на узких экранах */
        width: 100%;          /* страховка */
        box-sizing: border-box;
        height: 4px;          /* если нужно, можно оставить или вынести из общих стилей */
        background: rgba(255, 255, 255, 0.08);
        border-radius: 4px;
        cursor: pointer;
        position: relative;
        transition: height 0.15s;
    }
  
    #unifiedPlayer .progress-wrap .progress-bar:hover {
        height: 6px;
    }
    
    #unifiedPlayer .progress-wrap .progress-fill {
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
    }
    
    #unifiedPlayer .volume-wrap {
        order: 9;
        flex: 1 1 100%;
        justify-content: flex-start;
        padding-top: 2px;
    }
    
    #unifiedPlayer .volume-wrap input[type="range"] {
        width: 80px;
    }
    
    #unifiedPlayer .actions {
        order: 5;
         flex: 0 1 auto;
    }
    
    #unifiedPlayer .actions button,
    #unifiedPlayer .actions a {
        font-size: 16px;
        padding: 3px 8px;
    }
    
    .share-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    #unifiedPlayer .actions .share-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .vertical-nav-menu li .col-sm-8 {
        width: 65%;
    }
    
    .vertical-nav-menu li .col-sm-4 {
        width: 33%;
    }
}

@media (max-width: 600px) {
    #unifiedPlayer {
        padding: 6px 10px 12px 10px;
    }
    
    #unifiedPlayer .player-inner {
        gap: 4px 8px;
    }
    
    #unifiedPlayer .progress-wrap {
        order: 8;
        flex: 1 1 100%;
        min-width: 100%;
        padding: 2px 0;
    }
    
    #unifiedPlayer .progress-wrap .time-row span {
        font-size: 11px;
        min-width: 28px;
    }
    
    #unifiedPlayer .track-info {
        flex: 1 1 100px;
        min-width: 60px;
    }
    
    #unifiedPlayer .track-info .title {
        font-size: 13px;
    }
    
    #unifiedPlayer .track-info .artist {
        font-size: 11px;
    }
    
    /* Действия на этой ширине уже внизу, уменьшаем отступ */
    #unifiedPlayer .actions {
        padding-top: 0;
        border-top: none;
    }
}

@media (max-width: 480px) {
    #unifiedPlayer {
        padding: 4px 8px 10px 8px;
    }
    
    #unifiedPlayer .player-inner {
        gap: 3px 6px;
    }
    
    #unifiedPlayer .track-info {
        flex: 1 1 100%;
        min-width: 100%;
        order: 1;
        margin-bottom: 2px;
    }
    
    #unifiedPlayer .track-info .title {
        font-size: 13px;
    }
    
    #unifiedPlayer .track-info .artist {
        font-size: 11px;
    }
    
    #unifiedPlayer .controls {
        order: 2;
        flex: 0 1 auto;
    }
    
    #unifiedPlayer .controls .play-btn {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    
    #unifiedPlayer .controls .play-btn svg {
        width: 16px;
        height: 16px;
    }
    
    #unifiedPlayer .controls button {
        font-size: 16px;
        padding: 3px 4px;
    }
    
    #unifiedPlayer .controls button svg {
        width: 15px;
        height: 15px;
    }
    
    #unifiedPlayer .progress-wrap {
        order: 3;
        flex: 1 1 60%;
        min-width: 60px;
    }
    
    #unifiedPlayer .progress-wrap .time-row span {
        font-size: 10px;
        min-width: 26px;
    }
    
    #unifiedPlayer .volume-wrap {
        order: 4;
        flex: 0 1 auto;
        justify-content: flex-start;
        padding-top: 0;
        border-top: none;
        margin-left: 4px; 
    }
    
    #unifiedPlayer .volume-wrap input[type="range"] {
        width: 40px;
        order: 4;
        flex: 0 1 auto;
    }
    
    #unifiedPlayer .volume-wrap .volume-icon {
        font-size: 12px;
    }
    
    #unifiedPlayer .volume-wrap input[type="range"] {
        width: 40px;
    }
    
    #unifiedPlayer .volume-wrap input[type="range"]::-webkit-slider-thumb {
        width: 8px;
        height: 8px;
    }

    #unifiedPlayer .volume-wrap input[type="range"]::-moz-range-thumb {
        width: 8px;
        height: 8px;
    }
    
    #unifiedPlayer .actions {
        order: 5;
        flex: 0 1 auto;
        justify-content: flex-end;
        padding-top: 0;
        margin-top: 0;
        border-top: none;
        margin-right: 0;
    }
    
    #unifiedPlayer .actions button,
    #unifiedPlayer .actions a {
        font-size: 15px;
        padding: 2px 6px;
    }
    
    #unifiedPlayer .actions .share-btn svg {
        width: 15px;
        height: 15px;
    }
    
    .share-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .share-icon-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .vertical-nav-menu li a {
        font-size: 13px;
        padding: 4px 0 4px 12px;
    }
    
    .vertical-nav-menu h3 {
        font-size: 16px;
        padding: 12px 0 8px 0;
    }
}

body.has-player footer {
    margin-bottom: 60px;
    transition: margin-bottom 0.3s ease;
}

@media (max-width: 932px) {
    body.has-player footer {
        margin-bottom: 100px;
    }
}

@media (max-width: 768px) {
    body.has-player footer {
        margin-bottom: 80px;
    }
}

@media (max-width: 480px) {
    body.has-player footer {
        margin-bottom: 100px;
    }
}