.navigation-overlay {
    background-color: rgba(17, 17, 17, 0.5);
}

.navigation-overlay.sticky {
    background-color: var(--gray12);
}

.scroll-down {
    font-size: 14px;
    width: 32px;
    height: 32px;
    background-color: rgba(255,255,255,.2);
    -webkit-border-radius: var(--radius-full);
    -moz-border-radius: var(--radius-full);
    border-radius: var(--radius-full);
    text-align: center;
    line-height: 32px;
    z-index: 50 !important;
    position: absolute;
    bottom: 40px;
    left: 50%;
    margin-left: -16px;
}

.scroll-down a {
    line-height: 36px;
    position: relative;
    z-index: 50 !important;
}

@-webkit-keyframes scroll-down-icon {
    0%{ bottom: 2px; }
    50%{ bottom: 7px; }
    100%{ bottom: 2px; }
}
@-moz-keyframes scroll-down-icon {
    0%{ bottom: 2px; }
    50%{ bottom: 7px; }
    100%{ bottom: 2px; }
}
@-o-keyframes scroll-down-icon {
    0%{ bottom: 2px; }
    50%{ bottom: 7px; }
    100%{ bottom: 2px; }
}
@keyframes scroll-down-icon {
    0%{ bottom: 2px; }
    50%{ bottom: 7px; }
    100%{ bottom: 2px; }
}

.scroll-down i {
    color: var(--white);
    -webkit-animation: scroll-down-icon 1s infinite;
    -moz-animation: scroll-down-icon 1s infinite;
    -o-animation: scroll-down-icon 1s infinite;
    animation: scroll-down-icon 1s infinite;
    position: absolute;
    left: 11px;
}

.clearfix {
    zoom: 1;
}

.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: '';
}

.clearfix:after {
    clear: both;
}

.last {
    margin-bottom: 0 !important;
}

.intro-heading {
    font-size: 28px;
    margin-bottom: 40px;
}

.heading-frame {
    padding: 38px 50px;
    border: 5px solid var(--gray12);
    display: inline-block;
}

.intro-text {
    font-size: 17px;
    line-height: 32px;
    margin-bottom: 50px;
}

.result-box {
    padding: 130px 0;
}

.result-box-first {
    background-color: var(--gray12);
}

.result-box-second {
    background-color: var(--gray11);
}

.result-box-third {
    background-color: var(--gray10);
}

.result-box-col {
    padding: 0;
}

.result-wrap {
    width: 230px;
    margin: 0 auto;
}

.result-wrap i {
    font-size: 55px;
    color: var(--white);
    float: left;
    margin-top: 3px;
}

.statistic span {
    font-size: 36px;
    color: var(--white);
    display: block;
    line-height: 1;
    margin-bottom: 9px;
    margin-left: 20px;
    float: left;
}

.statistic span.counter-text {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--gray4);
    margin-bottom: 0;
}

.service-item-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 96%;
    background-color: var(--white);
    padding: 40px 40px;
    margin-bottom: 30px;
}

.service-item-box h3 {
    font-size: 15px;
    margin-bottom: 21px;
}

.service-item-box>a :first-child {
    display: inline-block;
    margin-bottom: 27px;
}

.service-item-box i {
    margin-bottom: 27px;
    display: block;
    font-size: 24px;
    align-content: center;
}

.hi-icon {
    display: inline-block;
    font-size: 0px;
    /* cursor: pointer; */
    width: 70px;
    height: 70px;
    -webkit-border-radius: var(--radius-full);
    border-radius: var(--radius-full);
    text-align: center;
    position: relative;
    z-index: 1;
}

.hi-icon:after {
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-border-radius: var(--radius-full);
    border-radius: var(--radius-full);
    content: '';
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.icon-effect-1 .hi-icon {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    -webkit-transition: background 0.2s, color 0.2s;
    -moz-transition: background 0.2s, color 0.2s;
    -ms-transition: background 0.2s, color 0.2s;
    -o-transition: background 0.2s, color 0.2s;
    transition: background 0.2s, color 0.2s;
}

.icon-effect-1 .hi-icon:after {
    top: -5px;
    left: -5px;
    padding: 5px;
    -webkit-box-shadow: 0 0 0 2px var(--gray12);
    -moz-box-shadow: 0 0 0 2px var(--gray12);
    -ms-box-shadow: 0 0 0 2px var(--gray12);
    box-shadow: 0 0 0 2px var(--gray12);
    -webkit-transition: transform 0.2s, opacity 0.2s;
    -moz-transition: transform 0.2s, opacity 0.2s;
    -ms-transition: transform 0.2s, opacity 0.2s;
    -o-transition: transform 0.2s, opacity 0.2s;
    transition: transform 0.2s, opacity 0.2s;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
}

.icon-effect-1 .hi-icon:hover {
    background: var(--gray12);
    color: var(--white);
    border-color: transparent;
}

.icon-effect-1 .hi-icon:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.our-team {
    padding-bottom: 0;
}

.our-team .team-row {
    margin-left: -40px;
    margin-right: -40px;
}

.our-team .team-wrap {
    padding: 0 40px;
}

.team-img img {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
    width: 100%;
}

.team-member,
.team-img {
    position: relative;
    overflow: hidden;
}

.team-title {
    margin: 30px 0 7px;
}

.about-us {
    padding-top: 110px;
}

.about-description {
    margin-top: 30px;
}

.about-description h4,
.about-description p:first-of-type {
    margin-bottom: 15px;
}

.seo-spoiler {
    position: relative;
}

.seo-spoiler-content {
    position: relative;
    max-height: 0;
    opacity: 0.2;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.seo-spoiler:not(.is-open) .seo-spoiler-content::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--white));
}

.bg-light .seo-spoiler:not(.is-open) .seo-spoiler-content::after,
.from-blog .seo-spoiler:not(.is-open) .seo-spoiler-content::after {
    background: linear-gradient(to bottom, rgba(249, 249, 249, 0), #f9f9f9);
}

.seo-spoiler.is-open .seo-spoiler-content {
    opacity: 1;
}

.seo-spoiler-toggle {
    margin-top: 6px;
    margin-bottom: 12px;
    padding: 9px 16px;
    border: 2px solid var(--gray2);
    border-radius: var(--radius-lg);
    background-color: transparent;
    color: var(--gray9);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.seo-spoiler-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.seo-spoiler-toggle::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.seo-spoiler-toggle[aria-expanded='true']::after {
    transform: rotate(-135deg) translateY(-1px);
}

.seo-spoiler-toggle:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.row.mt-minus-30 {
    margin-top: -30px;
}

.owl-blog>p {
    color: var(--gray9);
    margin-bottom: 40px;
}

.testimonial-text {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.parallax-testimonials .bottom-line:after {
    border-color: var(--white);
}

.testimonial-text {
    font-size: 24px;
    line-height: 39px;
    color: var(--white);
    font-style: italic;
    margin: 30px 0;
}

.testimonial i {
    font-size: 28px;
    color: var(--white);
}

.testimonial span,
.testimonial h6 {
    display: block;
    color: var(--white);
}

.testimonial span {
    font-size: 13px;
}

.testimonial h6 {
    font-size: 13px;
    margin-bottom: 5px;
}

.parallax-testimonials .owl-pagination {
    position: relative;
    margin-top: 50px;
}

.parallax-testimonials .owl-carousel {
    position: static;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-right: 1px solid var(--gray1);
    border-bottom: 1px solid var(--gray1);
}

.client-logo:nth-of-type(3n) {
    border-right: none;
}

.client-logo:nth-of-type(n+4) {
    border-bottom: none;
}

.client-logo img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
}

.owl-pagination {
    position: absolute;
    left: 0;
    display: block;
    text-align: center;
    width: 100%;
}

.owl-buttons {
    position: static;
}

.owl-prev,
.owl-next {
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -23px;
    text-align: center;
    line-height: 46px;
    z-index: 10;
    width: 46px;
    height: 46px;
    background-color: var(--white);
    opacity: 0;
    -webkit-transition: var(--transition-normal);
    -moz-transition: var(--transition-normal);
    -ms-transition: var(--transition-normal);
    -o-transition: var(--transition-normal);
    transition: var(--transition-normal);
}

.owl-prev:hover i,
.owl-next:hover i {
    color: var(--primary);
}

.owl-prev {
    left: -40px;
}

.owl-next {
    right: -40px;
}

#owl-slider-one-img:hover .owl-prev,
#owl-slider-small-img:hover .owl-prev {
    opacity: 1;
    left: 0;
}

#owl-slider-one-img:hover .owl-next,
#owl-slider-small-img:hover .owl-next {
    opacity: 1;
    right: 0;
}

.owl-page {
    display: inline-block;
    padding: 6px 6px;
    position: relative;
}

.owl-page span {
    display: block;
    position: relative;
    width: 10px;
    height: 10px;
    opacity: 0.8;
    -webkit-border-radius: var(--radius-lg);
    border-radius: var(--radius-lg);
    background: transparent;
    z-index: 100;
    border: 2px solid var(--white);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.owl-page span:hover {
    opacity: 1;
}

.owl-theme .owl-controls .owl-page.active span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0;
    opacity: 1;
    background: var(--white);
}

/*
 *  Core Owl Carousel CSS File
 *  v1.3.3
 */
.owl-carousel .owl-wrapper:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel,.owl-carousel .owl-wrapper{display:none;position:relative}.owl-carousel{width:100%;-ms-touch-action:pan-y;touch-action:pan-y}.owl-carousel .owl-wrapper-outer{overflow:hidden;position:relative;width:100%;z-index:4}.owl-carousel .owl-wrapper-outer.autoHeight{-webkit-transition:height .5s ease-in-out;-moz-transition:height .5s ease-in-out;-ms-transition:height .5s ease-in-out;-o-transition:height .5s ease-in-out;transition:height .5s ease-in-out}.owl-carousel .owl-item{float:left}.owl-controls .owl-buttons div,.owl-controls .owl-page{cursor:pointer}.owl-controls{-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.grabbing{cursor:move}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.owl-origin{-webkit-perspective:1200px;-webkit-perspective-origin-x:50%;-webkit-perspective-origin-y:50%;-moz-perspective:1200px;-moz-perspective-origin-x:50%;-moz-perspective-origin-y:50%;perspective:1200px}.owl-fade-out{z-index:10;-webkit-animation:fadeOut .7s both ease;-moz-animation:fadeOut .7s both ease;animation:fadeOut .7s both ease}.owl-fade-in{-webkit-animation:fadeIn .7s both ease;-moz-animation:fadeIn .7s both ease;animation:fadeIn .7s both ease}.owl-backSlide-out{-webkit-animation:backSlideOut 1s both ease;-moz-animation:backSlideOut 1s both ease;animation:backSlideOut 1s both ease}.owl-backSlide-in{-webkit-animation:backSlideIn 1s both ease;-moz-animation:backSlideIn 1s both ease;animation:backSlideIn 1s both ease}.owl-goDown-out{-webkit-animation:scaleToFade .7s ease both;-moz-animation:scaleToFade .7s ease both;animation:scaleToFade .7s ease both}.owl-goDown-in{-webkit-animation:goDown .6s ease both;-moz-animation:goDown .6s ease both;animation:goDown .6s ease both}.owl-fadeUp-in{-webkit-animation:scaleUpFrom .5s ease both;-moz-animation:scaleUpFrom .5s ease both;animation:scaleUpFrom .5s ease both}.owl-fadeUp-out{-webkit-animation:scaleUpTo .5s ease both;-moz-animation:scaleUpTo .5s ease both;animation:scaleUpTo .5s ease both}@-webkit-keyframes empty{0%{opacity:1}}@-moz-keyframes empty{0%{opacity:1}}@keyframes empty{0%{opacity:1}}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-moz-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes fadeIn{0%{opacity:0}100%{opacity:1}}@-webkit-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@-moz-keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}@-webkit-keyframes backSlideOut{25%{opacity:.5;-webkit-transform:translateZ(-500px)}100%,75%{opacity:.5;-webkit-transform:translateZ(-500px) translateX(-200%)}}@-moz-keyframes backSlideOut{25%{opacity:.5;-moz-transform:translateZ(-500px)}100%,75%{opacity:.5;-moz-transform:translateZ(-500px) translateX(-200%)}}@keyframes backSlideOut{25%{opacity:.5;transform:translateZ(-500px)}100%,75%{opacity:.5;transform:translateZ(-500px) translateX(-200%)}}@-webkit-keyframes backSlideIn{0%,25%{opacity:.5;-webkit-transform:translateZ(-500px) translateX(200%)}75%{opacity:.5;-webkit-transform:translateZ(-500px)}100%{opacity:1;-webkit-transform:translateZ(0) translateX(0)}}@-moz-keyframes backSlideIn{0%,25%{opacity:.5;-moz-transform:translateZ(-500px) translateX(200%)}75%{opacity:.5;-moz-transform:translateZ(-500px)}100%{opacity:1;-moz-transform:translateZ(0) translateX(0)}}@keyframes backSlideIn{0%,25%{opacity:.5;transform:translateZ(-500px) translateX(200%)}75%{opacity:.5;transform:translateZ(-500px)}100%{opacity:1;transform:translateZ(0) translateX(0)}}@-webkit-keyframes scaleToFade{to{opacity:0;-webkit-transform:scale(.8)}}@-moz-keyframes scaleToFade{to{opacity:0;-moz-transform:scale(.8)}}@keyframes scaleToFade{to{opacity:0;transform:scale(.8)}}@-webkit-keyframes goDown{from{-webkit-transform:translateY(-100%)}}@-moz-keyframes goDown{from{-moz-transform:translateY(-100%)}}@keyframes goDown{from{transform:translateY(-100%)}}@-webkit-keyframes scaleUpFrom{from{opacity:0;-webkit-transform:scale(1.5)}}@-moz-keyframes scaleUpFrom{from{opacity:0;-moz-transform:scale(1.5)}}@keyframes scaleUpFrom{from{opacity:0;transform:scale(1.5)}}@-webkit-keyframes scaleUpTo{to{opacity:0;-webkit-transform:scale(1.5)}}@-moz-keyframes scaleUpTo{to{opacity:0;-moz-transform:scale(1.5)}}@keyframes scaleUpTo{to{opacity:0;transform:scale(1.5)}}

.hero-wrap {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    background-attachment: scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-holder {
    display: table;
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-message {
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    width: 100%;
    text-align: center;
}

.hero-message h1 {
    color: var(--white);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
}

.hero-subtitle {
    text-transform: none;
    font-weight: normal;
    color: var(--white);
    line-height: 1.5;
    font-size: 20px;
    max-width: 800px;
    margin: 24px auto 0;
}

.buttons-holder {
    margin-top: 30px;
}

.buttons-holder>a {
    margin: 5px;
}

.buttons-holder>a:last-child {
    width: 166.44px;
}

.hero-message.text-rotator h1 {
    font-size: 70px;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

/* Animate.css - http://daneden.me/animate
Nick Pettit - https://github.com/nickpettit/glide */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*-------------------------------------------------------*/
/* Home Video Bg
/*-------------------------------------------------------*/
.container-full-height {
    height: 100vh;
}

.video-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    pointer-events: none;
}

/* Стили для аудиоплеера */
.page-services__player {
    background-color: rgba(17, 17, 17, 0.8);
    border-radius: var(--radius-md);
    padding: 15px;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-services__player-header {
    display: flex;
    padding: 0 15px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: var(--gray3);
    text-transform: uppercase;
}

.page-services__player-header-lattice {
    text-align: center;
    margin-right: 60px;
}

.page-services__player-header-genre {
    flex-grow: 1;
}

.page-services__player-header-clock {
    display: flex;
    align-items: center;
}

.page-services__player-header-clock i {
    line-height: 0;
    font-size: 18px;
}

.page-services__player-list {
    max-height: 390px;
}

.pack-track {
    display: flex;
    align-items: center;
    padding: 10px 0 10px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.pack-track:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.pack-track.is-playing {
    background-color: rgba(255, 255, 255, 0.1);
}

.pack-track__number {
    font-size: 14px;
    color: var(--gray3);
    margin-right: 18px;
    min-width: 12px;
    text-align: center;
}

.pack-track__play-pause {
    margin: 0 18px 0 0;
    min-width: 18px;
    text-align: center;
    line-height: 18px;
}

.pack-track__play-pause i {
    color: var(--gray3);
    font-size: 13px;
    transition: color 0.3s ease;
}

.pack-track:hover .pack-track__play-pause i {
    color: var(--white);
}

.pack-track.active .pack-track__play-pause i {
    color: var(--primary);
}

/* ensure doesn't override initial states */
.pack-track__play-pause .icon-play{display:inline-block!important}
.pack-track__play-pause .icon-pause{display:none!important}

.pack-track.is-playing .icon-play{display:none!important}
.pack-track.is-playing .icon-pause{display:inline-block!important}

.pack-track__title {
    flex-grow: 1;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pack-track__waveform {
    display: flex;
    align-items: center;
    min-width: 60%;
    padding-left: 10px;
}

.pack-track__timer {
    display: inline-block;
    font-size: 12px;
    color: var(--gray3);
    width: 35px;
    line-height: 18px;
}

.pack-track__timer.is-left {
    margin: 0 10px 0 0;
}

.pack-track__timer.is-right {
    text-align: left;
    margin: 0 0 0 10px;
}

.waveform-container {
    height: 25px;
    flex: 1;
}

.waveform-container canvas {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.black-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-dark);
    pointer-events: none;
}

.black-overlay+div {
    position: relative;
    z-index: 1;
}

/* Tracks For Sale Section */
.tracks-for-sale {
    background-color: var(--gray11);
    padding: 40px 0;
    color: var(--white);
}

.tracks-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tracks-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    letter-spacing: 1px;
}

.listen-all {
    color: var(--gray3);
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    text-wrap-mode: nowrap;
    transition: color 0.3s ease;
}

.listen-all:hover {
    color: var(--primary);
    text-decoration: none;
}

.listen-all i {
    margin-left: 5px;
    font-size: 18px;
}

.tracks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 0;
}

.track-item {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(20% - 16px);
    /* 5 треков в ряду на десктопе */
    background-color: var(--gray10);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.track-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.track-cover {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    /* This creates a square aspect ratio */
    overflow: hidden;
}

.track-cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease;
}

.track-item:hover .track-cover img {
    transform: scale(1.05);
}

.track-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.track-item:hover .track-overlay {
    opacity: 1;
}


.track-cover.is-playing .track-overlay {
    opacity: 1;
}

.track-cover.is-playing .play-btn {
    display: flex;
}

.play-btn {
    background: var(--primary-hover);
    border: none;
    border-radius: var(--radius-full);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.track-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 15px;
}

.track-tags {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}

.track-tag {
    background: rgba(var(--primary-rgb), 0.1);
    border: 1px solid rgba(var(--primary-rgb), 0.4);
    color: var(--primary);
    font-size: 10px;
    font-weight: 500;
    padding: 2px 6px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.3px;
}

.track-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.track-genre {
    font-size: 12px;
    color: var(--gray3);
    line-height: 1.5;
    margin: 0 0 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: auto;
}

.track-price {
    display: flex;
    align-items: center;
    flex: 1;
}

.price {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.price-old {
    font-size: 13px;
    color: var(--discount);
    font-weight: 500;
    margin-left: 6px;
    text-decoration: line-through;
    width: 100%;
}

.buy-btn {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: var(--radius-lg);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.buy-btn:hover {
    background: var(--primary);
    color: var(--gray11);
}

.is-sold {
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* Гасим hover-эффекты у проданных карточек */
.track-item.is-sold:hover { transform: none; box-shadow: none; }
.track-item.is-sold .track-cover img { transform: none; }
.track-item.is-sold .track-overlay { opacity: 0; }

.is-sold .track-cover {
    position: relative;
}

.is-sold .track-cover::after {
    content: 'SOLD';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    color: var(--sold);
    padding: 0 16px;
    border: 2px solid var(--sold);
    border-radius: var(--radius-sm);
    font-size: 36px;
    font-weight: bold;
    line-height: 52px;
    z-index: 10;
}

.is-sold .track-cover img {
    filter: grayscale(100%);
    opacity: 0.25;
}

.is-sold .track-tag {
    background: rgba(50, 50, 50, 1);
    border: 1px solid rgba(80, 80, 80, 1);
}

.is-sold .buy-btn {
    opacity: 0;
    pointer-events: none;
}

.is-sold .track-tag,
.is-sold .track-name,
.is-sold .track-genre,
.is-sold .price,
.is-sold .price-old {
    color: var(--gray5) !important;
}

/* Shop Link Card - Fully Transparent */
.shop-link-card {
    display: flex;
    flex: 0 0 calc(20% - 16px);
    /* 5 треков в ряду на десктопе */
    text-decoration: none;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-md);
    min-width: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-link-card:hover,
.shop-link-card:focus {
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.shop-link-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    overflow: hidden;
}

.shop-link-text h4 {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    color: var(--white);
    opacity: 0.9;
    word-break: keep-all;
    hyphens: none;
}

.shop-link-text p {
    font-size: 12px;
    margin: 0;
    color: var(--white);
    opacity: 0.6;
    line-height: 1.2;
    font-weight: 300;
}

.shop-link-card:hover .shop-link-text h4 {
    opacity: 1;
}

.shop-link-card:hover .shop-link-text p {
    opacity: 0.8;
}

/* No tracks message */
.tracks-grid .no-tracks {
    margin: 0 auto;
    max-width: 700px;
}

.no-tracks {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--gray11);
    border-radius: var(--radius-md);
    width: 100%;
}

.no-tracks h3 {
    font-size: 24px;
    color: var(--white);
    margin: 0 0 15px;
    letter-spacing: 1px;
}

.no-tracks p {
    font-size: 16px;
    color: var(--gray3);
    margin: 0;
    font-weight: 300;
}

/* Contact Form Styles */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-row {
    display: flex;
    gap: 16px;
    margin: 0;
}

.contact-name,
.contact-email,
.contact-subject {
    flex: 1;
    padding: 0;
}

.contact-item {
    position: relative;
    padding-left: 70px;
    padding-top: 5px;
    margin-top: 30px;
}

.contact-item:first-of-type {
    margin-top: 38px;
}

.contact-item h6 {
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 7px;
}

.contact-item p,
.contact-item span,
.contact-item a {
    font-size: 16px;
}

.contact-item a {
    color: var(--primary);
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-icon {
    width: 50px;
    height: 50px;
    -webkit-border-radius: var(--radius-full);
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    position: absolute;
    left: 0;
    text-align: center;
}

.contact-icon i {
    font-size: 18px;
    color: var(--primary);
    line-height: 46px;
}

.agree-terms {
    display: flex;
    align-items: center;
}

/* Form Elements */
input[type='text'],
input[type='password'],
input[type='email'],
input[type='url'],
input[type='tel'],
input[type='number'],
input[type='date'],
input[type='search'],
select,
textarea {
    height: 47px;
    line-height: 47px;
    border: 2px solid var(--gray2);
    background-color: transparent;
    width: 100%;
    padding: 0 16px;
    color: var(--gray5);
    transition: border-color 0.3s ease-in-out;
}

textarea#comment {
    height: 190px;
    padding: 16px;
    line-height: 1.5;
    resize: vertical;
}

input[type='text']:focus,
input[type='password']:focus,
input[type='date']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='month']:focus,
input[type='week']:focus,
input[type='email']:focus,
input[type='number']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='time']:focus,
input[type='url']:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: none;
}

textarea {
    height: auto;
    padding: 16px;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--gray5);
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: var(--gray5);
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--gray5);
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: var(--gray5);
}

select {
    line-height: 1;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

select::-ms-expand {
    display: none;
}

.select {
    position: relative;
    cursor: pointer;
}

.select i {
    position: absolute;
    top: 14px;
    right: 18px;
    pointer-events: none;
    font-size: 18px;
}

/* Сообщение contact формы */
.form-actions-row {
    display: flex;
    gap: 16px;
}

#msg {
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.02em;
    padding: 13px 34px;
    color: var(--white);
    font-size: 14px;
    border: 3px solid transparent;
    line-height: 1.3333333;
}

#msg.success {
    background-color: var(--success);
}

#msg.error {
    background-color: var(--error);
}

.cf-turnstile>div {
    display: flex;
}

.demo-text {
    padding: 20px 20px 10px;
    background-color: rgba(17, 17, 17, 0.8);
    border-radius: var(--radius-md);
}

/*-------------------------------------------------------*/
/* RESPONSIVE
/*-------------------------------------------------------*/
@media (max-width: 1199px) {
    .track-price {
        flex-direction: column-reverse;
        align-items: flex-start;
    }

    .price-old {
        margin: 0;
    }
}

/* Tablets and larger screens */
@media (max-width: 991px) {
    .navigation-overlay {
        background-color: rgba(17, 17, 17, 0.9);
    }

    .service-item-box,
    .team-member {
        margin-bottom: 40px;
    }

    .contact-item {
        border-right: none;
        margin-bottom: 50px;
    }

    /* 4 трека в ряду на планшетах */
    .track-item,
    .shop-link-card {
        flex: 0 0 calc(25% - 15px);
    }
}

/* Medium screens */
@media (max-width: 767px) {
    /* Contact form adjustments */
    .contact-row {
        flex-direction: column;
    }

    /* Tracks section */
    .tracks-for-sale {
        padding: 30px 0;
    }

    .tracks-title {
        font-size: 20px;
    }

    .listen-all {
        font-size: 20px;
    }

    .tracks-grid {
        gap: 15px;
    }

    /* 3 трека в ряду на маленьких планшетах */
    .track-item,
    .shop-link-card {
        flex: 0 0 calc(33.333% - 10px);
    }

    .track-info {
        padding: 12px;
    }

    .track-name {
        font-size: 12px;
    }

    .track-genre {
        font-size: 11px;
    }

    /* Audio player adjustments */
    .pack-track__waveform {
        display: none;
    }

    .seo-spoiler-toggle {
        padding: 8px 14px;
        font-size: 11px;
    }

    .intro-heading {
        font-size: 22px;
    }
    .heading-frame {
        padding: 24px 30px;
    }
    .client-logo {
        padding: 15px;
    }
    .client-logo:nth-of-type(3n) {
        border-right: 1px solid var(--gray1);
    }
    .client-logo:nth-of-type(n+4) {
        border-bottom: 1px solid var(--gray1);
    }
    .client-logo:nth-of-type(2n) {
        border-right: none;
    }
    .client-logo:nth-of-type(n+5) {
        border-bottom: none;
    }
    .hero-message h1,
    .hero-message.text-rotator h1 {
        font-size: 38px;
    }
    .page-services__player-header-clock {
        display: none;
    }
    .form-actions-row {
        flex-direction: column;
    }
}

/* Mobile screens */
@media (max-width: 480px) {
    /* Audio player mobile adjustments */
    .page-services__player {
        padding: 15px 10px;
    }

    .pack-track__title {
        font-size: 12px;
    }

    /* Tracks mobile adjustments - 2 трека в ряду */
    .tracks-grid {
        gap: 10px;
    }

    .track-item,
    .shop-link-card {
        flex: 0 0 calc(50% - 5px);
    }

    .track-info {
        padding: 10px;
    }

    .play-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
