/* SET BASE
----------------------------------------------- */
* {
    padding: 0; 
    outline: none; 
    border: 0;
-webkit-box-sizing: border-box; 
-moz-box-sizing: border-box; 
box-sizing: border-box;
}

ol, ul {list-style: none;}
blockquote, q {quotes: none;}
table {border-collapse: collapse; border-spacing: 0;}
input, select {vertical-align: middle;}
article, aside, figure, figure img, hgroup, footer, header, nav, section, main {display: block;}
img {
    max-width: 100%;
    height: auto;
}
.clr {clear: both;}
.clearfix:after {content: ""; display: table; clear: both;}

html {font-size: 14px;}
body {
    font: 14px GothamProRegular, Tahoma, Geneva, sans-serif;
    line-height: normal;
    padding: 0;
    margin: 0;
    color: #000;
    min-height: 100%;
    width: 100%;
    font-weight: normal;
    background: linear-gradient(to right, #282b30 0%, #936f5f 30%, #936f5f 70%, #282b30 100%);
}
a {color: #000; text-decoration: none;}
a:hover, a:focus {color: #927602; text-decoration: none;}
h1, h3, h4, h5 {font-weight: 700; font-size: 18px;}

button, textarea, input[type="text"], input[type="password"] {appearance: none; -webkit-appearance: none; font-size: 16px;}

.descrip {line-height: 1.8;}

.okrug {border-radius: 10px;}

.track-cover-link {
position: relative;
display: block;
overflow: hidden;
border-radius: 12px;
}

html {
    background-color: #222222;
}



.track-hero-card {
    position: relative;
    margin-top: 22px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 18px 45px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.04);
    background: rgba(15,15,15,0.26);
}

.track-hero-card__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(8,8,8,0.48), rgba(8,8,8,0.88)),
        var(--track-cover);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.12);
    filter: blur(22px) saturate(1.15);
    opacity: 0.96;
    pointer-events: none;
}

.track-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        linear-gradient(135deg, rgba(255,255,255,0.02), rgba(0,0,0,0.12));
    pointer-events: none;
    z-index: 1;
}

.track-hero-card__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
    align-items: start;
}

.track-hero-card__cover {
    position: relative;
}

.track-hero-card__cover img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 22px;
    box-shadow:
        0 14px 35px rgba(0,0,0,0.32),
        inset 0 1px 0 rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.04);
}

.track-hero-card__content {
    min-width: 0;
}

.track-hero-card__titlebox {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.track-hero-card__title {
    margin: 0;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    word-break: break-word;
}

.track-hero-card__title span {
    color: rgba(255,255,255,0.72);
    font-weight: 600;
}

.track-hero-card__title a {
    color: inherit;
    text-decoration: none;
}

.track-hero-card__title a:hover {
    opacity: .9;
}

.track-hero-card__rating {
    flex-shrink: 0;
}

.track-hero-card__rating .mrating-2 {
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
}

.track-hero-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.track-hero-card__meta li {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.07);
    color: #fff;
    line-height: 1.45;
    backdrop-filter: blur(10px);
    min-width: 0;
    word-break: break-word;
}

.track-hero-card__meta li span {
    display: inline-block;
    margin-right: 6px;
    color: rgba(255,255,255,0.66);
}

.track-hero-card__meta a {
    color: #fff;
    text-decoration: none;
}

.track-hero-card__meta a:hover {
    text-decoration: underline;
}

.artist-mini-stats {
    position: relative;
    margin-top: 2px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 8px 24px rgba(0,0,0,0.18);
    backdrop-filter: blur(12px);
}

.artist-mini-stats__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
    flex-wrap: wrap;
}

.artist-mini-stats__score-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.artist-mini-stats__score-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.60);
}

.artist-mini-stats__score {
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    color: #fff;
}

.artist-mini-stats__level {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.10);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.artist-mini-stats__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.artist-mini-stats__item {
    min-height: 86px;
    padding: 14px 15px;
    border-radius: 16px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.03),
        0 6px 18px rgba(0,0,0,0.14);
    backdrop-filter: blur(10px);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.artist-mini-stats__item:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.09);
}

.artist-mini-stats__item--wide {
    grid-column: span 2;
}

.artist-mini-stats__label {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.2;
    color: rgba(255,255,255,0.70);
}

.artist-mini-stats__value {
    display: block;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
    word-break: break-word;
}

@media (max-width: 980px) {
    .track-hero-card__inner {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 18px;
    }

    .track-hero-card__title {
        font-size: 28px;
    }
}

@media (max-width: 760px) {
    .track-hero-card__inner {
        grid-template-columns: 1fr;
    }

    .track-hero-card__cover {
        max-width: 320px;
    }

    .track-hero-card__title {
        font-size: 24px;
    }

    .track-hero-card__meta {
        grid-template-columns: 1fr;
    }

    .artist-mini-stats__grid {
        grid-template-columns: 1fr;
    }

    .artist-mini-stats__item--wide {
        grid-column: span 1;
    }
}








.soundcharts-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    margin-top: 5px;
    padding: 30px 0;
    background: transparent;
    color: #b8bcc2;
}

.soundcharts-footer .footer-col {
    flex: 1 1 33.333%;
    padding: 0 30px;
    min-width: 240px;
    box-sizing: border-box;
    background: transparent;
}

.soundcharts-footer .footer-col:not(:last-child) {
    border-right: 1px solid #3a3d42;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #e3e6ea;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.footer-subtitle {
    margin: 14px 0 8px;
    font-size: 11px;
    color: #8f959d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-subtitle-en {
    margin-top: 18px;
}

.footer-col-links a {
    display: block;
    color: #b8bcc2;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-col-links a:hover {
    color: #ffffff;
    padding-left: 4px;
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.7;
    color: #b8bcc2;
}

.footer-counter-box {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(58, 61, 66, 0.5);
}

.footer-counter-box:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-counter-label {
    font-size: 12px;
    color: #8f959d;
    margin-bottom: 3px;
}

.footer-counter-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

@media (max-width: 980px) {
    .soundcharts-footer {
        flex-direction: column;
        padding: 20px 0;
    }

    .soundcharts-footer .footer-col {
        width: 100%;
        padding: 18px 0;
    }

    .soundcharts-footer .footer-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid #3a3d42;
    }
}







.legal-page-wrap {
    max-width: 980px;
    margin: 35px auto 50px;
    padding: 0 20px;
    background: transparent;
}

.legal-page {
    background: transparent;
    color: #b8bcc2;
}

.legal-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid #3a3d42;
}

.legal-breadcrumbs {
    font-size: 13px;
    color: #8f959d;
}

.legal-breadcrumbs a {
    color: #aeb4bb;
    text-decoration: none;
}

.legal-breadcrumbs a:hover {
    color: #ffffff;
}

.legal-lang-switch {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.legal-lang-switch a {
    display: inline-block;
    padding: 7px 12px;
    border: 1px solid #3a3d42;
    border-radius: 999px;
    color: #c7ccd2;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    transition: all 0.2s ease;
    background: transparent;
}

.legal-lang-switch a:hover,
.legal-lang-switch a.is-active {
    color: #000000;
    border-color: #555b63;
    background: rgba(255,255,255,0.04);
}

.legal-card {
    background: transparent;
    border: 1px solid #3a3d42;
    border-radius: 18px;
    padding: 28px 28px 22px;
	background-color: #333333;
}

.legal-page h1 {
    margin: 0 0 10px;
    font-size: 32px;
    line-height: 1.2;
   color: #000000;
    font-weight: 700;
}

.legal-meta {
    margin-bottom: 24px;
    font-size: 13px;
    color: #000000;
}

.legal-lead {
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.8;
    color: #000000;
}

.legal-page h2 {
    margin: 28px 0 12px;
    font-size: 20px;
    line-height: 1.35;
    color: #000000;
    font-weight: 700;
}

.legal-page p {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.8;
    color: #1a1a1a;
}

.legal-page ul {
    margin: 0 0 16px 0;
    padding-left: 18px;
}

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.75;
    color: #1a1a1a;
	 letter-spacing: 0.7px;
	 font-style: italic !important; 
}

.legal-page a {
    color: #d8dde3;
    text-decoration: none;
    border-bottom: 1px solid rgba(216, 221, 227, 0.28);
    transition: all 0.2s ease;
}

.legal-page a:hover {
    color: #c59b08;
    border-bottom-color: rgba(255, 255, 255, 0.7);
}

.legal-note {
    margin-top: 22px;
    padding: 14px 16px;
    border-left: 3px solid #4b5159;
    background: rgba(255,255,255,0.02);
    color: #2c3e50;
    font-size: 14px;
    line-height: 1.7;
    border-radius: 10px;
	font-weight: bold;
}

@media (max-width: 768px) {
    .legal-page-wrap {
        padding: 0 14px;
        margin: 25px auto 40px;
    }

    .legal-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .legal-card {
        padding: 22px 18px 18px;
        border-radius: 14px;
		background-color: #333333;
    }

    .legal-page h1 {
        font-size: 26px;
    }

    .legal-page h2 {
        font-size: 18px;
    }

    .legal-page p,
    .legal-page li,
    .legal-lead {
        font-size: 14px;
    }
}
















/* =========================
LATEST TRACK BOARD
========================= */

.latestboard {
    position: relative;
    width: 100%;
    min-height: 420px;
    border-radius: 26px;
    overflow: hidden;
    background: rgba(12,12,12,0.72);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.36),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.latestboard__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(8,8,8,0.52), rgba(8,8,8,0.9)),
        var(--latestboard-cover);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.12);
    filter: blur(24px) saturate(1.18);
    opacity: 0.98;
    pointer-events: none;
}

.latestboard__glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,0.06), transparent 30%),
        radial-gradient(circle at bottom left, rgba(255,255,255,0.04), transparent 25%);
    pointer-events: none;
    z-index: 1;
}

.latestboard__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 44% 56%;
    min-height: 420px;
    text-decoration: none;
    color: inherit;
}

.latestboard__cover-wrap {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.latestboard__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.01);
}

.latestboard__cover-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.35) 100%);
    pointer-events: none;
}

.latestboard__shine {
    position: absolute;
    top: -20%;
    left: -30%;
    width: 70%;
    height: 140%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: rotate(12deg);
    animation: latestboardShine 4.8s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes latestboardShine {
    0% { transform: translateX(-130%) rotate(12deg); opacity: 0; }
    12% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { transform: translateX(280%) rotate(12deg); opacity: 0; }
}

.latestboard__equalizer {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 34px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,0.38);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
}

.latestboard__equalizer span {
    display: block;
    width: 4px;
    border-radius: 999px;
    background: #fff;
    opacity: 0.9;
    animation: latestboardEq 1.2s ease-in-out infinite;
}

.latestboard__equalizer span:nth-child(1) { height: 10px; animation-delay: 0s; }
.latestboard__equalizer span:nth-child(2) { height: 22px; animation-delay: 0.15s; }
.latestboard__equalizer span:nth-child(3) { height: 16px; animation-delay: 0.3s; }
.latestboard__equalizer span:nth-child(4) { height: 28px; animation-delay: 0.45s; }
.latestboard__equalizer span:nth-child(5) { height: 14px; animation-delay: 0.6s; }

@keyframes latestboardEq {
    0%, 100% {
        transform: scaleY(0.55);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1.15);
        opacity: 1;
    }
}

.latestboard__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 34px 34px 28px;
    min-width: 0;
}

.latestboard__label {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.latestboard__artist {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: rgba(255,255,255,0.68);
    margin-bottom: 8px;
    word-break: break-word;
}

.latestboard__title {
    font-size: 34px;
    line-height: 1.12;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    word-break: break-word;
    text-shadow: 0 2px 14px rgba(0,0,0,0.24);
}

.latestboard__desc {
    max-width: 680px;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    word-break: break-word;
}

.latestboard:hover .latestboard__cover {
    transform: scale(1.035);
    transition: transform .35s ease;
}

.latestboard:hover .latestboard__title {
    opacity: 0.96;
}

@media (max-width: 860px) {
    .latestboard__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .latestboard__cover-wrap {
        min-height: 280px;
    }

    .latestboard__content {
        padding: 22px 20px 24px;
    }

    .latestboard__title {
        font-size: 26px;
    }

    .latestboard__desc {
        font-size: 14px;
        line-height: 1.6;
    }
}













/* =========================
CHART 24 FINAL CLEAN
========================= */

.chart24-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* зебра */
.chart24-item:nth-child(odd) { background: #F2F6F8; }
.chart24-item:nth-child(even) { background: #ffffff; }

.chart24-item {
    margin: 0;
    padding: 0;
}

/* строка */
.chart24-row {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 12px;
    min-height: 56px;
}

/* номер */
.chart24-rank {
    flex: 0 0 28px;
    min-width: 28px;
    font-size: 13px;
    color: #181617;
    font-weight: 400;
}

/* топ 3 */
.chart24-item:nth-child(1) .chart24-rank,
.chart24-item:nth-child(2) .chart24-rank,
.chart24-item:nth-child(3) .chart24-rank {
    font-weight: 800;
}

/* ===== PLAY ===== */

.chart24-play-wrap {
    flex: 0 0 42px;
    width: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chart24-play-btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;

    border-radius: 50%;
    background: transparent;
    border: 2px solid #ffd600;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: none;
    padding: 0;
    margin: 0;
    line-height: 1;

    transition: background .2s ease, border-color .2s ease;
}

/* иконка */
.chart24-play-btn .fa {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 14px;
    height: 14px;

    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 14px;

    color: #181617;

    transform: translateX(0.5px); /* можно убрать если хочешь */
}

/* hover */
.chart24-play-btn:hover {
    background: #ffd600;
    border-color: #ffd600;
}

.chart24-play-btn:hover .fa {
    color: #000;
}

/* ===== контент ===== */

.chart24-content {
    flex: 1;
    min-width: 0;
}

.chart24-title {
    font-size: 13px;
    color: #181617;
    margin-bottom: 3px;
    font-weight: 400;
    text-decoration: none;
}

/* топ 3 */
.chart24-item:nth-child(1) .chart24-title,
.chart24-item:nth-child(2) .chart24-title,
.chart24-item:nth-child(3) .chart24-title {
    font-weight: 800;
}

/* meta */
.chart24-meta {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.chart24-left,
.chart24-right {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* артист */
.chart24-artist {
    font-size: 11px;
    color: #5f6368;
}

/* просмотры */
.chart24-views {
    font-size: 11px;
    color: #181617;
}

/* ===== проценты ===== */

.chart24-growth {
    background: #181617;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 400;
}

/* ===== тренд ===== */

.chart24-trend {
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 999px;
    color: #fff;
    font-weight: 400;
}

/* цвета */
.chart24-trend-up { background: #1f4d2e; }
.chart24-trend-down { background: #6b1f1f; }
.chart24-trend-same { background: #181617; }
.chart24-trend-new { background: #181617; }

/* ===== убираем hover ===== */

.chart24-item:hover {
    background: inherit !important;
}

.chart24-item:nth-child(odd):hover {
    background: #F2F6F8 !important;
}

.chart24-item:nth-child(even):hover {
    background: #ffffff !important;
}





















.soundcharts-list {
    list-style: none;
    padding: 10px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

.soundcharts-list li {
    display: block;
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.soundcharts-list .news-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.soundcharts-list .news-rank {
    flex: 0 0 50px;
    max-width: 50px;
    min-width: 50px;
    text-align: center;
    font-weight: bold;
    color: #000;
    box-sizing: border-box;
}

.soundcharts-list .news-info {
    flex: 1 1 auto;
    width: calc(100% - 62px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.soundcharts-list .news-title {
    display: block;
    width: 100%;
    color: #000;
    text-decoration: none;
    margin-bottom: 4px;
    box-sizing: border-box;
}

.soundcharts-list .news-title:hover {
    color: #ffdd57;
    text-decoration: underline;
}

.soundcharts-list .news-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
}

.soundcharts-list .news-meta span {
    display: inline-flex;
    align-items: center;
    background: #ffdd57;
    padding: 3px 10px;
    border-radius: 15px;
    font-weight: normal;
    color: #000;
    font-size: 10px;
    white-space: nowrap;
    box-sizing: border-box;
}

.soundcharts-list .trend-up {
    background: #4caf50 !important;
    color: #fff !important;
}

.soundcharts-list .trend-down {
    background: #f44336 !important;
    color: #fff !important;
}

.soundcharts-list .trend-new {
    background: #ff9800 !important;
    color: #fff !important;
}

.soundcharts-list .trend-same {
    background: #9e9e9e !important;
    color: #fff !important;
}



























.comm-item {
    position: relative;
    margin-top: 18px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(15,15,15,0.45);
    box-shadow:
        0 12px 30px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

/* Размытая обложка */
.comm-item__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(180deg, rgba(8,8,8,0.6), rgba(8,8,8,0.85)),
        var(--comment-cover);
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    filter: blur(18px) saturate(1.2);
    opacity: 0.95;
}

/* Контент */
.comm-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 14px;
    padding: 16px;
}

/* Аватар */
.comm-left img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.12);
}

/* Правая часть */
.comm-right {
    flex: 1;
}

/* Верх */
.comm-one {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

/* Автор */
.comm-author {
    font-weight: 700;
    color: #fff;
    font-size: 14px;
}

/* Метки */
.comm-group,
.comm-date {
    font-size: 12px;
    color: rgba(255,255,255,0.65);
}

/* Текст */
.comm-two {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    color: #f1f1f1;
    font-size: 14px;
    line-height: 1.6;
}

/* Подпись */
.signature {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* Кнопки */
.comm-three {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    list-style: none;
    padding: 0;
}

.comm-three li a {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.comm-three li a:hover {
    background: rgba(255,255,255,0.12);
}















.catviews-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 6px 10px;
background: rgba(255, 255, 255, 0.08);
border-radius: 999px;
color: #000;
font-size: 13px;
line-height: 1;
white-space: nowrap;
}

.catviews-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 60px;
height: 24px;
background: #ffdd57;
border-radius: 20px;
font-size: 10px;
color: #000;
}

.catviews-count {
font-weight: 600;
color: #000;
}








/* НИЖНИЙ БЛОК С ТЕКСТОМ */
.track-meta {
position: absolute;
left: 0;
right: 0;
bottom: 0;
padding: 18px 12px 10px;

background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.5),
    rgba(0,0,0,0)
);

color: #fff;
z-index: 2;

display: flex;
flex-direction: column;
gap: 2px;
}

/* Название */
.track-title {
font-size: 14px;
font-weight: 700;
color: #fff;

white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

/* Артист */
.track-artist {
font-size: 12px;
color: rgba(255,255,255,0.85);

white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.track-artist-date {
font-size: 8px;
color: #FFCC00;

white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}





.button, .btn, .pagi-load a, .up-second li a, .usp-edit a, .qq-upload-button, button:not(.f-button):not(.tox-tbtn):not(.f-thumbs__slide__button):not(.color-btn):not([class*=fr]), 
html input[type="button"], input[type="reset"], input[type="submit"], .meta-fav a, .usp-btn a {
display: inline-block; text-align: center; padding: 0 30px; height: 40px; line-height: 40px; border-radius: 20px; cursor: pointer;  
background-color: #454545; color: #fff; font-size: 14px; font-weight: 700;}
.button:hover, .btn:hover, .up-second li a:hover, .usp-edit a:hover, .qq-upload-button:hover, 
.pagi-load a:hover, .usp-btn a:hover,
button:not(.f-button):not(.tox-tbtn):not(.f-thumbs__slide__button):not(.color-btn):not([class*=fr]):hover, html input[type="button"]:hover, input[type="reset"]:hover, 
input[type="submit"]:hover, .meta-fav a:hover
{background-color: #454545; color: #fff;}
button:active, input[type="button"]:active, input[type="submit"]:active {box-shadow: inset 0 1px 4px 0 rgba(0,0,0,0.1);}

input[type="text"], input[type="password"] {display: block; width: 100%; height: 40px; line-height: 40px; padding: 0 15px;
background-color: #e4e4e4; color: #222;  border-radius: 4px; box-shadow: none; border: 0;}
input[type="text"]:focus, input[type="password"]:focus {}

select {height: 40px; border: 1px solid #e3e3e3; background-color: #e4e4e4; color: #222;}
textarea {display: block; width: 100%; padding: 15px; overflow: auto; vertical-align: top; resize: vertical; height: 90px; 
background-color: #e4e4e4; color: #222;  border-radius: 4px; box-shadow: none; border: 0;}

.img-box, .img-wide, .img-square, .img-resp, .img-resp-vert, .img-resp-sq, .img-fit 
{overflow: hidden; position: relative; background-color: #222;}
.img-resp {padding-top: 57%;}
.img-resp-vert {padding-top: 124%;}
.img-resp-sq {padding-top: 100%;}
.img-box img, .img-square img, .img-resp img, .img-resp-vert img, .img-resp-sq img {width: 100%; min-height: 100%; display: block;}
.img-resp img, .img-resp-vert img, .img-resp-sq img {position: absolute; left: 0; top: 0;}
.img-wide img {width: 100%; display: block;}
.img-fit img {width: 100%; height: 100%; object-fit: cover;}
.nowrap {white-space: nowrap; overflow: hidden; text-overflow: ellipsis;}

.fx-row, #dle-content {display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;
-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}
.fx-col {display:-ms-flexbox;display:-webkit-flex;display:flex; 
-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}
.fx-center {-ms-flex-pack:center;-webkit-justify-content:center;justify-content:center}
.fx-middle {-ms-flex-align:center;-webkit-align-items:center;align-items:center}
.fx-start {-webkit-justify-content:flex-start;justify-content:flex-start;}
.fx-first {-ms-flex-order: -1;-webkit-order: -1;order: -1;}
.fx-last {-ms-flex-order: 10;-webkit-order: 10;order: 10;}
.fx-1 {-ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; 
	max-width: 100%; min-width: 50px;}

@font-face {
    font-family: "GothamProRegular";
    src: url("../fonts/GothamProRegular/GothamProRegular.eot");
    src: url("../fonts/GothamProRegular/GothamProRegular.eot?#iefix")format("embedded-opentype"),
    url("../fonts/GothamProRegular/GothamProRegular.woff") format("woff"),
    url("../fonts/GothamProRegular/GothamProRegular.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
}
@font-face {
    font-family: "GothamProRegular";
    src: url("../fonts/GothamProBold/GothamProBold.eot");
    src: url("../fonts/GothamProBold/GothamProBold.eot?#iefix")format("embedded-opentype"),
    url("../fonts/GothamProBold/GothamProBold.woff") format("woff"),
    url("../fonts/GothamProBold/GothamProBold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
}

b, strong, h1, h3, h4, h5, .fw700 {font-weight: 700;}
.fw300 {font-weight: 300;}
.fw900 {font-weight: 900;}
.ttu {text-transform: uppercase;}
.icon-left .fa {margin-right: 10px;}
.hover-mask, .album-item, .ps-item, .radio-item {transition: color .2s, background-color .2s, opacity .2s;}
#dle-content > *:not(.album-item) {width: 100%;}

/* BASIC GRID
----------------------------------------------- */
.wrap {min-width:320px; overflow:hidden; position: relative;}
.wrap-center {max-width:1366px; margin:0 auto; position:relative; z-index:20; background-color: #fff;}
.header {height: 70px; background-color: #222222;}
@media (max-width: 768px) {
    .header {
        height: 30px;
    }
}
@media screen and (min-width: 1220px) {
.logo {width: 230px; background-color: #222; display: block; padding: 10px; }}

@media (max-width: 768px) {
    .logo {
       
    }
}
.login-box-wr {width: 230px; background-color: #222; color: #ccc; height: 70px;}
.h-main {calc(100% - 460px); padding: 15px 30px;}
.cols {}
.side-left {width: 230px; background-color: #f2f6f8;}
.side-right {width: 230px; border-left: 1px solid #e3e3e3;}
.main {min-height: auto; padding: 30px;}
.footer {background: #222 url(../images/logo.png) left center no-repeat; padding: 30px 15px 15px 260px; 
color: #fff; min-height: 70px; background-blend-mode: overlay;}

#gotop{position:fixed; width:50px; height:50px; line-height:46px; right:10px; bottom:10px; cursor:pointer; font-size:20px;
z-index:9998; display:none; opacity:1; background-color:#fff; color:#222; 
border-radius:50%; text-align:center; box-shadow: 0 1px 4px rgba(0,0,0,0.2);}

/* HEADER
----------------------------------------------- */
.search-box {width: 325px; position: relative;}
.search-box input#story, .search-box input#story:focus {width: 100%; height: 40px; line-height: 40px; 
border-radius: 20px; background-color: #444; color: #fff !important; padding-right: 60px; box-shadow: inset 0 0 0 2px #222;}
.search-box button {position: absolute; right: 0; top: 0; color: #fad02e !important; background-color: transparent !important; 
padding: 0 !important; width: 50px;}

.letter-box {}
.letter-item {cursor: pointer; display: inline-block; height: 40px; line-height: 40px; 
	margin-left: 12px; font-size: 16px; position: relative; z-index: 888;}
	.letter-item > span {color: #ccc;}
.hidden-menu {width: 270px; padding: 15px 5px 5px 15px; background-color: #fff; 
position: absolute; right: -15px; top: 100%; box-shadow: 0 0 40px rgba(0,0,0,0.1); display: none;}
.hidden-menu a {display: block; width: 40px; text-align: center; height: 40px; line-height: 38px;
border: 1px solid #e3e3e3; float: left; margin-right: 10px; margin-bottom: 10px; 
border-radius: 3px;}

.login-box-wr {line-height: 40px; position: relative; padding: 15px 70px 15px 15px; text-align: right;}
.login-ava {width: 40px; height: 40px; border-radius: 50%; position: absolute; right: 15px; top: 15px; display: block;}
.login-name:hover {text-decoration: underline; cursor: pointer;}
.login-btns {margin-right: -55px;}
.login-btns .btn {width: 100%;}
.hidden-log {display: none;}


/* LOGIN
----------------------------------------------- */
.login-box {background-color:#FFF; padding:20px; display:none;}
.lb-user {margin:-20px -20px 20px -20px; padding:20px; background-color:#f6f6f6;  
display:flex; flex-flow:row wrap; justify-content:center; align-items:center;}
.lb-ava {width:80px; height:80px; border-radius:50%; margin-right:20px;}
.lb-name div {font-size:18px;}
.lb-name a {margin-top:10px;}
.lb-menu a {display:block; line-height:30px; padding:0 10px; background-color:#f6f6f6;}
.lb-menu a:hover, .lb-menu a:hover .fa {background-color:#fad02e; color:#000;}
.lb-menu a .fa {color:#fad02e;}
.login-box input[type="text"], .login-box input[type="password"], .login-box button, .lb-check 
{display:block; margin-bottom:20px; width:100%;}
.lb-check input {display:none;}
.lb-check input + label:before {width:14px; height:14px; margin-right:7px; cursor:pointer; position:relative; top:3px;
border-radius:3px; border:1px solid #ccc; content:""; background-color:#f6f6f6; display:inline-block;}
.lb-check input:checked + label:before {background-color:#e5050b;}
.lb-soc {margin:20px -20px -20px -20px; padding:20px; background-color:#f6f6f6; text-align:center;}
.lb-soc a {display:inline-block; margin:10px 3px 0 3px; vertical-align:top;}
.lb-soc img {display:block; width:30px; height: 30px; border-radius: 15px;}


/* SIDE
----------------------------- */
.side-left a {}
.side-bt {margin-bottom: 30px;}
.side-bt .fa  {color: #e84e36;}
.side-box {padding: 30px 15px;}
.side-box + .side-box {border-top: 1px solid #e3e3e3;}
.side-right .side-box + .side-box {border-color: #e3e3e3;}
.side-nav li > a {display: block; padding-left: 25px; position: relative;}
.side-nav li + li {margin-top: 15px;}
.side-nav .fa {position: absolute; left: 0; top: 0; color: #000; opacity: 0.4;}
.side-nav .fa + span {opacity: 1;}
.side-nav li a:hover .fa + span {opacity: 1;}

.desc-title {margin-bottom: 18px; font-size: 16px;}
.side-desc {font-size: 12px; line-height: 1.5; opacity: 0.7;}
.side-desc a {text-decoration: underline;}
.site-desc a:hover {text-decoration: none;}

.ps-item {}
.ps-item + .ps-item {margin-top: 20px;}
.ps-img {width: 40px;	height: 40px; border-radius: 50%;}
.ps-desc {width: calc(100% - 55px); font-size: 12px;}
.ps-name {opacity: 0.5;	margin-top: 2px; font-size: 12px;}
.side-artists .ps-name {display: none;}

.lcomm + .lcomm {margin-top: 15px;}
.ltext {font-size: 12px;}
.llink {opacity: 0.5;	margin-top: 2px; font-size: 10px; display: block;}


/* SECTION
----------------------------------------------- */
.sect + .sect {margin-top: 30px;}
.sect-title {margin-bottom: 20px; font-size: 1.5rem;}
.sect-title-2 {color: #212121; margin-bottom: 7px; font-size: 1.5rem;}
.sect-title a {color: #e84e36; margin-left: 15px; display: inline-block; vertical-align: top; font-weight: 400;
text-transform: none; font-size: 14px; margin-top: 4px;}
.sect-title a:hover {text-decoration: underline;}
.play-items {width: 49%; margin-bottom: 15px;}
.speedbar {color: #888; font-size: 12px; margin: -5px 0 0px 0;}


/* ALBUM
----------------------------------------------- */
.album-item {display: block; width: 18.5%; margin-bottom: 15px;}
.album-title {height: 2.2rem; line-height: 1.1rem; font-size: 1rem; overflow: hidden; margin-top: 15px;}
.hover-mask {position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 10;
color: #000; background-color: rgba(250,208,46,0.8); opacity: 0;}
.hover-mask-box:hover .hover-mask {opacity: 1;}
.hover-mask .fa-play {line-height: 50px; font-size: 18px; padding-left: 2px; 
box-shadow: inset 0 0 0 2px #000; border-radius: 50%; height: 50px; width: 50px; text-align: center;}


/* PLAY
----------------------------------------------- */
.play-item {padding: 10px 15px; line-height: 30px; padding-left: 52px; position: relative;}
.play-item:nth-child(2n+1) {background-color: #f2f6f8;}
.play-desc {display: block;}
.play-right {text-align: right; font-size: 0.8rem; opacity: 0.7; width: 30%; float: right;}
.play-left {font-size: 1rem; width: 68%; float: left;}
.play-ctrl {position: absolute; width: 30px; height: 30px; left: 10px; top: 10px; cursor: pointer;}
.play-ctrl .fa  {color: #444; line-height: 31px; padding-left: 2px;
box-shadow: inset 0 0 0 2px #fad02e; border-radius: 50%; height: 30px; width: 30px; text-align: center;}
.play-desc:hover .play-left {text-decoration: underline;}
.play-ctrl:hover .fa {color: #000; background-color: #fad02e;}
.show-player .play-ctrl .fa {color: #000; background-color: #fad02e; padding-left: 0px;}

.item-player {width: 100%; padding: 5px 10px; position: fixed; left: 0; bottom: 0; z-index: 99999;
background-color: #333; color: #fff; box-shadow:0 -5px 11px 0 rgba(0,0,0,0.05);}
.audioplayer {position: relative; max-width: 830px; margin: 0 auto;}
.audioplayer audio {display: none;}
.audioplayer-playpause {width: 50px; margin-right: 30px;}
.audioplayer-time {margin-right: 30px; font-size: 14px;}
.audioplayer-time-duration, .audioplayer-volume {margin-left: 30px; margin-right: 0;}
.audioplayer-bar {-ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; 
	max-width: 100%; min-width: 50px; background-color: #111; height: 20px; border-radius: 10px; position: relative;}
.audioplayer-bar-loaded, .audioplayer-bar-played {position: absolute; left: 0; top: 0; height: 100%; 
border-radius: 10px; background-color: rgba(0,0,0,0.1);}
.audioplayer-bar-played {z-index: 10; background-color: #fad02e;}
.audioplayer-playpause a, .audioplayer-volume-button a {overflow: hidden; width: 40px; height: 40px; line-height: 40px; 
text-indent: -9999px; position: relative; background-color: #222; border-radius: 50%; 
display: block;}
.audioplayer-playpause a:before, .audioplayer-volume-button a:before {display: block; width: 40px; height: 40px; line-height: 40px; text-align: center; 
border-radius: 20px; color: #fff; position: absolute; left: 0; top: 0; 
content:"\f04c"; font-family:'FontAwesome'; font-size: 18px; text-indent: 0;}
.audioplayer-stopped .audioplayer-playpause a:before {content:"\f04b"; left: 3px;}
.audioplayer-volume-button a:before {content:"\f028";}
.audioplayer-muted .audioplayer-volume-button a:before {content:"\f026";}
.audioplayer-volume {position: relative;}
.audioplayer-volume-adjust {width: 40px; height: 100px; background-color: #222; 
position: absolute; right: 0; bottom: 100%; display: none;}
.audioplayer-volume-adjust > div {width: 10px; height: 70px; border-radius: 5px; 
position: relative; left: 15px; top: 15px; background-color: #111; cursor: pointer;}
.audioplayer-volume-adjust > div > div {width: 10px; border-radius: 5px; background-color: #fad02e; 
position: absolute; left: 0; bottom: 0;}
.audioplayer-volume-button {position: relative;}
.audioplayer-volume:hover .audioplayer-volume-adjust {display: block;}
.audioplayer-playpause a:hover, .audioplayer-volume-button a:hover {background-color: #fad02e;}


/* BOTTOM NAVIGATION
----------------------------------------------- */
.bottom-nav {line-height:46px; text-align:center; margin-top: 50px; font-size: 14px;}
.pagi-nav {max-width:100%; display:inline-block;}
.pagi-nav > span {display:inline-block;}
.pprev, .pnext {}
.pprev {}
.pnext a, .pprev a, .pprev > span, .pnext > span {display:block; width:46px; text-align:center;}
.navigation {text-align:center;}
.navigation a, .navigation span, .pnext a, .pprev a, .pprev > span, .pnext > span {display:inline-block; padding:0 5px; 
min-width:46px; background-color:#fff; margin:0 5px; border-radius:23px; margin-top: 10px; 
box-shadow:inset 0px 0 0 1px rgba(0, 0, 0, 0.1);}
.navigation span, .pagi-nav a:hover {background-color:#454545; color:#fff;}
.navigation span.nav_ext {background-color:#fff; color: #ccc;}
.pagi-nav a:hover {background-color:#454545; color:#fff;}
.dle-comments-navigation .pagi-nav {margin-bottom:0;}


/* FOOTER
----------------------------------------------- */
.footer-text {opacity: 0.7; font-size: 12px; margin-right: 15px;}


/* FULL
----------------------------------------------- */
.fcols {margin-bottom: 30px;}
.fright {position: relative;}
.fleft {width: 250px; margin-right: 30px; text-align: center;}
.fimg {width: 250px; height: 250px; position: relative; }
.fimg img {width: 100%; height: 100%; object-fit: cover; border-radius: 10px;}
.fright h1 {font-size: 22px; margin-bottom: 15px; font-weight: 400; padding-right: 170px;	}
.fright h1 > span {display: block; font-size: 18px; margin-bottom: 5px; color: #e84e36;}
.fright h1 a {font-size: 18px; margin-bottom: 5px; color: #e84e36;}
.mrating {position: absolute; right: 0; top: -5px;}
.fimg > a {display: block; position: absolute; right: 0; top: 0; width: 30px; height: 30px; text-align: center; line-height: 30px; color: #fff; font-size: 24px;}

.slice {overflow:hidden; position:relative; transition:height .2s;}
.slice-masked:before {content:'';position:absolute;z-index:1;bottom:0px;left:0;right:0;height:120px;pointer-events:none;
background:-webkit-linear-gradient(top, rgba(255,255,255,0) 0%, #fff 100%);
background:linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 100%);}
.slice-btn {margin:15px 0 0 0;}
.slice-btn span {display:inline-block; cursor:pointer; text-decoration:underline; color:#e84e36;}
.mt {margin-top: 30px;}
.mbs {margin-bottom: 15px;}

.finfo {}
.finfo li {position: relative; padding: 10px 10px 10px 180px;}
.finfo li:nth-child(2n+1) {background-color: #f2f6f8;}
.finfo li > span:first-child {position: absolute; left: 10px; top: 11px; opacity: 0.6; font-size: 12px;}
.finfo a {color: #1bae5d; text-decoration: underline;}

.ffav {position:absolute; top:10px; right:10px; cursor:pointer; font-size: 14px;}
.ffav a {display: block; height: 40px; line-height: 40px; padding: 0 15px; 
border-radius: 20px; box-shadow: inset 0 0 0 2px #222; color: #ffd32a;}

.fbtns {background-color: #333; color: #fff; font-size: 0; position: relative;}
.fplay, .fdl {display: inline-block; vertical-align: top; height: 60px; line-height: 60px; 
	cursor: pointer; width: auto; font-size: 18px; color: #fff;
	padding: 0 30px 0 100px; border-right: 2px solid #222 !important; 
position: relative; text-align: left; border: 0; transition: all .2s linear;}
.fdl:hover, .fplay:hover {background-color: #222; color: #fff;}
.fdl .fa, .fplay .fa {position: absolute; left: 30px; top: 10px; z-index: 10; 
	line-height: 40px; font-size: 16px; width: 40px; height: 40px; text-align: center; border-radius: 50%; 
box-shadow: inset 0 0 0 2px #ffd32a; color: #ffd32a;}
.fplay .fa {padding-left: 2px;}
.show-player .fplay .fa {padding-left: 0px;}
.show-player .fplay {animation: flash  0.3s infinite linear alternate;}
@keyframes flash {
  from {background-color: #222;}
  to {background-color: #333;}
}


/* FULL STORY STATIC
----------------------------------------------- */
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame 
{width: 100%; max-width:100% !important; height:400px; display:block; margin:0 auto;}
.mejs-container {max-width:100% !important;}
.full-text {color:#444; font-size:14px; line-height:1.7;}
.full-text img:not(.emoji) {max-width:100%; margin:10px auto;}
.full-text > img[style*="left"], .full-text > .highslide img[style*="left"] {margin:0 10px 10px 0;}
.full-text > img[style*="right"], .full-text > .highslide img[style*="right"] {margin:0 0 10px 10px;}
.full-text a {text-decoration:underline; color:#e84e36;}
.full-text a:hover {text-decoration:none;}
.full-text h2, .full-text h3, .full-text h4, .full-text h5 {margin:10px 0; font-size:18px; font-weight:700;}
.full-text p {margin-bottom:10px;}
.full-text > ul, .full-text > ol {margin:10px 0;}
.full-text > ul li {list-style:disc; margin-left:40px; position:relative;}
.full-text > ol li {list-style:decimal; margin-left:40px;}

.full-text table {width:100%; text-align:left; margin:0;}
.full-text table tr td {padding:3px 7px; border:2px solid #fff;}
.full-text table tr:nth-child(2n+1) {background-color:#e3e3e3;} 
.full-text222 table tr:nth-child(1) {background-color:#0297dc !important; color:#FFF; font-size:14px !important;}
.full-text table img {display:block; margin:0; border:0; max-width:350px}
.attach {line-height:40px; background-color:#f5f5f5; padding:0 15px 0 0; border-radius:4px; margin:10px 0; overflow:hidden;}
.attach .download-link {color:#FFF !important; text-decoration:none !important; margin-right:15px; float:left; 
display:inline-block; padding:0 15px; background:#0297dc;}
.attach-info {float:right;}
.attach i {margin-right:5px;}
.dcont {border:1px solid #e3e3e3; padding:0 15px 15px 15px; margin:0 0 20px 0; line-height:20px;}
.polltitle {display:block; padding:5px 15px; margin:0 -15px 15px -15px; font-size:18px; background-color:#f5f5f5; line-height:normal;}
.full-taglist a {color:#4a61a3;}
.full-taglist {margin:0;}


/* COMMENTS
----------------------------------------------- */
.full-comms {position: relative;}
.comms-title {line-height:40px;}
.comms-title > span {font-size:14px; opacity: 0.5;}
.add-comm-form {position:relative; margin:15px 0 0 0; padding: 15px; 
border: 0px solid #e3e3e3; display:none; background-color: #f2f6f8;}
.ac-soc {position:absolute; right:0px; top:-8px;}
.ac-soc:before {content:attr(data-label); display:inline-block; vertical-align:top; line-height:30px; margin-right:5px;}
.ac-soc a {display:inline-block; margin:0 0 0 3px; vertical-align:top;}
.ac-soc img {display:block; width:30px;}
.ac-inputs, .ac-textarea {margin-bottom:15px;}

.ac-av {width:40px; height:40px; border-radius:50%; float:left; margin-right:10px;
background:#fff url(../dleimages/noavatar.png) no-repeat; background-size:contain;}
.ac-title {font-weight:700; margin-bottom:15px; text-transform:uppercase;}
.ac-inputs input {width:49%; background-color:#FFF; box-shadow:0 0 0 1px #EDEDED,inset 1px 1px 3px 0 rgba(0,0,0,0.1);}
.ac-textarea textarea {height:85px; background-color: #fff;}
.ac-submit {}
.sec-answer + .sec-label {margin-top:10px;}
.ac-protect {margin-top:-10px; display:none;}
.ac-protect .label {font-size:12px;}
.ac-protect .sep-input {padding:10px 10px 10px 160px;}
.ac-protect input {background-color:#FFF;}

.mass_comments_action {text-align:right; padding:5px 15px; background-color:#f0f0f0; margin:20px 0 0 0;}
.last-comm-link {font-size:16px; margin-bottom:10px;}
.last-comm-link a {text-decoration:underline; color:#6c9bd3;}
.full-comms {}
#dle-comments-list {margin-top: 15px;}
.add-comm-btn {position: absolute; right: 0; top: -8px;}

.comm-item {padding-left:55px; margin-bottom:30px;}
.comm-left {width:40px; height:40px; margin-left:-55px; float:left; border-radius:50%;}
.comm-right {width:100%; float:right; position:relative;}

.comm-one {padding:0 80px 5px 0; position:relative; font-size:12px; color: #888;}
.comm-one > span:nth-child(4) {float:right; margin-right:0;}
.comm-one > span {float:left; margin-right:20px;}
.comm-author {color: #e84e36;}
.comm-author a {color: #e84e36;}
.rate3-comm {position:absolute; right:0; top:0; white-space:nowrap; font-size:16px;}
.rate3-comm a {cursor:pointer; height:20px; line-height:20px; display:inline-block; font-size:14px;
color:#0aa80a; margin:0 5px 0 0; vertical-align:top}
.rate3-comm a:last-child {color:#d00e0e; margin:0 0 0 5px;}
.rate3-comm a:hover {opacity:0.5;}
.rate3-comm > span {height:20px; line-height:20px; display:inline-block; font-size:11px; font-weight:700; vertical-align:top;}
.rate3-comm > span > span.ratingtypeplus {color: #06b601;}
.rate3-comm > span > span.ratingplus {color: #95c613;}
.rate3-comm > span > span.ratingminus {color: #ff0e0e;}
.comm-two {}
.signature {font:italic 12px Georgia, "Times New Roman", Times, serif; margin-top:10px; padding-top:10px; 
border-top:1px dashed #000;}
.comm-three {margin-top:10px; font-size:12px; text-align:right;}
.comm-three li {display:inline-block; margin-left:10px; line-height: 20px;}
.comm-three a {display: inline-block; vertical-align: middle; 
	border: 1px solid transparent; line-height: 18px; height: 20px;}
.comm-three li:first-child {margin-left:0px; float:left;}
.comm-three li:first-child a {border: 1px solid #e3e3e3; padding: 0 5px; border-radius: 3px; text-decoration: none;}






/* ADAPTIVE
----------------------------------------------- */
.btn-menu, .btn-menu2, .h-mobs {display:none;}
.side-panel {width:280px; height:100%; overflow-x:hidden; overflow-y:auto; background-color:#f2f6f8;
padding:0 0px; z-index:888; position:fixed; left:-280px; top:0; transition:left .4s; -webkit-transition:left .4s;}
.side-panel.active {left:0;}
.close-overlay {width:100%; height:100%; background-color:rgba(0,0,0,0.5); 
position:fixed; left:0; top:0; z-index:887; display:none;}
.btn-close {cursor:pointer; display:block; left: 280px; top: -40px; position: fixed; z-index: 888;
width:40px; height:40px; line-height:40px; text-align:center; font-size:18px; 
background-color: #454545; color: #fff; transition:top .4s; -webkit-transition:top .4s;}
.btn-close.active {top:0px;}
.side-panel, .side-panel a {}


.ym-card{
    background:#1c1c1c;
    padding:12px;
    border-radius:10px;
    margin-top:20px;
}

.ym-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:10px;
}

.ym-cover{
    width:60px;
    height:60px;
    border-radius:8px;
}

.ym-artist{
    font-size:16px;
    color:#fff;
}

.ym-tracks{
    list-style:none;
    padding:0;
    margin:0 0 10px 0;
}

.ym-tracks li{
    padding:4px 0;
    border-bottom:1px solid #333;
    font-size:13px;
}

.current-track{
    color:#ffdd57;
    font-weight:bold;
}

.ym-button{
    display:block;
    text-align:center;
    background:#ffdd57;
    color:#000;
    padding:6px;
    border-radius:6px;
    text-decoration:none;
    font-size:13px;
    margin-top:5px;
}

.ym-button:hover{
    background:#ffd633;
}


.sc-explicit-badge{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	margin-left:6px;
	font-size:15px;
	line-height:1;
	vertical-align:middle;
}



/* Делаем все нечетные строки белыми (1-я, 3-я и т.д.) */
.soundcharts-list li:nth-child(odd) {
    background-color: #f2f2f2;
    border-radius: 7px;    /* Степень закругления (можно больше/меньше) */
    margin-bottom: 5px;     /* Расстояние между строками, чтобы закругления были видны */
    padding: 10px 10px;     /* Внутренние отступы, чтобы текст не прилипал к краям */
    list-style-type: none;  /* Убираем стандартные точки списка */
}

/* Делаем все четные строки светло-серыми (2-я, 4-я и т.д.) */
.soundcharts-list li:nth-child(even) {
    background-color: #ffffff;
    border-radius: 7px;    /* Степень закругления (можно больше/меньше) */
    margin-bottom: 5px;     /* Расстояние между строками, чтобы закругления были видны */
    padding: 10px 10px;     /* Внутренние отступы, чтобы текст не прилипал к краям */
    list-style-type: none;  /* Убираем стандартные точки списка */
}


.top-artists { 
    list-style: none;     /* Убираем маркеры списка */
    padding: 10px;         /* Отступ внутри блока */
    margin: 0;             /* Убираем внешний отступ */
    background: #454545;    /* Опционально — фон блока */
    border-radius: 8px;     /* Скруглённые углы */
}

.top-artists li {
    display: flex;                 /* Горизонтальное расположение */
    justify-content: space-between; /* Распределяем название и просмотры */
    margin-bottom: 5px;             /* Отступ между элементами */
    padding: 4px 0;                 /* Немного внутреннего отступа */
    border-bottom: 1px solid #333; /* Линия разделителя */
}

.top-artists li:last-child {
    border-bottom: none;             /* Убираем линию у последнего */
}

.top-artists li a {
    color: #fff;                     /* Цвет ссылки */
    text-decoration: none;            /* Убираем подчёркивание */
    font-weight: bold;
}

.top-artists li a:hover {
    color: #ffdd57;                 /* Подсветка при наведении */
    text-decoration: underline;
}

.top-artists li span {
    background: #ffdd57;             /* Подложка для просмотров */
    border-radius: 15px;             /* Скруглённая подложка */
    padding: 2px 8px;
    font-weight: normal;
    color: #000;                     /* Цвет текста внутри подложки */
    min-width: 40px;
    text-align: center;
    font-size: 8px;
}






.soundcharts-list {
    list-style: none;
    padding: 10px;
    margin: 0;
}

.soundcharts-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px; /* Добавили отступы внутри строки */
    margin-bottom: 6px;
    font-size: 14px;
}

.soundcharts-list li a {
    color: #000;
    text-decoration: none;
    display: inline-block;
}

.soundcharts-list li a:hover {
    color: #ffdd57;
    text-decoration: underline;
}

.soundcharts-list li span {
    background: #ffdd57;
    padding: 3px 10px;
    border-radius: 15px;
    font-weight: normal;
    color: #000;
    font-size: 10px;
}


@media screen and (min-width: 1220px) {

.btn-menu {display: inline-block; width: 30px; height: 30px; line-height: 30px; text-align: center; 
cursor: pointer; background-color: #454545; color: #fff; font-size: 14px; border-radius: 50%; 
margin: 0 15px; vertical-align: middle;}

.btn-menu2 {display: inline-block; width: 30px; height: 30px; line-height: 30px; text-align: center; 
cursor: pointer; font-size: 14px; border-radius: 50%; vertical-align: middle;
background-color: #454545; color: #fff;}
}











@media screen and (max-width: 1220px) {
.wrap-center {max-width:1000px;}
.login-box-wr, .h-main, .side-right {display: none;}
.footer-text {width: 100%;}
.footer {background-image: none; padding: 15px 30px;}

.header {height: auto;}
.h-mobs {display: block; padding-top: 3px;}
.btn-menu {display: inline-block; width: 40px; height: 40px; line-height: 40px; text-align: center; 
cursor: pointer; background-color: #454545; color: #fff; font-size: 24px; border-radius: 50%; 
margin: 0 15px; vertical-align: middle;}
/*
@media (max-width: 768px) {
    .btn-menu  {
        width: 20px; height: 20px; line-height: 20px;
    }
}
*/
.login-box-wr, .h-main {display: none; width: 100%; -ms-flex-order: 8;-webkit-order: 8;order: 8;}
.btn-menu2 {display: inline-block; width: 40px; height: 40px; line-height: 40px; text-align: center; 
cursor: pointer; font-size: 24px; border-radius: 50%; vertical-align: middle;
background-color: #454545; color: #fff;}
.is-active .login-box-wr {display: block; text-align: center;}
.is-active .h-main {display: block; text-align: center; background-color: #111; 
	padding-left: 15px; padding-right: 15px;
flex-basis: 100%; -webkit-flex-basis: 100%; -ms-flex-preferred-size: 100%; 
display:-ms-flexbox;display:-webkit-flex;display:flex;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap;
-ms-flex-pack:justify;-webkit-justify-content:space-between;justify-content:space-between;}
#gotop {display: none !important;}
.speedbar {margin-top: 0;}
}

@media screen and (max-width: 950px) {
.wrap-center {max-width:768px;}
.side-left {display: none;}
.cols {display: block;}
.main {padding: 20px 15px;}
.footer {padding: 10px;}
}


/* Список ТОП категорий */
.topcats {
    list-style: none;
    padding: 10px;
    margin: 0;
}

/* Каждый пункт списка */
.topcat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.3s;
}

/* Hover эффект на пункт */
.topcat-item:hover {
    background: #f0f0f0;
}

/* Ссылка на категорию */
.topcat-item .cat-name a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* Кружок с цифрой просмотров и наушниками */
.topcat-item .views-circle {
    display: inline-block;
    background-color: #ffdd57; /* цвет кружка */
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: bold;
    color: #333;
    min-width: 60px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: background 0.3s, transform 0.2s;
}

/* Hover эффект на кружок */
.topcat-item .views-circle:hover {
    background-color: #ffc107;
    transform: scale(1.1);
}



/* Список последних просмотров */
.top30-news {
    list-style:none;
    padding:10px;
    margin:0;
}

.top30-item {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:8px;
    padding:6px 10px;
    border-radius:6px;
    transition: background 0.3s;
}

.top30-item:hover {
    background:#f0f0f0;
}

.top30-item a {
    text-decoration:none;
    color:#333;
    font-weight:500;
}

/* Цифра просмотров с наушниками */
.top30-item .views-circle {
    display:inline-block;
    background:#ffdd57;
    padding:3px 8px;
    border-radius:15px;
    font-weight:bold;
    color:#333;
    min-width:50px;
    text-align:center;
    box-shadow:0 2px 4px rgba(0,0,0,0.1);
    transition:background 0.3s, transform 0.2s;
}

.top30-item .views-circle:hover {
    background:#ffc107;
    transform:scale(1.1);
}







@media screen and (max-width: 760px) {
.wrap-center {max-width:640px;}
.album-item {width: 48%;}
.play-items {width: 100%;}
.play-item {padding-left: 50px;}

.fcols {display: block;}
.fleft {margin: 0 auto 15px auto;}
.ffav {display: none;}
.mrating {position: static; margin: 0 auto; width: 150px; margin-bottom: 15px;}
.fright h1 {text-align: center; padding-right: 0;}
.fdl, .fplay {width: 50%; padding: 0 15px 0 70px;}
.fdl .fa, .fplay .fa {left: 15px;}
.fdl {border-right: 0 !important;}

.comm-three li:not(:first-child) {display:none;}
.dcont button {font-size:12px; padding:0 15px !important;}
.ac-protect {margin-top:0px;}
.comments-tree-list .comments-tree-list {padding-left:0px !important;}
.comments-tree-list .comments-tree-list:before {display:none;}
.mass_comments_action {display:none;}
.sub-title h1 {font-size:18px; line-height:24px;}
}

@media screen and (max-width: 590px) {
.wrap-center {max-width:480px;}
.search-box {width: 100px; width: calc(100% - 150px);}

.comm-one {overflow: hidden; height: 20px; line-height: 20px;}
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {height:300px;}

.ac-soc {position:static;}
.ac-inputs input {width:100%; margin-top:10px;}
.ac-protect {width:100%; float:none; margin:0;}
.ui-dialog {width:100% !important;}
.upop-left, .upop-right {float:none !important; width:100% !important; margin:0; padding:0 20px;}
.upop-left {margin-bottom:10px; text-align:center;}
.ui-dialog-buttonset button {display:block; margin:0 0 5px 0; width:100%;}
#dofullsearch, #searchsuggestions span.seperator {display:none !important;}
.attach .download-link {margin:0 -15px 0 0; float:none; display:block; padding:0 10px;}
.attach-info {float:none;}
}

@media screen and (max-width: 470px) {
.wrap-center22 {max-width:320px;}
.audioplayer-time {display: none;}
.footer {display: block; text-align: center;}
.footer-text {margin-bottom: 15px;}
.sect-title {font-size: 16px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.sect-title-2 {font-size: 22px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.sect-title a {margin-top: 0;}
.play-item {margin-left: -15px; margin-right: -15px;}
.logo {width: 180px;  padding-top: 7px;}

.fdl, .fplay  {padding: 0 0 0 50px; text-align: center; font-size: 12px;}
.finfo li {padding-left: 140px;}
.finfo li span {display: inline-block; width: 110px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;}
.comms-title {display: block; text-align: center;}
.comms-title .button {width: 100%;}
.video-box embed, .video-box object, .video-box video, .video-box iframe, .video-box frame {height:250px;}
}

.frate {padding:5px 10px; height:72px; position: absolute; right: 0; top: -20px; 
border: 1px solid #f2f6f8;}
.fr-likes {width:60px;}
.fr-count {position: relative; width:50px; height:50px; border-radius: 50%; 
background-color:#f2f6f8; box-shadow:inset 0 0 0 5px #e3e3e3;}
.fr-count > div {position: absolute; left:0; top:0; z-index: 1; width: 100%; height: 100%; 
display: block; text-align: center; font-size:16px; padding-top:15px; font-weight:700;}
.fr-count > div div {font:11px Arial, Helvetica, sans-serif; color:#ccc; margin-top:0px; font-weight:400; display: none;}
.fr-votes, #trailer-box {display:none;}
.rate-plus, .rate-minus {cursor:pointer; height:30px; line-height:30px; font-size:12px; text-align:left;}
.rate-plus .fa {color:#9abf17; font-size: 16px;}
.rate-minus .fa {color:#e24264; font-size: 16px;}
.rate-plus:hover, .rate-minus:hover {opacity: 0.6;}

@media screen and (max-width: 760px) {
	.frate {position: static; margin: 0 auto 15px auto; max-width: 250px;}
}


.legal-page-wrap,
.legal-page-wrap * {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.legal-page-wrap *::before,
.legal-page-wrap *::after {
    background: transparent !important;
    background-color: transparent !important;
}

/* === SOUNDCHARTS ROTATOR COMMENTS ON MAIN === */

#scMainCommentsRotator .lcomm {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    margin: 0;
}

#scMainCommentsRotator .lcomm.sc-main-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
    margin-bottom: 10px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}









/* === SOUNDCHARTS COMMENTS UI FINAL === */

/* оболочка кнопки открытия формы */
.comment-toggle-wrap {
    margin-top: 24px;
    position: relative;
}

/* кнопка открыть/скрыть форму */
.comment-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 14px;
    background: #454545;
    border: 1px solid rgba(255,255,255,0.08);
    color: #f5c542;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: all .25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    -webkit-appearance: none;
    appearance: none;
}

.comment-toggle-btn:hover {
    background: #505050;
    color: #ffd86b;
    border-color: rgba(245,197,66,0.35);
    box-shadow: 0 0 12px rgba(245,197,66,0.20);
}

.comment-toggle-btn:active {
    transform: scale(0.98);
}

/* иконка + / - */
.comment-toggle-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
}

.comment-toggle-icon::before,
.comment-toggle-icon::after {
    content: "";
    position: absolute;
    background: currentColor;
}

.comment-toggle-icon::before {
    width: 16px;
    height: 2px;
    top: 7px;
    left: 0;
}

.comment-toggle-icon::after {
    width: 2px;
    height: 16px;
    top: 0;
    left: 7px;
    transition: opacity .25s ease;
}

.comment-toggle-btn.is-open .comment-toggle-icon::after {
    opacity: 0;
}

/* стрелка */
.comment-toggle-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .25s ease;
    margin-left: 2px;
}

.comment-toggle-btn.is-open .comment-toggle-arrow {
    transform: rotate(-135deg);
}

/* скрываем оболочку формы */
.comment-form-shell {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .25s ease, margin-top .25s ease;
    margin-top: 0;
}

.comment-form-shell.is-open {
    max-height: 1200px;
    opacity: 1;
    margin-top: 16px;
}

/* форма комментария */
.add-comment-form {
    display: block;
    padding: 22px;
    border-radius: 18px;
    background: #454545;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 8px 30px rgba(0,0,0,0.20);
    overflow: hidden;
    box-sizing: border-box;
}

/* внутренние контейнеры DLE */
.add-comment-form .add-comm-form,
.add-comment-form #dle-comments-form,
.add-comment-form #add-comm-form,
.add-comment-form .ac-textarea,
.add-comment-form .wseditor,
.add-comment-form .dlecomments-editor {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* textarea */
.add-comment-form textarea,
#dle-comments-form textarea,
#comments {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 180px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #1b1f24;
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    resize: none;
    box-sizing: border-box;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.add-comment-form textarea:focus,
#comments:focus {
    border-color: rgba(245,197,66,0.6);
    box-shadow: none;
    background: #181c20;
}

.add-comment-form ::placeholder,
#comments::placeholder {
    color: rgba(255,255,255,0.45);
}

/* нижняя зона формы */
.add-comment-form .ac-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

/* аватарка */
.add-comment-form .ac-av {
    min-width: 40px;
    min-height: 40px;
}

/* кнопка отправить — жестко перебиваем красные стили темы */
.add-comment-form .ac-submit button,
.add-comment-form button[type="submit"],
.add-comment-form input[type="submit"],
.add-comment-form .bbcodes {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    background: #3f3f3f !important;
    background-image: none !important;
    color: #f5c542 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    cursor: pointer !important;
    box-shadow: none !important;
    text-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* hover кнопки отправить */
.add-comment-form .ac-submit button:hover,
.add-comment-form button[type="submit"]:hover,
.add-comment-form input[type="submit"]:hover,
.add-comment-form .bbcodes:hover {
    background: #4a4a4a !important;
    background-image: none !important;
    color: #ffd86b !important;
    border-color: rgba(245,197,66,0.35) !important;
    box-shadow: 0 0 12px rgba(245,197,66,0.25) !important;
}

/* active кнопки отправить */
.add-comment-form .ac-submit button:active,
.add-comment-form button[type="submit"]:active,
.add-comment-form input[type="submit"]:active,
.add-comment-form .bbcodes:active {
    transform: scale(0.97);
}

/* инпуты и селекты */
.add-comment-form input,
.add-comment-form select {
    max-width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,0.08);
    background: #1b1f24;
    color: #fff;
    padding: 10px 14px;
    box-sizing: border-box;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
}

/* заголовок формы */
.comment-form-title {
    margin-bottom: 14px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

/* защита от горизонтального сдвига */
html, body {
    overflow-x: hidden;
}

/* мобилка */
@media (max-width: 768px) {
    .comment-toggle-btn {
        width: 100%;
        justify-content: center;
    }

    .add-comment-form textarea,
    #dle-comments-form textarea,
    #comments,
    .add-comment-form input,
    .add-comment-form select {
        font-size: 16px !important;
    }

    .add-comment-form {
        padding: 10px;
    }

    .comment-form-title {
        font-size: 10px;
    }
}

.comment-toggle-btn {
    cursor: pointer;
    user-select: none;
}















/* ===== БЛОК ПОХОЖИХ РЕЛИЗОВ ===== */

.artist-similar-releases {
    position: relative;
    margin: 30px 0;
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
}

/* фон как у hero */
.artist-similar-releases::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--artist-bg) center/cover no-repeat;
    filter: blur(40px);
    transform: scale(1.2);
    z-index: 0;
}

.artist-similar-releases::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15,15,15,0.75);
    z-index: 1;
}

.artist-similar-releases > * {
    position: relative;
    z-index: 2;
}

.artist-similar-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.artist-similar-head h2 {
    margin: 0;
    color: #ffffff !important;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.artist-similar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.artist-similar-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    color: #ffffff !important;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s ease;
}

.artist-similar-btn:hover {
    background: rgba(255,255,255,0.24);
}

.artist-similar-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding-bottom: 8px;
}

.artist-similar-track::-webkit-scrollbar {
    height: 8px;
}

.artist-similar-track::-webkit-scrollbar-track {
    background: transparent;
}

.artist-similar-track::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.18);
    border-radius: 20px;
}

.artist-similar-card {
    flex: 0 0 180px;
    display: block;
    text-decoration: none;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 12px;
    color: #ffffff !important;
    transition: transform .25s ease, background .25s ease;
}

.artist-similar-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.artist-similar-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #222;
    margin-bottom: 10px;
}

.artist-similar-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.68);
    transform: scale(1.03);
    transition: transform .25s ease, filter .25s ease;
}

.artist-similar-card:hover .artist-similar-img {
    transform: scale(1.07);
    filter: brightness(0.52);
}

/* hover-слой */
.artist-similar-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    background: linear-gradient(to top, rgba(0,0,0,0.35), rgba(0,0,0,0.12));
}

.artist-similar-card:hover .artist-similar-overlay {
    opacity: 1;
    visibility: visible;
}

.artist-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffd600;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(255,214,0,0.35);
    transform: scale(0.85);
    transition: transform .25s ease;
}

.artist-similar-card:hover .artist-play-btn {
    transform: scale(1);
}

.artist-eq-loader {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.artist-eq-loader span {
    width: 3px;
    height: 8px;
    background: #fff;
    border-radius: 10px;
    animation: artistEq 1s infinite ease-in-out;
}

.artist-eq-loader span:nth-child(2) {
    animation-delay: 0.15s;
}

.artist-eq-loader span:nth-child(3) {
    animation-delay: 0.30s;
}

.artist-eq-loader span:nth-child(4) {
    animation-delay: 0.45s;
}

@keyframes artistEq {
    0%, 100% {
        height: 6px;
        opacity: .65;
    }
    50% {
        height: 18px;
        opacity: 1;
    }
}

/* текст всегда виден */
.artist-similar-info {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 0 !important;
    padding: 0 2px !important;
    background: transparent !important;
}

.artist-similar-title {
    display: block !important;
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    margin: 0 0 4px 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

.artist-similar-artist {
    display: block !important;
    color: #ffffff !important;
    opacity: 1 !important;
    visibility: visible !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
}

@media (max-width: 768px) {
    .artist-similar-card {
        flex: 0 0 145px;
    }

    .artist-play-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .artist-similar-head h2 {
        font-size: 20px;
    }
}







.soundcharts-guide {
    max-width: 900px;
    margin: 0 auto;
    color: #f2f2f2;
    line-height: 1.7;
}

.soundcharts-guide__hero {
    padding: 24px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, #2d3138 0%, #24272d 100%);
}

.soundcharts-guide__hero h1 {
    margin: 0 0 12px;
    font-size: 32px;
    color: #fff;
}

.soundcharts-guide__hero p {
    margin: 0;
    color: rgba(255,255,255,0.88);
}

.soundcharts-guide__section {
    margin-bottom: 18px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
}

.soundcharts-guide__section h2 {
    margin: 0 0 12px;
    font-size: 24px;
    color: #222222;
}

.soundcharts-guide__section p,
.soundcharts-guide__section li {
    color: rgba(255,255,255,0.88);
	 color: #222222;
}

.soundcharts-guide__section ul {
    margin: 12px 0 0 20px;
}

.soundcharts-guide__section--accent {
    background: linear-gradient(180deg, rgba(255,214,0,0.10) 0%, rgba(255,214,0,0.04) 100%);
    border: 1px solid rgba(255,214,0,0.18);
}





/* =========================
   SOUNDCHARTS VIBE
========================= */




/*
.soundcharts-vibe {
    margin: 0;
    padding: 0;
}


.vibe-wizard,
.vibe-results-wrap {
    display: none;
}

.vibe-wizard.active,
.vibe-results-wrap.active {
    display: block;
}



.vibe-wizard {
    width: 100%;
}

.vibe-wizard-box {
    width: 100%;
    max-width: 760px;
    background: #2c2f34;
    border-radius: 22px;
    padding: 26px 22px;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.05);
}



.vibe-step {
    display: none !important;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all .25s ease;
}

.vibe-step.vibe-step-active {
    display: block !important;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.vibe-ai-title,
.vibe-step-title {
    color: #fff;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 10px;
}

.vibe-ai-text p {
    margin: 0 0 10px 0;
    color: #c5cad4;
    font-size: 17px;
    line-height: 1.5;
}

.vibe-step-count {
    color: #8f95a3;
    font-size: 14px;
    margin-bottom: 8px;
}

.vibe-step-note {
    color: #8f95a3;
    font-size: 14px;
    margin-bottom: 16px;
}



.vibe-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.vibe-option {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(255,255,255,0.08);
    background: #23262b;
    color: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
    transition: .18s ease;
    box-shadow: none;
    outline: none;
}


.vibe-option.is-selected,
.vibe-option.active {
    background: rgba(255, 204, 0, 0.18);
    border-color: rgba(255, 204, 0, 0.45);
    color: #fff;
}


@media (hover: hover) and (pointer: fine) {
    .vibe-option:hover {
        border-color: rgba(255, 204, 0, 0.35);
        background: #2d3138;
    }
}


@media (hover: none), (pointer: coarse) {
    .vibe-option:hover,
    .vibe-option:active,
    .vibe-option:focus {
        border-color: rgba(255,255,255,0.08);
        background: #23262b;
        color: #fff;
        outline: none;
        box-shadow: none;
    }

    .vibe-option.is-selected:hover,
    .vibe-option.is-selected:active,
    .vibe-option.is-selected:focus,
    .vibe-option.active:hover,
    .vibe-option.active:active,
    .vibe-option.active:focus {
        background: rgba(255, 204, 0, 0.18);
        border-color: rgba(255, 204, 0, 0.45);
        color: #fff;
    }
}



.vibe-options.vibe-limit {
    animation: vibeShake .35s ease;
}

@keyframes vibeShake {
    0% { transform: translateX(0); }
    15% { transform: translateX(-5px); }
    30% { transform: translateX(5px); }
    45% { transform: translateX(-4px); }
    60% { transform: translateX(4px); }
    75% { transform: translateX(-2px); }
    90% { transform: translateX(2px); }
    100% { transform: translateX(0); }
}



.vibe-step-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.vibe-next-btn,
.vibe-prev-btn,
.vibe-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 13px 20px;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    transition: .18s ease;
    box-shadow: none;
}

.vibe-next-btn,
.vibe-btn {
    background: #ffcc00;
    color: #16181d;
    font-weight: 700;
}

.vibe-next-btn:hover,
.vibe-btn:hover {
    background: #ffd633;
}

.vibe-prev-btn {
    background: #3a3f48;
    color: #fff;
}

.vibe-prev-btn:hover {
    background: #474d57;
}

.vibe-next-btn:active,
.vibe-prev-btn:active,
.vibe-btn:active {
    transform: scale(0.97);
}



.vibe-loader {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.vibe-loader span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffcc00;
    animation: vibeDots 1s infinite ease-in-out;
}

.vibe-loader span:nth-child(2) {
    animation-delay: .15s;
}

.vibe-loader span:nth-child(3) {
    animation-delay: .3s;
}

@keyframes vibeDots {
    0%, 100% {
        transform: scale(0.7);
        opacity: .5;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
}



.vibe-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.vibe-results-head h1 {
    margin: 0;
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    color: #111;
}

.vibe-reset-link {
    font-size: 14px;
    color: #6f7785;
    text-decoration: none;
}

.vibe-reset-link:hover {
    color: #111;
}



.vibe-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vibe-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    border-radius: 18px;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(32, 35, 41, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.vibe-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--vibe-bg);
    background-size: cover;
    background-position: center;
    filter: blur(26px) brightness(0.45);
    transform: scale(1.18);
}

.vibe-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(18,20,24,0.48) 0%,
        rgba(18,20,24,0.62) 45%,
        rgba(18,20,24,0.72) 100%
    );
}

.vibe-card > * {
    position: relative;
    z-index: 2;
}

.vibe-cover {
    position: relative;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    border-radius: 12px;
    overflow: hidden;
}

.vibe-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.vibe-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.42);
    border-radius: 12px;
    transition: background .18s ease;
    pointer-events: none;
}

.vibe-cover:hover .vibe-overlay {
    background: rgba(0, 0, 0, 0.30);
}

.vibe-play-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    transform: translate(-45%, -50%);
    color: #FEDC57;
    font-size: 48px;
	color: #E2BD00;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
    pointer-events: none;
}

.vibe-eq {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    display: none;
    align-items: flex-end;
    justify-content: center;
    gap: 3px;
    width: 22px;
    height: 18px;
    pointer-events: none;
}

.vibe-eq span {
    width: 3px;
    border-radius: 3px;
    background: #FEDC57;
    display: block;
    animation: vibeEq 0.8s infinite ease-in-out;
}

.vibe-eq span:nth-child(1) { height: 6px; animation-delay: 0s; }
.vibe-eq span:nth-child(2) { height: 12px; animation-delay: .12s; }
.vibe-eq span:nth-child(3) { height: 8px; animation-delay: .24s; }
.vibe-eq span:nth-child(4) { height: 14px; animation-delay: .36s; }

.vibe-play {
    position: absolute !important;
    inset: 0 !important;
    z-index: 4 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    max-width: none !important;
    min-height: 100% !important;
    max-height: none !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    outline: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    display: block !important;
    cursor: pointer;
    font-size: 0 !important;
    line-height: 0 !important;
}

.vibe-cover.is-playing .vibe-play-icon {
    display: none;
}

.vibe-cover.is-playing .vibe-eq {
    display: flex;
}

@keyframes vibeEq {
    0%, 100% {
        transform: scaleY(0.55);
        opacity: 0.7;
    }
    50% {
        transform: scaleY(1.15);
        opacity: 1;
    }
}

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

.vibe-title {
    margin: 0 0 4px 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #fff;
}

.vibe-artist {
    margin: 0 0 4px 0;
    font-size: 13px;
    line-height: 1.2;
    color: #d7dbe3;
}
*/
.vibe-score {
    margin: 0;
    font-size: 12px;
    line-height: 1.2;
    color: #E2BD00;
}
/*
.vibe-empty {
    background: #2c2f34;
    color: #c5cad4;
    border-radius: 16px;
    padding: 18px;
    font-size: 16px;
    line-height: 1.5;
}



.vibe-loading {
    background: #2c2f34;
    color: #fff;
    border-radius: 18px;
    padding: 26px 22px;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
}



@media (max-width: 640px) {
    .vibe-wizard-box {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .vibe-ai-title,
    .vibe-step-title {
        font-size: 24px;
    }

    .vibe-ai-text p {
        font-size: 16px;
    }

    .vibe-option {
        width: 100%;
        border-radius: 14px;
        text-align: left;
    }

    .vibe-step-actions {
        flex-direction: column;
    }

    .vibe-next-btn,
    .vibe-prev-btn,
    .vibe-btn {
        width: 100%;
    }

    .vibe-results-head {
        align-items: flex-start;
    }

    .vibe-results-head h1 {
        font-size: 28px;
    }
}


.vibe-title a {
    color: #fff;
    text-decoration: none;
}

.vibe-title a:hover {
    text-decoration: underline;
} 

*/


/*Wiki блок*/

.sc-wiki-btn,
.sc-modal-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:150px;
    padding:10px 18px;
    border-radius:16px;
    position:relative;
    background:rgba(255,255,255,0.06);
    color:#fff;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    cursor:pointer;
    border:none;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,0.28);
}

.sc-wiki-btn::before,
.sc-modal-btn::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:16px;
    padding:1px;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.22),
        rgba(255,255,255,0.08)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
}

.sc-wiki-btn::after,
.sc-modal-btn::after{
    content:"";
    position:absolute;
    inset:1px;
    border-radius:15px;
    box-shadow:inset 0 1px 0 rgba(255,255,255,0.06);
    pointer-events:none;
}

.sc-wiki-btn:hover,
.sc-modal-btn:hover{
    transform:translateY(-1px);
}

.sc-wiki-modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:99999;
    width:100%;
    height:100%;
}

.sc-wiki-modal.is-active{
    display:flex;
    align-items:center;
    justify-content:center;
}

.sc-wiki-modal__overlay{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.78);
    backdrop-filter:blur(6px);
    -webkit-backdrop-filter:blur(6px);
}

.sc-wiki-modal__box{
    position:relative;
    z-index:2;
    width:min(680px,calc(100% - 24px));
    max-width:680px;
    max-height:70vh;
    overflow:hidden;
    overflow-x:hidden;
    margin:60px auto;
    background:#2f3238;
    color:#fff;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
    padding:24px 20px;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
}

.sc-wiki-modal__box::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:18px;
    padding:1px;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.24),
        rgba(255,255,255,0.08)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
}

.sc-wiki-modal__box::after{
    content:"";
    position:absolute;
    inset:1px;
    border-radius:17px;
    box-shadow:inset 0 1px 0 rgba(255,255,255,0.06);
    pointer-events:none;
}

.sc-wiki-modal__close{
    position:absolute;
    top:10px;
    right:12px;
    z-index:5;

    width:36px !important;
    height:36px !important;
    min-width:36px !important;
    min-height:36px !important;

    display:flex !important;
    align-items:center;
    justify-content:center;

    padding:0 !important;
    margin:0 !important;
    border:none !important;
    border-radius:50% !important;

    appearance:none;
    -webkit-appearance:none;

    background:rgba(255,255,255,0.08) !important;
    color:#fff !important;

    font-size:22px !important;
    line-height:1 !important;
    text-align:center !important;

    cursor:pointer;
    box-sizing:border-box;

    transition:background .2s ease, transform .2s ease;
}

.sc-wiki-modal__close:hover{
    background:rgba(255,255,255,0.14) !important;
    transform:scale(1.05);
}

.sc-wiki-modal__close:focus{
    outline:none;
}

.sc-wiki-modal__title{
    font-size:22px;
    font-weight:700;
    line-height:1.3;
    margin:0 0 14px 0;
    padding-right:46px;
    color:#fff;
}

.sc-wiki-modal__content{
    font-size:15px;
    line-height:1.7;
    color:#e8e8e8;
    word-wrap:break-word;
    max-height:50vh;
    overflow-y:auto;
}

.sc-wiki-modal__content p{
    margin:0 0 12px 0;
}

.sc-wiki-modal__content h1,
.sc-wiki-modal__content h2,
.sc-wiki-modal__content h3,
.sc-wiki-modal__content h4{
    color:#fff;
    margin:0 0 12px 0;
    line-height:1.35;
}

.sc-wiki-modal__content ul,
.sc-wiki-modal__content ol{
    margin:0 0 12px 20px;
    padding:0;
}

.sc-wiki-modal__content li{
    margin:0 0 8px 0;
}

.sc-wiki-modal__content img{
    max-width:100%;
    height:auto;
    border-radius:12px;
}

.sc-wiki-modal__content a{
    color:#f3c54b;
    text-decoration:none;
}

.sc-wiki-modal__content a:hover{
    text-decoration:underline;
}

@media (max-width:767px){

    .sc-wiki-btn,
    .sc-modal-btn{
        padding:7px 12px;
        font-size:13px;
        border-radius:9px;
        margin-top:8px;
    }

    .sc-wiki-modal{
        display:none;
        align-items:center;
        justify-content:center;
    }

    .sc-wiki-modal.is-active{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .sc-wiki-modal__overlay{
        background:rgba(0,0,0,.62);
        backdrop-filter:blur(4px);
        -webkit-backdrop-filter:blur(4px);
    }

    .sc-wiki-modal__box{
        width:calc(100% - 24px);
        max-width:calc(100% - 24px);
        max-height:72vh;
        margin:0;
        padding:18px 16px;
        border-radius:20px;
        background:#2f3238;
        box-shadow:0 12px 32px rgba(0,0,0,.38);
        overflow:hidden;
        box-sizing:border-box;
    }

  .sc-wiki-modal__box::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    padding:1px;
    background:linear-gradient(
        180deg,
        rgba(255,255,255,0.24),
        rgba(255,255,255,0.08)
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
}

.sc-wiki-modal__box::after{
    content:"";
    position:absolute;
    inset:1px;
    border-radius:19px;
    box-shadow:inset 0 1px 0 rgba(255,255,255,0.06);
    pointer-events:none;
}

    .sc-wiki-modal__title{
        font-size:18px;
        line-height:1.3;
        margin:0 0 12px 0;
        padding-right:42px;
    }

    .sc-wiki-modal__content{
        font-size:14px;
        line-height:1.6;
        max-height:52vh;
        overflow-y:auto;
        overflow-x:hidden;
        padding-right:4px;
        box-sizing:border-box;
        word-break:break-word;
    }

.sc-wiki-modal__close{
    top:10px;
    right:10px;
    z-index:5;

    width:32px !important;
    height:32px !important;
    min-width:32px !important;
    min-height:32px !important;

    display:flex !important;
    align-items:center;
    justify-content:center;

    padding:0 !important;
    margin:0 !important;
    border:none !important;
    border-radius:50% !important;

    appearance:none;
    -webkit-appearance:none;

    background:rgba(255,255,255,.08) !important;
    color:#fff !important;

    font-size:20px !important;
    line-height:1 !important;
    text-align:center !important;

    box-sizing:border-box;
}

    .sc-song-lyrics-text{
        white-space:pre-line;
    }
}


.sc-vline{
border:none;
    height:1px;
    width:100%;
    margin:5px 0;
    position:relative;

    background:linear-gradient(
        to right,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.25),
        rgba(255,255,255,0.02)
    );

    box-shadow:
        0 0 8px rgba(255,255,255,0.05);

}


/* =========================
   SPOILER
========================= */
/*
.sc-spoiler {
    margin: 18px 0 26px;
    border-radius: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
}

.sc-spoiler__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #111;
    background: rgba(255,255,255,.03);
    transition: all .25s ease;
}

.sc-spoiler__header:hover {
    background: rgba(255,255,255,.06);
}

.sc-spoiler__icon {
    flex: 0 0 auto;
    transition: transform .3s ease;
    font-size: 20px;
    line-height: 1;
    opacity: .8;
}

.sc-spoiler.active .sc-spoiler__icon {
    transform: rotate(180deg);
}

.sc-spoiler__content {
    height: 0;
    overflow: hidden;
    transition: height .42s ease;
    will-change: height;
}

.sc-spoiler__inner {
    padding-top: 8px;
}


/* =========================
   ARTIST STATS BLOCK
========================= */
/*
.sc-artist-stats {
    margin: 24px 0 34px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, #34383e 0%, #2c2f34 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.04);
}

.sc-artist-stats__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.sc-artist-stats__title {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.sc-artist-stats__subtitle {
    font-size: 14px;
    color: #bdbdbd;
}

.sc-artist-stats__trend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.sc-artist-stats__trend-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    background: rgba(255,255,255,.08);
}

.sc-artist-stats__trend--up {
    background: rgba(35, 140, 74, 0.18);
    color: #85f0a8;
}

.sc-artist-stats__trend--down {
    background: rgba(160, 50, 50, 0.18);
    color: #ff9a9a;
}

.sc-artist-stats__trend--neutral {
    background: rgba(255,255,255,0.08);
    color: #d8d8d8;
}

.sc-artist-stats__meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.sc-artist-stats__meta-item {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.03);
}

.sc-artist-stats__meta-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #bdbdbd;
}

.sc-artist-stats__meta-item strong {
    font-size: 18px;
    color: #ffd54a;
}

.sc-artist-stats__meta-item small {
    font-size: 12px;
    color: #cfcfcf;
    font-weight: 400;
}

.sc-artist-stats__chart-wrap {
    position: relative;
    height: 320px;
}

.sc-artist-stats__note {
    margin-top: 14px;
    font-size: 13px;
    color: #bdbdbd;
}


/* =========================
   TABLET
========================= */
/*
@media (max-width: 980px) {
    .sc-artist-stats__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================
   MOBILE
========================= */
/*
@media (max-width: 767px) {
    .sc-spoiler {
        margin: 14px 0 22px;
        border-radius: 16px;
    }

    .sc-spoiler__header {
        font-size: 14px;
        padding: 14px 16px;
    }

    .sc-spoiler__icon {
        font-size: 18px;
    }

    .sc-artist-stats {
        margin: 18px 0 28px;
        padding: 16px;
        border-radius: 18px;
    }

    .sc-artist-stats__top {
        margin-bottom: 14px;
    }

    .sc-artist-stats__title {
        font-size: 18px;
        line-height: 1.15;
    }

    .sc-artist-stats__subtitle {
        font-size: 13px;
    }

    .sc-artist-stats__meta {
        display: none;
    }

    .sc-artist-stats__chart-wrap {
        height: 240px;
    }

    .sc-artist-stats__trend {
        font-size: 13px;
        padding: 8px 12px;
        white-space: normal;
        line-height: 1.25;
    }

    .sc-artist-stats__trend-icon {
        width: 20px;
        height: 20px;
        font-size: 13px;
        flex: 0 0 20px;
    }

    .sc-artist-stats__note {
        margin-top: 10px;
        font-size: 12px;
    }
}

*/

/* =========================
SPOILER
========================= */

.sc-spoiler {
    margin: 18px 0 26px;
    border-radius: 20px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.06);
}

.sc-spoiler__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #111;
    background: rgba(255,255,255,.03);
    transition: all .25s ease;
}

.sc-spoiler__header:hover {
    background: rgba(255,255,255,.06);
}

.sc-spoiler__icon {
    flex: 0 0 auto;
    transition: transform .3s ease;
    font-size: 20px;
    line-height: 1;
    opacity: .8;
}

.sc-spoiler.active .sc-spoiler__icon {
    transform: rotate(180deg);
}

.sc-spoiler__content {
    height: 0;
    overflow: hidden;
    transition: height .42s ease;
    will-change: height;
}

.sc-spoiler__inner {
    padding-top: 8px;
}


/* =========================
ARTIST STATS BLOCK
========================= */

.sc-artist-stats {
    margin: 24px 0 34px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, #34383e 0%, #2c2f34 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.04);
}

.sc-artist-stats__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.sc-artist-stats__title {
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 4px;
    color: #fff;
}

.sc-artist-stats__subtitle {
    font-size: 14px;
    color: #bdbdbd;
}

.sc-artist-stats__trend {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.sc-artist-stats__trend-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    background: rgba(255,255,255,.08);
}

.sc-artist-stats__trend--up {
    background: rgba(35, 140, 74, 0.18);
    color: #85f0a8;
}

.sc-artist-stats__trend--down {
    background: rgba(160, 50, 50, 0.18);
    color: #ff9a9a;
}

.sc-artist-stats__trend--neutral {
    background: rgba(255,255,255,0.08);
    color: #d8d8d8;
}

.sc-artist-stats__meta {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.sc-artist-stats__meta-item {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.03);
}

.sc-artist-stats__meta-label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    color: #bdbdbd;
}

.sc-artist-stats__meta-item strong {
    font-size: 18px;
    color: #ffd54a;
}

.sc-artist-stats__meta-item small {
    font-size: 12px;
    color: #cfcfcf;
    font-weight: 400;
}

.sc-artist-stats__chart-wrap {
    position: relative;
    height: 320px;
}

.sc-artist-stats__note {
    margin-top: 14px;
    font-size: 13px;
    color: #bdbdbd;
}


/* =========================
TABLET
========================= */

@media (max-width: 980px) {
    .sc-artist-stats__meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* =========================
MOBILE
========================= */

@media (max-width: 767px) {
    .sc-spoiler {
        margin: 14px 0 22px;
        border-radius: 16px;
    }

    .sc-spoiler__header {
        font-size: 14px;
        padding: 14px 16px;
    }

    .sc-spoiler__icon {
        font-size: 18px;
    }

    .sc-artist-stats {
        margin: 18px 0 28px;
        padding: 16px;
        border-radius: 18px;
    }

    .sc-artist-stats__top {
        margin-bottom: 14px;
    }

    .sc-artist-stats__title {
        font-size: 18px;
        line-height: 1.15;
    }

    .sc-artist-stats__subtitle {
        font-size: 13px;
    }

    .sc-artist-stats__meta {
        display: none;
    }

    .sc-artist-stats__chart-wrap {
        height: 240px;
    }

    .sc-artist-stats__trend {
        font-size: 13px;
        padding: 8px 12px;
        white-space: normal;
        line-height: 1.25;
    }

    .sc-artist-stats__trend-icon {
        width: 20px;
        height: 20px;
        font-size: 13px;
        flex: 0 0 20px;
    }

    .sc-artist-stats__note {
        margin-top: 10px;
        font-size: 12px;
    }
}




/*ШАПКА АРТИСТА 26.03.2026 */

.sc-artist-hero {
    position: relative;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 34px 36px 5px 36px;
    margin: 0 0 0px;
    border-radius: 18px;
    background: linear-gradient(to top, #ffffff 0%, #f8fafb 40%, #dce1e4 100%);
    overflow: hidden;
}

.sc-artist-hero__media {
    flex: 0 0 180px;
    position: relative;
    z-index: 2;
}

.sc-artist-hero__cover {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    background: #ddd;
    box-shadow: 0 8px 30px rgba(0,0,0,.10);
}

.sc-artist-hero__cover-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.sc-artist-hero__content {
    position: relative;
    z-index: 2;
    min-width: 0;
    flex: 1;
}

.sc-artist-hero__label {
    font-size: 18px;
    line-height: 1.2;
    color: #7a7a7a;
    margin-bottom: 8px;
    font-weight: 500;
}

.sc-artist-hero__title {
    margin: 0 0 14px;
    font-size: 64px;
    line-height: .95;
    font-weight: 800;
    color: #111;
    letter-spacing: -1.5px;
}

.sc-artist-hero__stats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 35px;
    padding: 0 16px;
    border-radius: 999px;
    background: #FFDD57;
    color: #1c1c1c;
   
    margin-bottom: 22px;
}

.sc-artist-hero__stats-icon {
    font-size: 15px;
    line-height: 1;
}

.sc-artist-hero__stats-text {
    line-height: 1;
}

.sc-artist-hero__social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

/* Планшет */
@media (max-width: 980px) {
    .sc-artist-hero {
        gap: 24px;
        padding: 26px 24px;
    }

    .sc-artist-hero__media {
        flex: 0 0 140px;
    }

    .sc-artist-hero__cover {
        width: 140px;
        height: 140px;
    }

    .sc-artist-hero__title {
        font-size: 46px;
    }

   /* .sc-artist-hero__stats {
        font-size: 18px;
    }*/
}

/* Мобильная версия */
@media (max-width: 767px) {
    .sc-artist-hero {
        display: block;
        position: relative;
        min-height: auto;
        padding: 0;
        margin: 0 0 0px;
       border-radius: 30px 30px 0 0;
     
        aspect-ratio: 3 / 4;
        overflow: hidden;
    }

    .sc-artist-hero__media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        flex: none;
        z-index: 1;
    }

    .sc-artist-hero__cover {
        width: 100%;
        height: 100%;
        border-radius: 30px 30px 0 0;
        box-shadow: none;
        
    }

    .sc-artist-hero__cover-img {
        width: 100%;
        height: 100%;
		border-radius: 30px 30px 0 0;
        display: block;
        object-fit: cover;
        filter: brightness(.85);
      
    }

.sc-artist-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1.000) 0%,
    rgba(255, 255, 255, 0.965) 8.1%,
    rgba(255, 255, 255, 0.880) 15.5%,
    rgba(255, 255, 255, 0.730) 22.5%,
    rgba(255, 255, 255, 0.540) 29.0%,
    rgba(255, 255, 255, 0.380) 35.3%,
    rgba(255, 255, 255, 0.230) 41.2%,
    rgba(255, 255, 255, 0.110) 47.1%,
    rgba(255, 255, 255, 0.000) 53.0%
);
}

    .sc-artist-hero__content {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 20px;
        z-index: 3;
        padding: 0 18px;
        text-align: center;
    }

    .sc-artist-hero__label {
        display: none;
    }

    .sc-artist-hero__title {
        margin: 0 0 10px;
        color: #fff;
        font-size: 42px;
        -webkit-text-stroke: 1px #000;
        line-height: .95;
        letter-spacing: -1px;
          
    }

    .sc-artist-hero__stats {
        margin: 0 auto 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        padding: 0;
        min-height: auto;
        color: #fff;
          
   -webkit-text-stroke: 0.5px #000;
        font-size: 16px;
        font-weight: 600;
    }

    .sc-artist-hero__stats-icon {
        font-size: 16px;
    }

    .sc-artist-hero__social {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }


}

@media (max-width: 480px) {
    .sc-artist-hero {
        aspect-ratio: 1 / 1;
    }

    .sc-artist-hero__content {
        bottom: 16px;
        padding: 0 14px;
    }

    .sc-artist-hero__title {
        font-size: 34px;
        margin-bottom: 8px;
    }

    .sc-artist-hero__stats {
        margin-bottom: 16px;
        font-size: 15px;
    }


}


.sc-review-card {
    margin: 0 0 18px;
}

.sc-review-card__inner {
    background: #fdfdff;
    border-radius: 28px;
    padding: 24px 22px 22px;
   box-shadow: 
    0 2px 8px rgba(0,0,0,0.10);
   
}

.sc-review-card__head {
    margin-bottom: 8px;
}

.sc-review-card__author {
    font-size: 16px;
    line-height: 1.15;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.4px;
    word-break: break-word;
}

.sc-review-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.3;
    color: #454545;
}

.sc-review-card__dot {
    opacity: .8;
}

.sc-review-card__date,
.sc-review-card__group {
    color: #8e8e93;
}

.sc-review-card__text {
    font-size: 13px;
    line-height: 1.5;
    color: #6d6d72;
    word-break: break-word;
}

.sc-review-card__text p {
    margin: 0 0 10px;
}

.sc-review-card__text p:last-child {
    margin-bottom: 0;
}

.sc-review-card__signature {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 13px;
    line-height: 1.5;
    color: #8e8e93;
    font-style: italic;
}

.sc-review-card__admin {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #666;
}

.sc-review-card__admin a {
    color: #111;
    text-decoration: none;
}

.sc-review-card__admin a:hover {
    text-decoration: underline;
}

.sc-review-card__ip {
    color: #707070;
}

@media (max-width: 767px) {
    .sc-review-card__inner {
        border-radius: 24px;
        padding: 20px 18px 18px;
      
    }

    .sc-review-card__author {
        font-size: 16px;
    }

    .sc-review-card__meta {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .sc-review-card__text {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .comments {
        display: none !important;
    }
}



.sc-track-vibe-smart-btn {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    width: 100%;
    margin: 7px 0 10px;
    padding: 20px 18px;

    border-radius: 18px;
    text-decoration: none;

    background: linear-gradient(180deg, #2d3138 0%, #24272d 100%);
    border: 1px solid rgba(255,255,255,0.06);

    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* ✨ переливающийся слой */
.sc-track-vibe-smart-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 200%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.08) 40%,
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0.08) 60%,
        transparent 100%
    );

    transform: skewX(-20deg);
    animation: scShimmer 2s infinite;
}

/* сама анимация */
@keyframes scShimmer {
    0% {
        left: -150%;
    }
    100% {
        left: 150%;
    }
}

.sc-track-vibe-smart-btn__label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,214,0,0.88);
}

.sc-track-vibe-smart-btn__title {
    display: block;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    word-break: break-word;
}

.sc-track-vibe-smart-btn__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.sc-track-vibe-smart-btn__badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    line-height: 1;
}

.artist-vibelink-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    padding: 10px 16px;
    border-radius: 12px;
    background: #f0c419;
    color: #111;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all .2s ease;
}

.artist-vibelink-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,.15);
}

h2 {
   
    font-family: GothamProBold, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.25;
    font-weight: normal;
    letter-spacing: 0.2px;
}

/* 12 апрель*/
.sc-artist-bio{
    margin:20px 0;
    padding:18px;
    background:#2f3238;
    border:1px solid #3a4049;
    border-radius:16px;
}

.sc-artist-bio h2{
    margin:0 0 12px 0;
    font-size:18px;
    color:#fff;
}

.sc-artist-bio__text{
    font-size:14px;
    line-height:1.7;
    color:#e8e8e8;
    white-space:pre-line;
}


.sc-artist-links-panel{
    margin:-8px 0 20px 0;
    padding:16px 18px 20px 18px;
    border-radius:0 0 16px 16px;
    position:relative;
    box-shadow:none;
    overflow:hidden;

    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,0) 28%,
            rgba(0,0,0,0.03) 48%,
            rgba(0,0,0,0.07) 72%,
            rgba(0,0,0,0.10) 100%
        ) left top / 1px 100% no-repeat,

        linear-gradient(
            to bottom,
            rgba(0,0,0,0) 0%,
            rgba(0,0,0,0) 28%,
            rgba(0,0,0,0.03) 48%,
            rgba(0,0,0,0.07) 72%,
            rgba(0,0,0,0.10) 100%
        ) right top / 1px 100% no-repeat,

        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,0.05) 14%,
            rgba(0,0,0,0.12) 50%,
            rgba(0,0,0,0.05) 86%,
            transparent 100%
        ) left calc(100% - 1px) / 100% 2px no-repeat,

        #fff;
}

.sc-artist-links-title{
    font-size:12px;
    font-weight:700;
    color:#8d8d8d;
    margin-bottom:8px;
    letter-spacing:.5px;
    text-transform:uppercase;
}

.sc-artist-links-list{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
}

.sc-artist-links-list a{
    color:#111;
    font-size:14px;
    font-weight:700;
    text-decoration:none;
    transition:color .2s ease;
}

.sc-artist-links-list a:hover{
    color:#f3c54b;
}

.sc-sep{
    width:1px;
    height:16px;
    display:inline-block;
    margin:0 2px;
    background:linear-gradient(
        to bottom,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.08) 30%,
        rgba(0,0,0,0.18) 50%,
        rgba(0,0,0,0.08) 70%,
        rgba(0,0,0,0) 100%
    );
}

.sc-artist-brand{
    padding:4px 10px;
    background:#111;
    color:#f3c54b;
    border-radius:8px;
    font-size:13px;
    font-weight:700;
}

.artist-header{
    border-bottom-left-radius:0;
    border-bottom-right-radius:0;
}