/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #111;
}

.ws-section__hero {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 620px;
    overflow: hidden;
    background: #12071f;
}

.ws-nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    padding: 18px 0;
    background: transparent;
}

.ws-nav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ws-nav__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.ws-nav__logo img {
    display: block;
    width: auto;
    max-height: 60px;
}

.ws-hero__slider {
    width: 100%;
    height: 100%;
}

.ws-hero__slider .swiper-wrapper {
    width: 100%;
    height: 100%;
}

.ws-hero__slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.ws-hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top,
            rgba(38, 12, 49, 1) 0%,
            rgba(38, 12, 49, 0.8) 25%,
            rgba(38, 12, 49, 0.5) 50%,
            rgba(38, 12, 49, 0.2) 70%,
            rgba(38, 12, 49, 0) 100%);
}

.ws-hero__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 210px;
    z-index: 2;
    padding-bottom: 45px;
    max-width: 80%;
}

.ws-hero__content-inner {
    max-width: 760px;
    padding-left: 8px;
}

.ws-hero__title {
    margin: 0 0 10px;
    color: #fff;
    font-size: 56px;
    line-height: 1.04;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.ws-hero__title em {
    font-style: italic;
    font-weight: 500;
}

.ws-hero__subtitle {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 400;
}

.ws-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 26px;
    border: 0;
    border-radius: 999px;
    background: #f7d548;
    color: #1a1430;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin: 0;
    transition: 0.25s ease;
}

.ws-btn:hover {
    transform: translateY(-1px);
}

.ws-hero__bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    z-index: 3;
    padding-bottom: 45px;
    max-width: 80%;
}

.ws-hero__tabs {
    display: flex;
    align-items: flex-start;
    gap: 34px;
    flex-wrap: nowrap;
}

.ws-hero__tab {
    appearance: none;
    background: transparent;
    border: 0;
    border-top: 1px solid transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 12px 0 0;
    margin: 0;
    max-width: 220px;
    text-align: left;
    cursor: pointer;
    opacity: 0.6;
    color: #fff;
    transition: 0.25s ease;
}

.ws-hero__tab span {
    display: block;
    margin-bottom: 6px;
    color: inherit;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
}

.ws-hero__tab small {
    display: block;
    color: inherit;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 400;
}

.ws-hero__tab.active {
    opacity: 1;
    border-top-color: #fff;
}

.ws-hero__dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 18px;
}

.ws-hero__dots .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.45);
    opacity: 1;
}

.ws-hero__dots .swiper-pagination-bullet-active {
    width: 14px;
    height: 14px;
    background: transparent;
    border: 2px solid #fff;
}


/* MUSIC PLAYER */
.ws-section__player {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #250032;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 110px 0 34px;
}

.ws-section__player-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ws-section__player-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: contain;
    opacity: 1;
    pointer-events: none;
    z-index: 2;
}

.ws-section__player::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(38, 12, 49);
    z-index: 1;
}

.ws-section__player .ws-container {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
}

.ws-section__player-inner {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ws-section__player-head {
    text-align: center;
    margin-bottom: 34px;
}

.ws-section__player-title {
    margin: 0;
    color: #fff;
    font-size: 54px;
    line-height: 0.98;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.ws-section__player-title span {
    color: #f1df8e;
}

.ws-section__player-center {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.ws-section__player-phone {
    position: relative;
    width: 330px;
    max-width: 100%;
    aspect-ratio: 330 / 654;
}

.ws-section__player-phone-mockup {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.ws-section__player-app {
    position: absolute;
    top: 2%;
    left: 6%;
    width: 89%;
    height: 94.8%;
    z-index: 2;
    background: #f7f7f5;
    border-radius: 34px;
    padding: 50px 18px 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ws-section__player-cover {
    width: 100%;
    height: 280px;
    border-radius: 18px;
    background-color: #dcdce1;
    background-image: url('../img/banners/music-cover.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 18px;
    background-position: center;
}

.ws-section__player-cover {
    transition: background-image 0.3s ease, transform 0.3s ease;
}

.ws-section__player-meta {
    margin-bottom: 14px;
}

.ws-section__player-song {
    margin: 0 0 4px;
    color: #1c1c1c;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
}

.ws-section__player-artist {
    margin: 0;
    color: #5f5f66;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
}

.ws-section__player-progress {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.ws-section__player-time {
    color: #686871;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
}

.ws-section__player-bar {
    position: relative;
    flex: 1;
    height: 16px;
    display: flex;
    align-items: center;
}

.ws-section__player-bar::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 999px;
    background: #d2d2d7;
}

.ws-section__player-bar-fill {
    position: absolute;
    left: 0;
    top: 50%;
    height: 3px;
    width: 0;
    transform: translateY(-50%);
    border-radius: 999px;
    background: #1a1a1d;
}

.ws-section__player-range {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    opacity: 0;
    cursor: pointer;
}

.ws-section__player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
}

.ws-player-btn {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #121214;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s ease;
}

.ws-player-btn svg {
    width: 19px;
    height: 19px;
    stroke-width: 2.2;
}

.ws-player-play {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #111114;
    color: #fff;
}

.ws-player-play svg {
    width: 20px;
    height: 20px;
}

.ws-section__player-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    overflow: scroll;
    max-height: 100px;
}

.ws-section__player-item {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    text-align: left;
    cursor: pointer;
    opacity: 0.72;
    transition: .2s ease;
}

.ws-section__player-item.active,
.ws-section__player-item:hover {
    opacity: 1;
}

.ws-section__player-item-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #111114;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ws-section__player-item-icon svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.2;
}

.ws-section__player-item-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.ws-section__player-item-text strong {
    color: #19191d;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.ws-section__player-item-text small {
    color: #666670;
    font-size: 11px;
    line-height: 1.25;
    font-weight: 500;
}

.ws-section__player-foot {
    max-width: 620px;
    text-align: center;
}

.ws-section__player-desc {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 26px;
    line-height: 1.15;
    font-weight: 400;
}

.ws-section__player-cta {
    min-height: 54px;
    padding: 0 30px;
    border-radius: 999px;
    background: #d7b8ff;
    color: #3a1c4e;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

.ws-section__ticker {
    position: relative;
    z-index: 2;
    width: 100%;
    overflow: hidden;
    margin-top: 34px;
}

.ws-section__ticker-track {
    display: flex;
    width: max-content;
    animation: wsTickerMove 26s linear infinite;
}

.ws-section__ticker-group {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 26px;
    padding-right: 26px;
}

.ws-section__ticker-group span {
    color: #fff;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    opacity: 0.92;
}

@keyframes wsTickerMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* CARDS SECTION */

.ws-section__cards {
    padding: 80px;
    background: #ececec;
}

.ws-section__cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    max-width: 1400px;
    margin: 0 auto;
}

.ws-section__cards-pack {
    grid-column: 1 / -1;
}

.ws-pack-card {
    min-height: 390px;
    max-height: 390px;
    overflow: hidden;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    background: #fff;
}

.ws-pack-card--reverse {
    grid-template-columns: 0.6fr 1.4fr;
}

.ws-pack-card__media {
    position: relative;
    overflow: hidden;
}

.ws-pack-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ws-pack-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 38px 54px;
}

.ws-pack-card__content--dark {
    background: #260037;
    color: #fff;
}

.ws-pack-card__content--lime {
    background: #ddeb6b;
    color: #111;
}

.ws-pack-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.ws-pack-card__badge--dark {
    border-color: rgba(0, 0, 0, 0.45);
    color: #111;
}

.ws-pack-card__price {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
    line-height: 0.9;
}

.ws-pack-card__price strong {
    font-size: 118px;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.ws-pack-card__price small {
    font-size: 28px;
    font-weight: 500;
    margin-top: 14px;
}

.ws-pack-card__price--dark strong,
.ws-pack-card__price--dark small {
    color: #000;
}

.ws-pack-card__text {
    max-width: 270px;
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.3;
}

.ws-pack-card__text--dark {
    color: rgba(0, 0, 0, 0.72);
}

.ws-pack-card__cta {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: #d6b2ff;
    color: #3c2051;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.ws-pack-card__cta--orange {
    background: #ef922f;
    color: #1c150c;
}

.ws-help-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 30px;
    background: #4e7b6a;
    padding: 34px 32px;
    display: flex;
    align-items: flex-end;
}

.ws-help-card__shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    z-index: 1;
    line-height: 0;
    pointer-events: none;
}

.ws-help-card__shape svg {
    display: block;
    width: 100%;
    height: auto;
}

.ws-help-card__content {
    position: relative;
    z-index: 2;
    max-width: 290px;
}

.ws-help-card__title {
    margin: 0 0 16px;
    color: #fff;
    font-size: 56px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.ws-help-card__subtitle {
    margin: 0 0 20px;
    color: #fff;
    font-size: 24px;
    line-height: 1.08;
    font-weight: 500;
}

.ws-help-card__text {
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.35;
}

.ws-help-card__cta {
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    background: #F4FF85;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.ws-video-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 30px;
    background: #1C4652;
}

.ws-video-card__logo {
    position: absolute;
    right: -2%;
    bottom: -4%;
    width: 74%;
    z-index: 1;
    line-height: 0;
    pointer-events: none;
}

.ws-video-card__logo svg {
    display: block;
    width: 100%;
    height: auto;
}

.ws-video-card__trigger {
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.ws-video-card__trigger-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 190px;
    height: 190px;
    transform: translate(-50%, -50%);
    animation: ws-section__cards-spin 14s linear infinite;
    pointer-events: none;
}

.ws-video-card__trigger-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.ws-video-card__trigger-text {
    fill: #fff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.ws-video-card__trigger-ring span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 0 0;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
}

.ws-video-card__trigger-ring span:nth-child(1) {
    transform: rotate(0deg) translate(0, -88px);
}

.ws-video-card__trigger-ring span:nth-child(2) {
    transform: rotate(90deg) translate(0, -88px);
}

.ws-video-card__trigger-ring span:nth-child(3) {
    transform: rotate(180deg) translate(0, -88px);
}

.ws-video-card__trigger-ring span:nth-child(4) {
    transform: rotate(270deg) translate(0, -88px);
}

.ws-video-card__trigger-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 68px;
    height: 68px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #f2f2eb;
    color: #121212;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: ws-play-bounce 1.8s infinite ease-in-out;

}

@keyframes ws-play-bounce {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }

    30% {
        transform: translate(-50%, -50%) scale(1.08);
    }

    50% {
        transform: translate(-50%, -50%) scale(0.95);
    }

    70% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.ws-video-card__trigger-play svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    margin-left: 2px;
}

@keyframes ws-section__cards-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.ws-video-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
}

.ws-video-modal.is-open {
    display: block;
}

.ws-video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 7, 15, 0.82);
}

.ws-video-modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(900px, calc(100% - 32px));
    transform: translate(-50%, -50%);
    background: #000;
    border-radius: 22px;
    overflow: hidden;
}

.ws-video-modal__player {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.ws-video-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ws-video-modal__close svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.4;
}

/* PREFOOTER */
.ws-section__prefooter {
    padding: 80px 0;
    background: #2b0436;
}

.ws-section__prefooter-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.ws-section__prefooter-col {
    width: 50%;
}

.ws-section__prefooter-title {
    margin: 0 0 20px;
    color: #fff;
    font-size: 64px;
    line-height: 1.05;
    font-weight: 700;
}

.ws-section__prefooter-text {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    max-width: 420px;
}

.ws-section__prefooter-socials {
    display: flex;
    gap: 12px;
}

.ws-social {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.ws-social svg {
    width: 16px;
    height: 16px;
}

.ws-section__prefooter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.ws-prefooter-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}