/* Bottom player (sefon.pro style): dark bar, green progress, cover left */
.player.player--sefon {
    --sf-bg: #2c2c2c;
    --sf-bg2: #252525;
    --sf-prog: #8ed100;
    --sf-prog-dim: #3d3d3d;
    --sf-text: #f2f2f2;
    --sf-muted: #9a9a9a;
    --player-pct: 0%;

    position: fixed;
    z-index: 999999;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: var(--sf-bg);
    border-top: 1px solid #1a1a1a;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.35);
    box-sizing: border-box;
    /* iPhone safe area — полоса не «парит» над home indicator */
    padding-bottom: env(safe-area-inset-bottom, 0px);
}

.player.player--sefon .player__right {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-sizing: border-box;
}

.player.player--sefon .head {
    display: none;
}

/* РџРѕР»РѕСЃР° РїСЂРѕРіСЂРµСЃСЃР° (Р·РµР»С‘РЅР°СЏ Р·Р°Р»РёРІРєР° + СЃР»Р°Р№РґРµСЂ РїРѕРІРµСЂС…) */
.player.player--sefon .player__progress-wrap {
    position: relative;
    width: 100%;
    height: 4px;
    flex: none;
    background: var(--sf-prog-dim);
}

.player.player--sefon .player__progress-track {
    position: absolute;
    inset: 0;
    background: var(--sf-prog-dim);
    pointer-events: none;
}

.player.player--sefon .player__progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--player-pct, 0%);
    max-width: 100%;
    background: var(--sf-prog);
    pointer-events: none;
    transition: width 0.12s linear;
}

.player.player--sefon .player__seek--line {
    position: absolute;
    left: 0;
    right: 0;
    top: -6px;
    height: 16px;
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    background: transparent;
    outline: none;
    cursor: pointer;
    z-index: 2;
}

.player.player--sefon .player__seek--line::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
}

.player.player--sefon .player__seek--line::-moz-range-track {
    height: 4px;
    background: transparent;
}

.player.player--sefon .player__seek--line::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    margin-top: -3px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

.player.player--sefon .player__seek--line::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.35);
    cursor: pointer;
}

/* Основная строка: все элементы по центру */
.player.player--sefon .player__bar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 14px;
    padding: 8px 12px 10px;
    min-height: 56px;
    box-sizing: border-box;
    background: var(--sf-bg2);
}

.player.player--sefon .player__cover-wrap {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    overflow: hidden;
    background: linear-gradient(135deg, #3a3a3a, #1f1f1f);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.player.player--sefon .player__cover-img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.player.player--sefon .player__cover-img[hidden] {
    display: none !important;
}

.player.player--sefon .player__center {
    flex: 0 1 auto;
    min-width: 0;
    max-width: min(100%, 320px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    justify-content: center;
    text-align: center;
}

.player.player--sefon .player__meta #title {
    font-size: 14px;
    font-weight: 600;
    color: var(--sf-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
    max-width: 100%;
    text-align: center;
}

.player.player--sefon .player__meta #artist {
    font-size: 12px;
    font-weight: 400;
    color: var(--sf-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
    max-width: 100%;
    text-align: center;
}

.player.player--sefon .player__times {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 11px;
    font-weight: 500;
    color: #7a7a7a;
    font-variant-numeric: tabular-nums;
    margin-top: 1px;
}

.player.player--sefon .player__times-sep {
    opacity: 0.7;
    padding: 0 2px;
}

.player.player--sefon .player__transport {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 0 0 auto;
}

.player.player--sefon .player__btn {
    border: none;
    width: 38px;
    height: 38px;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    background: transparent;
    color: #d0d0d0;
    transition: background 0.15s ease, color 0.15s ease, transform 0.1s ease;
}

.player.player--sefon .player__btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.player.player--sefon .player__btn:active {
    transform: scale(0.95);
}

.player.player--sefon .player__btn--play {
    width: 42px;
    height: 42px;
}

.player.player--sefon .player__btn:focus-visible {
    outline: 2px solid var(--sf-prog);
    outline-offset: 1px;
}

.player.player--sefon #play.is-playing {
    color: var(--sf-prog);
}

.player.player--sefon #auto.active {
    color: var(--sf-prog);
}

.player.player--sefon #auto.active .player-ico--repeat svg {
    color: var(--sf-prog);
}

.player.player--sefon .player-ico {
    display: block;
    flex-shrink: 0;
    background: transparent center / contain no-repeat;
    pointer-events: none;
}

.player.player--sefon .player-ico--prev,
.player.player--sefon .player-ico--next {
    width: 20px;
    height: 20px;
    background-color: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.player.player--sefon .player-ico--prev {
    -webkit-mask-image: url("/images/figma-icons/carousel-nav-arrow.png");
    mask-image: url("/images/figma-icons/carousel-nav-arrow.png");
}

.player.player--sefon .player-ico--next {
    -webkit-mask-image: url("/images/figma-icons/carousel-nav-arrow-next.png");
    mask-image: url("/images/figma-icons/carousel-nav-arrow-next.png");
}

.player.player--sefon .player-ico--play-pause {
    width: 28px;
    height: 28px;
    background-color: #fff;
    -webkit-mask-image: url("/images/figma-icons/play-circle.png");
    mask-image: url("/images/figma-icons/play-circle.png");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.player.player--sefon #play.is-playing .player-ico--play-pause {
    -webkit-mask-image: none;
    mask-image: none;
    background-color: var(--sf-prog);
    border-radius: 50%;
    position: relative;
    width: 30px;
    height: 30px;
}

.player.player--sefon #play.is-playing .player-ico--play-pause::before,
.player.player--sefon #play.is-playing .player-ico--play-pause::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 11px;
    background: #1a1a1a;
    border-radius: 1px;
    left: 50%;
}

.player.player--sefon #play.is-playing .player-ico--play-pause::before {
    margin-left: -5px;
}

.player.player--sefon #play.is-playing .player-ico--play-pause::after {
    margin-left: 2px;
}

.player.player--sefon .player-ico--burger {
    position: relative;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    border-radius: 1px;
    box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

.player.player--sefon .player #burger.active .player-ico--burger {
    background: var(--sf-prog);
    box-shadow: 0 -5px 0 var(--sf-prog), 0 5px 0 var(--sf-prog);
}

.player.player--sefon .player-ico--repeat {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #c8c8c8;
}

.player.player--sefon .player-ico--repeat svg {
    display: block;
    width: 18px;
    height: 18px;
}

.player.player--sefon .player-ico--volume {
    position: relative;
    width: 20px;
    height: 16px;
    cursor: pointer;
    pointer-events: auto;
    background-color: #c8c8c8;
    -webkit-mask-image: url("/images/figma-icons/headphones.png");
    mask-image: url("/images/figma-icons/headphones.png");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}

.player.player--sefon .player-ico--volume.is-muted {
    opacity: 0.45;
}

.player.player--sefon .player-ico--volume.is-muted::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 2px;
    background: #ff6b6b;
    transform: rotate(-32deg);
    border-radius: 1px;
}

.player.player--sefon .player__volume {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 200px;
    margin-top: 0;
    margin-left: 0;
    color: #ccc;
}

.player.player--sefon .player__volume-range {
    -webkit-appearance: none;
    -moz-appearance: none;
         appearance: none;
    flex: 1 1 72px;
    min-width: 56px;
    max-width: 120px;
    height: 3px;
    border-radius: 3px;
    background: #444;
    outline: 0;
    cursor: pointer;
}

.player.player--sefon .player__volume-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--sf-prog);
    border: 2px solid #2a2a2a;
    cursor: pointer;
}

.player.player--sefon .player__volume-range::-moz-range-thumb {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    background: var(--sf-prog);
    cursor: pointer;
}

.player.player--sefon .player__volume-value {
    flex: 0 0 26px;
    text-align: right;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    font-variant-numeric: tabular-nums;
    padding: 0;
    margin: 0;
    background: none;
    width: auto;
}

.player.player--sefon button {
    padding: 0;
}

.player.player--sefon .jp-playlist {
    position: relative;
    height: min(400px, 55vh);
    width: 100%;
    max-height: 400px;
    border-radius: 10px 10px 0 0;
}

.player.player--sefon .jp-playlist ol {
    padding-top: 44px;
    margin-right: 0;
    padding-left: 12px;
}

.player.player--sefon .playlist {
    background: #323232;
    color: #eee;
    overflow: hidden;
    overflow-y: auto;
    border: 1px solid #1a1a1a;
    border-bottom: none;
}

.player.player--sefon .playlist ol li {
    list-style: none outside;
    cursor: pointer;
    margin-bottom: 6px;
    padding: 8px 10px;
    border-radius: 6px;
}

.player.player--sefon .playlist ol li:hover {
    background: rgba(142, 209, 0, 0.12);
}

.player.player--sefon .player .playlist li {
    background-image: initial;
    height: auto;
    min-height: 19px;
    margin-left: 8px;
    padding: 8px 10px;
}

.player.player--sefon .playlist li a {
    text-decoration: none;
    padding-left: 4px;
    color: inherit;
}

.player.player--sefon .playlist li .favorite {
    float: right;
    text-align: right;
    font-size: 12px;
    cursor: pointer;
    text-shadow: none;
}

.player.player--sefon .playlist .close {
    position: absolute;
    top: 10px;
    right: 12px;
    left: auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #111;
    background: var(--sf-prog);
    border-radius: 6px;
    z-index: 3;
}

.player.player--sefon .clearfix:after {
    clear: both;
    content: " ";
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.player.player--sefon .show_song_no {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    color: #eee;
    border-radius: 40px;
    background: #3a3a3a;
}

.player.player--sefon .right .show_song_no p:nth-child(2) {
    margin: 0 5px;
}

@media (max-width: 768px) {
    /* Всегда к нижнему краю viewport (моб. Safari / Chrome) */
    .player.player--sefon {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: auto;
        width: 100%;
        max-width: 100%;
        margin: 0;
        z-index: 999999;
    }

    /* Одна горизонтальная линия: обложка | мета | транспорт (громкость скрыта ниже) */
    .player.player--sefon .player__bar {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 6px 8px 8px;
        gap: 6px 8px;
        min-height: 0;
    }

    .player.player--sefon .player__center {
        flex: 0 1 auto;
        min-width: 0;
        max-width: min(55vw, 200px);
        order: 0;
        align-items: center;
        text-align: center;
    }

    .player.player--sefon .player__cover-wrap {
        order: 0;
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
    }

    .player.player--sefon .player__transport {
        order: 0;
        flex: 0 0 auto;
        flex-shrink: 0;
        width: auto;
        justify-content: flex-end;
        padding-top: 0;
    }

    .player.player--sefon .player__volume {
        display: none;
    }

    .player.player--sefon #auto {
        display: none;
    }

    .player.player--sefon .player__btn,
    .player.player--sefon .player__btn--play {
        width: 36px;
        height: 36px;
    }

    .player.player--sefon .player__btn--play {
        width: 40px;
        height: 40px;
    }
}


body {
    background-color: #f6f5f3;
    color: #222;
    /* Фиксированный плеер bottom — иначе футер остаётся под баром */
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
}
a {
    color: #222;
}
a:hover {
    color: #2a8ee7;
    text-decoration: none;
}
h1 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 24px;
}
a.logo {
    font-size: 25px;
    font-weight: 600;
}
form.search {
    display: flex;
}
form.search input {
    padding-right: 35px;
}
form.search button {
    border: none;
    background-color: rgba(0, 0, 0, 0);
    margin-left: 3px;
    color: #ababab;
}
.alert {
    margin-top: 20px;
}
.seo-prefix-h1 {
    font-size: 16px;
}
.see-more {
    display: block;
    font-size: 20px;
    margin-top: 15px;
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
    max-width: 1000px;
}
.basic-container {
    background-color: #fff;
}
.display-none {
    display: none;
}
.lyrics-text,
.lyrics-text pre {
    font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 18px;
}
.page-info {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    color: #000;
    margin: 15px 0 0;
}
.page-info .uSocial-Share {
    margin-top: -2px;
}
.page-info .counters,
.page-info .track-actions {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-bottom: 10px;

}
.page-info .info-item {
    margin-right: 10px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 8px 17px 6px;
    width: -moz-fit-content;
    width: fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    color: #121212;
    
}
.page-info .info-item:hover {
    color: #121212;
    transition: 0.3s;
}
.page-info .info-item i {
    font-size: 14px;
    margin-right: 5px;
	color: #121212;
}
.page-info .info-item.listen {
/* Btns / Big Primary btn */

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 8px 16px;
gap: 10px;

width: 95px;
height: 37px;

/* Prim */
background: #2A8EE7;
border-radius: 8px;

/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

}
.page-info .info-item.download {
 /* Btns / Big Sec btn */

box-sizing: border-box;

/* Auto layout */
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 8px 16px;
gap: 10px;

width: 91px;
height: 37px;

/* Prim */
border: 1px solid #2A8EE7;
border-radius: 8px;



}
.page-info .info-item.download:hover {
    background-color: #2A8EE7;
}
.page-info .info-item.download .btn-download {
    border: none;
    padding: 0;
    margin: 0;
    background: inherit;
    color: #000000;
    min-width: 75px;
}
.page-info .info-item.listen:hover {
    cursor: pointer;
    background-color: #2A8EE7;
}
.nav-tabs .nav-item {
    padding: 0 20px;
}
.nav-tabs .nav-item:first-child {
    padding: 0 20px 0 0;
}
.nav-tabs .nav-link {
    padding: 0;
    border: 0;
    text-transform: uppercase;
    font-weight: 600;
    color: #777;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #fff #fff #2a8ee7;
    border-bottom: 2px solid #2a8ee7;
    border-radius: 0;
}
.tab-content {
    padding: 15px 0 0 0;
}
.header {
    padding: 5px;
    border-bottom: 5px solid #f6f5f3;
}
.header .logo:hover {
    text-decoration: none;
}
.header .main-menu .menu-item {
    margin-left: 10px;
	font-weight: 600;
    font-size: 16px;
}
.content {
    padding: 0 15px 15px 15px;
    min-height: 70vh;
}
form.search .search-results {
    margin-top: 20px;
}
.artists-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.artists-list a.artist-item {
    display: block;
    width: 146px;
    margin: 10px;
    text-align: center;
}
.artists-list a.artist-item .image {
    width: 100%;
    height: 180px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
    border-radius: 0.25rem;
}
.artists-list a.artist-item .image .letters {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 146px;
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}
.artists-list a.artist-item:hover {
    opacity: 0.8;
    transition: 0.3s;
}
.track .artist-name {
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
}
.track .download-block .btn-download {
    border: none;
    background: #009559;
    color: #fff;
    margin: 0 auto;
    padding: 10px 20px;
    border-radius: 22px;
    font-size: 18px;
}
.track .download-block #countdown {
    text-align: center;
    padding: 20px;
}
.track .article {
    text-align: justify;
    font-size: 12px;
}
.tracks-list .item {
    display: flex;
    align-items: center;
    border: 2px solid #fff;
    padding: 5px;
    cursor: pointer;
    position: relative;
	border-radius: 5px;
}
.tracks-list .item .overlay {
    display: none;
    width: 50px;
    height: 50px;
    background: rgb(0 0 0 / 60%);
    position: absolute;
    z-index: 1;
}
.tracks-list .item:hover {
    border: 2px solid #2a8ee7;
}
.tracks-list .item:hover .overlay {
    display: initial;
}
.tracks-list .item.hovered {
    border: 2px solid #2a8ee7;
}
.tracks-list .item.hovered .overlay {
    display: initial;
}
.tracks-list .item .image {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    background: #ffb3b3;
    margin-right: 10px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tracks-list .item .image.artist-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
	background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
    border-radius: 0.25rem;
	
}
.tracks-list .item .image .letters {
    color: #fff;
    font-size: 22px;
}
.tracks-list .item .image .play {
    width: 50px;
    height: 50px;
    color: #fff;
    font-size: 26px;
    position: absolute;
    top: 5px;
    left: 16px;
    z-index: 2;
}
.tracks-list .item .image .play .fa-play {
    display: none;
}
.tracks-list .item:hover .play .fa-play {
    display: initial;
}
.tracks-list .item.hovered .play .fa-play {
    display: initial;
}
.tracks-list .item:hover .image {
    background-color: srgb(255, 255, 255, 0.5);
}
.tracks-list .item .title {
    display: flex;
    flex-direction: column;
    margin-right: 10px;
    width: 72%;
    line-height: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tracks-list .item .title .track-title {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.tracks-list .item .title .artist-name {
    color: #2a8ee7;
    font-size: 13px;
    margin-top: 5px;
}
.tracks-list .item .title a.artist-name:hover {
    color: #2a8ee7;
}
.tracks-list .item .download,
.tracks-list .item .views {
   /* Frame 154 */

/* Auto layout */
display: flex;
flex-direction: row;
align-items: center;
padding: 0px;
gap: 8px;

width: 65px;
height: 24px;


/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

}
.tracks-list .item .views {
    width: 65px;
    margin-left: 5px;
}
.tracks-list .item .views .img {
/* Icons / headphones */

width: 24px;
height: 24px;


/* Inside auto layout */
flex: none;
order: 0;
flex-grow: 0;

}
.tracks-list .item .views .count {
    min-width: 40px;
    font-size: 12px;
    margin-left: 3px;
}
.tracks-list .item .download {
    width: 40px;
    margin-left: 5px;
}
.tracks-list .item .btn-download {
    border: none;
    padding: 0;
    margin: 0;
    background: inherit;
    font-size: 20px;
    color: #009559;
}
.tracks-list .item .btn-download:hover {
    color: #000;
}
.tracks-list .item .btn-download span {
    display: none;
}
.paginator-block {
    margin-top: 30px;
    margin-bottom: 32px;
}
.artists .letters-block {
    font-size: 21px;
    font-weight: 600;
    text-align: center;
    margin: 40px 0;
}
.artist .biography {
    font-size: 16px;
    text-align: justify;
}
.artist .artist-info {
    padding-bottom: 15px;
}
.artist .artist-info .artist-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 160px;
    width: 100%;
    margin-top: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
    border-radius: 0.25rem;
}
.footer {
    display: flex;
    justify-content: space-between;
    margin: 0 -15px;
    height: 200px;
    border-top: 5px solid #F6F5F3;
    padding: 15px 30px;
    color: #969696;
}
.artists .footer {
    height: auto;
}
.comments {
    max-width: 623px;
}
.comments .comment {
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
    border-radius: 0.25rem;
    margin-bottom: 15px;
}
.comments .comment .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0.75rem;
    color: #6c757d;
    background-color: rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}
.comments .comment .comment-body {
    padding: 0.75rem;
}
.comments .comment .comment-body pre {
    margin-bottom: 0;
    white-space: pre-wrap;
}
.comments .new-comment {
    padding: 15px;
}
.social-share {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.track .social-share {
    margin-bottom: 0;
}
.track .track-info .artist-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 160px;
    width: 100%;
    margin-top: 15px;
	border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.25rem 0.75rem rgb(0 0 0 / 10%);
    border-radius: 0.25rem;
}
.social-share .share-title {
    font-size: 16px;
    margin-right: 15px;
}
.social-share a {
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: 0.5s;
}
.social-share a:hover {
    opacity: 0.5;
    transition: 0.5s;
}
.social-share a.whatsapp {
    background-color: #25d366;
}
.social-share a.vk {
    background-color: #4d75a3;
}
.social-share a.telegram {
    background-color: #37aee2;
}
.social-share a.ok {
    background-color: #e67e17;
}
.notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.notfound {
    max-width: 520px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
}
.notfound .notfound-404 {
    position: relative;
    height: 240px;
}
.notfound .notfound-404 h1 {
    font-family: montserrat, sans-serif;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 252px;
    font-weight: 900;
    margin: 0;
    color: #2a8ee7;
    text-transform: uppercase;
    letter-spacing: -40px;
    margin-left: -20px;
}
.notfound .notfound-404 h1 > span {
    text-shadow: -8px 0 0 #fff;
}
.notfound .notfound-404 h3 {
    font-family: cabin, sans-serif;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #262626;
    margin: 0;
    letter-spacing: 3px;
    padding-left: 6px;
}
.notfound h2 {
    font-family: cabin, sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #000;
    margin-top: 0;
    margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
    .notfound .notfound-404 {
        height: 200px;
    }
    .notfound .notfound-404 h1 {
        font-size: 200px;
    }
}
@media only screen and (max-width: 480px) {
    .notfound .notfound-404 {
        height: 162px;
    }
    .notfound .notfound-404 h1 {
        font-size: 162px;
        height: 150px;
        line-height: 162px;
    }
    .notfound h2 {
        font-size: 16px;
    }
}
.grecaptcha-badge {
    visibility: hidden !important;
}
.admin-block ul {
    display: flex;
    list-style-type: none;
}
.admin-block ul li {
    margin-right: 10px;
}
ins.adsbygoogle[data-ad-status="unfilled"] {
    display: none !important;
}
@media (max-width: 768px) {
    h1 {
        margin-top: 15px;
    }
    .nav-tabs .nav-item {
        padding: 0 10px;
    }
    .nav-tabs .nav-item:first-child {
        padding: 0 10px 0 0;
    }
    .header {
        padding: 15px 0;
    }
    .header .logo-block {
        margin-bottom: 15px;
    }
    .header .col-md-auto {
        text-align: center;
        margin: -15px 0 -5px;
    }
    .header .main-menu {
        margin-top: 25px;
    }
    .content {
        padding: 0;
    }
    .page-info {
        flex-direction: column;
    }
    .page-info .track-actions {
        margin-bottom: 15px;
    }
    .page-info .info-item {
        padding: 8px 12px 6px;
    }
    .page-info .info-item.size {
        display: none;
    }
    .main-menu {
        margin-top: 15px;
    }
    .tracks-list .item .image {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
    }
    .tracks-list .item .title .track-title {
        font-size: 14px;
    }
    .tracks-list .item .image .letters {
        font-size: 16px;
    }
    .tracks-list .item .image .play {
        width: 35px;
        height: 35px;
        font-size: 26px;
        top: -2px;
        left: 5px;
    }
    .tracks-list .item .overlay {
        width: 45px;
        height: 45px;
    }
    .tracks-list .item .menu,
    .tracks-list .item .views {
        min-width: auto;
    }
    .artists-list a.artist-item {
        width: 140px;
    }
    .artists-list a.artist-item .image .letters {
        height: 140px;
    }
    .track .track-info .artist-image {
        background-size: contain;
    }
    .artist .artist-info .artist-image {
        background-size: contain;
    }
    .footer {
        flex-direction: column-reverse;
        justify-content: flex-end;
        height: 200px;
    }
    .footer .footer-menu {
        margin-bottom: 15px;
    }
}
@media (max-width: 1200px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 900px;
    }
}

/* Глобально: все страницы без Figma и запасной слой для legacy */
html {
    -webkit-text-size-adjust: 100%;
}

html,
body {
    overflow-x: hidden;
}

img,
svg,
video,
canvas {
    max-width: 100%;
    height: auto;
}

@media (max-width: 576px) {
    .container.basic-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .basic-container .card .form-group.row .col-md-6,
    .basic-container .card .form-group.row .col-md-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .basic-container .card .form-group.row .col-form-label {
        text-align: left !important;
        padding-bottom: 4px;
    }

    .article-content {
        padding-left: 0;
        padding-right: 0;
    }

    .notfound {
        padding-left: 8px;
        padding-right: 8px;
    }
}

