/* mobile/05-artist-album-common.css - Mobile Common Components for Artist & Album Pages */

/* === MOBILE BREAKPOINTS === */
@media (max-width: 768px) {

/* === MOBILE COMMON VARIABLES === */
:root {
    /* Mobile avatar and cover dimensions */
    --mobile-artist-avatar-size: 160px;
    --mobile-artist-avatar-size-small: 140px;
    --mobile-artist-avatar-size-tiny: 120px;
    --mobile-album-cover-size: 160px;
    --mobile-album-cover-size-small: 140px;
    --mobile-album-cover-size-tiny: 120px;
    
    /* Mobile control button dimensions */
    --mobile-artist-control-btn-size: 36px;
    --mobile-artist-control-btn-size-small:36px;
    
    /* Mobile other artist card dimensions */
    --mobile-other-artist-card-width: 140px;
    --mobile-other-artist-card-width-small: 120px;
    --mobile-other-artist-card-width-tiny: 100px;
    --mobile-other-artist-img-size: 80px;
    --mobile-other-artist-img-size-small: 70px;
    --mobile-other-artist-img-size-tiny: 60px;
    
    /* Mobile spacing */
    --mobile-artist-album-header-gap: 1.5rem;
    --mobile-artist-album-header-gap-small: 1rem;
    --mobile-artist-album-section-gap: 2rem;
    --mobile-artist-album-section-gap-small: 1.5rem;
    
    /* Mobile colors (same as desktop) */
    --mobile-artist-album-header-bg: linear-gradient(135deg, rgba(24, 24, 24, 0.95), rgba(24, 24, 24, 0.8));
    --mobile-artist-album-header-glow: rgba(29, 185, 84, 0.06);
    --mobile-artist-album-section-bg: rgba(255, 255, 255, 0.03);
    
    /* Mobile transitions */
    --mobile-artist-album-transition: all 0.2s ease;
    --mobile-artist-album-quick-transition: all 0.15s ease;
    
    /* Mobile header heights */
    --mobile-header-height: 60px;
    --mobile-player-height: 70px;
}

/* === MOBILE COMMON PAGE STRUCTURE === */
.artist-page,
.album-page {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
}

/* === MOBILE COMMON HEADER STRUCTURE === */
.artist-header,
.album-header {
    display: flex;
    flex-direction: column; /* МОБИЛЬНАЯ: колонка вместо ряда */
    align-items: center; /* МОБИЛЬНАЯ: центрируем */
    gap: var(--mobile-artist-album-header-gap);
    margin-bottom: var(--mobile-artist-album-section-gap);
    padding: 2rem 1rem; /* МОБИЛЬНАЯ: уменьшенный padding */
    background: var(--mobile-artist-album-header-bg);
    border-radius: 16px; /* МОБИЛЬНАЯ: меньший радиус */
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Mobile glow effect */
.artist-header::before,
.album-header::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, var(--mobile-artist-album-header-glow) 0%, transparent 70%);
    z-index: 0;
    animation: headerGlowMobile 5s ease-in-out infinite alternate;
}

@keyframes headerGlowMobile {
    0% { 
        opacity: 0.2; 
        transform: scale(1);
    }
    100% { 
        opacity: 0.4; 
        transform: scale(1.05);
    }
}

.artist-header > *,
.album-header > * {
    position: relative;
    z-index: 1;
}

/* === MOBILE COMMON AVATAR/COVER STYLES === */
.artist-avatar,
.album-cover {
    width: var(--mobile-artist-avatar-size);
    height: var(--mobile-artist-avatar-size);
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(29, 185, 84, 0.3);
    transition: var(--mobile-artist-album-transition);
    cursor: pointer;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.artist-avatar:active,
.album-cover:active {
    transform: scale(0.98);
    border-color: var(--accent-color);
    box-shadow: 0 6px 25px rgba(29, 185, 84, 0.4);
}

/* === MOBILE COMMON INFO SECTION === */
.artist-info,
.album-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; /* МОБИЛЬНАЯ: центрируем текст */
    padding: 0; /* МОБИЛЬНАЯ: убираем left padding */
    width: 100%;
}

.artist-info h1,
.album-info h1 {
    margin: 0 0 1rem 0;
    font-size: 2.5rem; /* МОБИЛЬНАЯ: уменьшенный размер */
    line-height: 1.1;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.artist-info p,
.album-info p {
    color: var(--secondary-text-color);
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
    font-size: 1rem; /* МОБИЛЬНАЯ: уменьшенный размер */
    font-family: var(--font-secondary);
    font-weight: 400;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.artist-info p:last-of-type,
.album-info p:last-of-type {
    margin-bottom: 1.5rem;
}

/* === MOBILE COMMON CONTROL BUTTONS === */
.track-controls-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; /* МОБИЛЬНАЯ: центрируем кнопки */
    gap: 0.5rem; /* МОБИЛЬНАЯ: уменьшенный gap */
    margin-top: 1rem;
    flex-wrap: wrap; /* МОБИЛЬНАЯ: позволяем перенос */
}

.main-play-btn {
    background: var(--accent-color);
    border: none;
    cursor: pointer;
    color: var(--bg-color);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px; /* МОБИЛЬНАЯ: меньший радиус */
    font-weight: 700;
    width: var(--mobile-artist-control-btn-size);
    height: var(--mobile-artist-control-btn-size);
    transition: var(--mobile-artist-album-quick-transition);
    position: relative;
    flex-shrink: 0;
    font-family: var(--font-primary);
    box-shadow: 0 3px 12px rgba(29, 185, 84, 0.3);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.main-play-btn:active {
    background: var(--accent-hover-color);
    transform: scale(0.95);
    box-shadow: 0 4px 16px rgba(29, 185, 84, 0.5);
}

.control-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    color: var(--primary-text-color);
    transition: var(--mobile-artist-album-quick-transition);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: var(--mobile-artist-control-btn-size);
    height: var(--mobile-artist-control-btn-size);
    flex-shrink: 0;
    font-family: var(--font-secondary);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.control-btn:active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-color);
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(29, 185, 84, 0.4);
}

.control-btn svg,
.main-play-btn svg {
    width: 20px; /* МОБИЛЬНАЯ: уменьшенный размер */
    height: 20px;
    fill: currentColor;
}

/* === MOBILE PLAY/PAUSE ICONS === */
.play-icon,
.pause-icon {
    width: 0;
    height: 0;
    position: relative;
}

.play-icon {
    border-left: 7px solid currentColor; /* МОБИЛЬНАЯ: меньше */
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    margin-left: 2px;
}

.pause-icon {
    display: none;
    width: 7px; /* МОБИЛЬНАЯ: меньше */
    height: 10px;
    position: relative;
}

.pause-icon::before,
.pause-icon::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 10px;
    background: currentColor;
    border-radius: 1px;
}

.pause-icon::before {
    left: 0;
}

.pause-icon::after {
    right: 0;
}

/* === MOBILE BUTTON STATES === */
.main-play-btn.playing {
    background: var(--accent-hover-color);
    transform: scale(0.98);
    box-shadow: 0 4px 16px rgba(29, 185, 84, 0.5);
}

.main-play-btn.playing .play-icon {
    display: none;
}

.main-play-btn.playing .pause-icon {
    display: block;
}

.control-btn.shuffle-btn.active,
.control-btn.loop-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-color);
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(29, 185, 84, 0.4);
}

/* === MOBILE SECTION DIVIDER === */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: var(--mobile-artist-album-section-gap) 0;
}

/* === MOBILE UNIFIED SECTION STYLES === */
.random-section,
.discography-section,
.other-artists-section {
    margin-bottom: var(--mobile-artist-album-section-gap);
    padding: 1.5rem; /* МОБИЛЬНАЯ: уменьшенный padding */
    background: var(--mobile-artist-album-section-bg);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* === MOBILE UNIFIED SECTION HEADERS === */
.random-header,
.album-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    min-height: 50px; /* МОБИЛЬНАЯ: меньше */
    flex-wrap: wrap; /* МОБИЛЬНАЯ: перенос на узких экранах */
}

.random-header h3,
.album-controls h3 {
    margin: 0;
    font-size: 1.5rem; /* МОБИЛЬНАЯ: уменьшенный размер */
    font-weight: 600;
    color: var(--primary-text-color);
    font-family: var(--font-primary);
    position: relative;
    padding-bottom: 0.75rem;
    flex: 1;
    display: flex;
    align-items: center;
}

.random-header h3::after,
.album-controls h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px; /* МОБИЛЬНАЯ: уже */
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

.tabs-section h2,
.other-artists-section h2 {
    margin: 0 0 1.5rem 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-text-color);
    font-family: var(--font-primary);
    position: relative;
    padding-bottom: 0.75rem;
}

.tabs-section h2::after,
.other-artists-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

/* === MOBILE COMMON TRACK LIST === */
.track-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem; /* МОБИЛЬНАЯ: меньший gap */
}

.track-item {
    display: flex;
    align-items: center;
    padding: 0.75rem; /* МОБИЛЬНАЯ: меньший padding */
    border-radius: 10px;
    transition: var(--mobile-artist-album-quick-transition);
    cursor: pointer;
    min-height: 48px; /* МОБИЛЬНАЯ: touch-friendly */
    border: 1px solid transparent;
    gap: 0.75rem;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.track-item:active {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    transform: scale(0.99);
}

.track-item:active .track-item-title {
    color: var(--accent-color);
}

.track-item:active .track-number,
.track-item:active .track-item-duration {
    color: var(--primary-text-color);
}

.track-number {
    width: 24px; /* МОБИЛЬНАЯ: уже */
    text-align: center;
    font-family: var(--font-secondary);
    color: var(--secondary-text-color);
    font-size: 0.8rem; /* МОБИЛЬНАЯ: меньше */
    position: relative;
}

.track-item-info {
    flex: 1;
    min-width: 0;
}

.track-item-title {
    font-size: 0.9rem; /* МОБИЛЬНАЯ: меньше */
    font-weight: 500;
    color: var(--primary-text-color);
    font-family: var(--font-primary);
    margin-bottom: 0.125rem;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.track-item-album {
    font-size: 0.75rem; /* МОБИЛЬНАЯ: меньше */
    color: var(--secondary-text-color);
    font-family: var(--font-secondary);
    line-height: 1.2;
    word-wrap: break-word;
}

.track-item-duration {
    font-size: 0.8rem;
    color: var(--secondary-text-color);
    font-family: var(--font-secondary);
    min-width: 35px;
    text-align: right;
}

/* === MOBILE TRACK NUMBER INTERACTIVE ELEMENTS === */
.track-number-play,
.track-number-equalizer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.track-item:active .track-number-text {
    display: none;
}

.track-item:active .track-number-play {
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid var(--accent-color); /* МОБИЛЬНАЯ: меньше */
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.track-number-equalizer {
    display: flex;
    gap: 1px;
    align-items: flex-end;
    width: 10px; /* МОБИЛЬНАЯ: меньше */
    height: 6px;
}

.track-number-equalizer .bar {
    width: 1.5px;
    background: var(--accent-color);
    border-radius: 1px;
}

.track-number-equalizer .bar:nth-child(1) { height: 1.5px; }
.track-number-equalizer .bar:nth-child(2) { height: 3px; }
.track-number-equalizer .bar:nth-child(3) { height: 4.5px; }
.track-number-equalizer .bar:nth-child(4) { height: 2px; }

/* === MOBILE TRACK ITEM STATES === */
.track-item .track-number-equalizer {
    display: none !important;
}

.track-item.active {
    background: rgba(29, 185, 84, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 1px 4px rgba(29, 185, 84, 0.2);
}

.track-item.active .track-item-title {
    color: var(--accent-color);
    font-weight: 600;
}

.track-item.active .track-number-text {
    display: none;
}

.track-item.active .track-number-equalizer {
    display: flex !important;
}

.track-item.playing .track-number-text {
    display: none;
}

.track-item.playing .track-number-equalizer {
    display: flex !important;
}

.track-item.playing .track-number-equalizer .bar {
    animation: equalizerMobile 1s ease-in-out infinite;
}

@keyframes equalizerMobile {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.track-item.paused .track-number-text {
    display: none;
}

.track-item.paused .track-number-play {
    display: block !important;
    border-left: 5px solid var(--accent-color);
}

.track-item.paused .track-number-equalizer .bar {
    animation-play-state: paused;
}

/* === MOBILE OTHER ARTISTS CAROUSEL === */
.other-artists-carousel {
    display: flex;
    gap: 1rem; /* МОБИЛЬНАЯ: меньший gap */
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0.75rem 0 1.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) rgba(255, 255, 255, 0.1);
}

.other-artists-carousel::-webkit-scrollbar {
    height: 6px; /* МОБИЛЬНАЯ: тоньше */
}

.other-artists-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.other-artists-carousel::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.other-artist-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem; /* МОБИЛЬНАЯ: меньший padding */
    width: var(--mobile-other-artist-card-width);
    min-width: var(--mobile-other-artist-card-width);
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
    transition: var(--mobile-artist-album-transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.other-artist-card:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    transform: scale(0.98);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.other-artist-card img {
    width: var(--mobile-other-artist-img-size);
    height: var(--mobile-other-artist-img-size);
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    transition: var(--mobile-artist-album-transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.other-artist-card:active img {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.other-artist-card h4 {
    margin: 0;
    font-size: 0.68rem; /* МОБИЛЬНАЯ: меньше */
    font-weight: 300;
    color: var(--primary-text-color);
    font-family: var(--font-primary);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.other-artist-card:active h4 {
    color: var(--accent-color);
}

/* === MOBILE NO CONTENT STATES === */
.no-tracks,
.no-releases {
    text-align: center;
    padding: 2rem; /* МОБИЛЬНАЯ: меньше */
    color: var(--secondary-text-color);
    font-family: var(--font-secondary);
    font-style: italic;
    font-size: 0.9rem;
}

} /* Конец основного mobile media query */

/* === MOBILE SMALL SCREENS === */
@media (max-width: 480px) {
    :root {
        --mobile-artist-avatar-size: var(--mobile-artist-avatar-size-small);
        --mobile-album-cover-size: var(--mobile-album-cover-size-small);
        --mobile-artist-control-btn-size: var(--mobile-artist-control-btn-size-small);
        --mobile-other-artist-card-width: var(--mobile-other-artist-card-width-small);
        --mobile-other-artist-img-size: var(--mobile-other-artist-img-size-small);
        --mobile-artist-album-header-gap: var(--mobile-artist-album-header-gap-small);
        --mobile-artist-album-section-gap: var(--mobile-artist-album-section-gap-small);
    }
    
    .artist-header,
    .album-header {
        padding: 1.5rem 0.75rem;
        border-radius: 12px;
    }
    
    .artist-info h1,
    .album-info h1 {
        font-size: 2rem;
    }
    
    .artist-info p,
    .album-info p {
        font-size: 0.9rem;
    }
    
    .random-section,
    .discography-section,
    .other-artists-section {
        padding: 1rem;
    }
    
    .random-header h3,
    .album-controls h3,
    .tabs-section h2,
    .other-artists-section h2 {
        font-size: 1.25rem;
    }
    
    .track-item {
        padding: 0.5rem;
        min-height: 44px;
    }
    
    .track-item-title {
        font-size: 0.85rem;
    }
    
    .track-item-album {
        font-size: 0.7rem;
    }
    
    .track-item-duration {
        font-size: 0.75rem;
    }
}

/* === MOBILE TINY SCREENS === */
@media (max-width: 360px) {
    :root {
        --mobile-artist-avatar-size: var(--mobile-artist-avatar-size-tiny);
        --mobile-album-cover-size: var(--mobile-album-cover-size-tiny);
        --mobile-other-artist-card-width: var(--mobile-other-artist-card-width-tiny);
        --mobile-other-artist-img-size: var(--mobile-other-artist-img-size-tiny);
    }
    
    .artist-header,
    .album-header {
        padding: 1rem 0.5rem;
    }
    
    .artist-info h1,
    .album-info h1 {
        font-size: 1.75rem;
    }
    
    .track-controls-buttons {
        gap: 0.5rem;
    }
    
    .control-btn svg,
    .main-play-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .random-header h3,
    .album-controls h3 {
        font-size: 1.125rem;
    }
}

/* === MOBILE ACCESSIBILITY === */
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
    .artist-avatar,
    .album-cover,
    .other-artist-card,
    .main-play-btn,
    .control-btn,
    .track-item {
        transition: none;
        animation: none;
    }
    
    .artist-avatar:active,
    .album-cover:active,
    .other-artist-card:active,
    .main-play-btn:active,
    .control-btn:active {
        transform: none;
    }
    
    .artist-header::before,
    .album-header::before {
        display: none;
    }
    
    .track-number-equalizer .bar {
        animation: none;
    }
}

@media (max-width: 768px) and (prefers-contrast: high) {
    .artist-header,
    .album-header,
    .random-section,
    .discography-section,
    .other-artists-section,
    .other-artist-card {
        border: 2px solid var(--accent-color);
    }
    
    .main-play-btn,
    .control-btn {
        border: 2px solid currentColor;
    }
    
    .artist-avatar,
    .album-cover {
        border: 3px solid var(--accent-color);
    }
}

/* === MOBILE COMPONENT ISOLATION === */
@media (max-width: 768px) {
    .artist-page *,
    .album-page * {
        box-sizing: border-box;
    }

    .artist-page a,
    .album-page a {
        color: inherit;
        text-decoration: none;
    }

    .artist-page button,
    .album-page button {
        font-family: inherit;
    }

    /* === MOBILE PERFORMANCE OPTIMIZATIONS === */
    .artist-header,
    .album-header,
    .random-section,
    .discography-section,
    .other-artists-section,
    .other-artist-card {
        contain: layout style;
    }

    /* === MOBILE LEGACY SUPPORT === */
    @supports not (backdrop-filter: blur(10px)) {
        .artist-header,
        .album-header,
        .random-section,
        .discography-section,
        .other-artists-section {
            background: rgba(24, 24, 24, 0.95);
        }
    }


/* === ИСПРАВЛЕНИЕ: Фикс sticky hover на toggle кнопках === */
@media (hover: none) and (pointer: coarse) {
    .control-btn:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
        color: var(--primary-text-color) !important;
        transform: none !important;
    }
    
    /* Активные состояния должны сохраняться */
    .control-btn.shuffle-btn.active:hover,
    .control-btn.loop-btn.active:hover {
        background: var(--accent-color) !important;
        border-color: var(--accent-color) !important;
        color: var(--bg-color) !important;
    }
}

/* === ИСПРАВЛЕНИЕ: При активном треке touch НЕ показывает play === */
.track-item.active:active .track-number-play,
.track-item.playing:active .track-number-play {
    display: none !important;
}

/* === ИСПРАВЛЕНИЕ: При активном треке touch показывает эквалайзер === */
.track-item.active:active .track-number-equalizer,
.track-item.playing:active .track-number-equalizer {
    display: flex !important;
}

/* === ИСПРАВЛЕНИЕ: При паузе touch показывает только play === */
.track-item.paused:active .track-number-equalizer {
    display: none !important;
}

}
