:root {
    --pulse-bg-0: #07040d;
    --pulse-bg-1: #0d0718;
    --pulse-bg-2: #150b26;
    --pulse-pink: #ff2d78;
    --pulse-violet: #a855f7;
    --pulse-cyan: #22d3ee;
    --pulse-text: #f5f2fa;
    --pulse-text-dim: rgba(245, 242, 250, .62);
    --pulse-text-faint: rgba(245, 242, 250, .38);
    --pulse-grad: linear-gradient(135deg, #ff2d78 0%, #a855f7 100%);
    --pulse-grad-soft: linear-gradient(135deg, rgba(255, 45, 120, .22), rgba(168, 85, 247, .22))
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

html,body,#app {
    height: 100%;
    width: 100%;
    margin: 0;
    overflow: hidden
}

body {
    background: var(--pulse-bg-0);
    color: var(--pulse-text);
    font-family: Inter,PingFang SC,system-ui,-apple-system,sans-serif
}

.pulse-app {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: radial-gradient(120% 80% at 80% -10%,rgba(168,85,247,.16),transparent 60%),radial-gradient(100% 70% at 0% 110%,rgba(255,45,120,.12),transparent 55%),linear-gradient(180deg,var(--pulse-bg-1),var(--pulse-bg-0))
}

.pulse-launch {
    position: relative;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-width: none
}

.pulse-launch::-webkit-scrollbar {
    display: none
}

.pulse-wall {
    position: fixed;
    top: -8%;
    right: -4%;
    bottom: -8%;
    left: -4%;
    display: flex;
    gap: 10px;
    justify-content: center;
    pointer-events: none;
    z-index: 0
}

.pulse-wall__col {
    flex: 1 1 0;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: pulse-wall-scroll 46s linear infinite
}

.pulse-wall__col:nth-child(2) {
    animation-duration: 58s;
    animation-direction: reverse
}

.pulse-wall__col:nth-child(3) {
    animation-duration: 52s
}

.pulse-wall__item {
    width: 100%;
    aspect-ratio: 3 / 4;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 12px;
    opacity: .85;
    filter: saturate(1.15)
}

@keyframes pulse-wall-scroll {
    0% {
        transform: translateY(0)
    }

    to {
        transform: translateY(-50%)
    }
}

.pulse-launch__veil {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    background: radial-gradient(90% 55% at 50% 38%,#07040d47,#07040dd1 68%,#07040df5),linear-gradient(180deg,#07040d8c,#07040db8 45%,#07040df7);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px)
}

.pulse-launch__body {
    position: relative;
    z-index: 2;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: calc(28px + env(safe-area-inset-top,0px)) 22px calc(30px + env(safe-area-inset-bottom,0px))
}

.pulse-brandbar {
    width: 100%;
    max-width: 520px;
    display: flex;
    align-items: center;
    gap: 10px
}

.pulse-brandbar__logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    box-shadow: 0 0 14px #ff2d788c
}

.pulse-brandbar__name {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .06em;
    background: var(--pulse-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.pulse-brandbar__badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--pulse-cyan);
    border: 1px solid rgba(34,211,238,.45);
    border-radius: 999px;
    padding: 4px 10px;
    text-shadow: 0 0 8px rgba(34,211,238,.8)
}

.pulse-lang {
    position: relative;
    margin-left: auto
}

.pulse-lang__backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 40
}

.pulse-lang__trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 11px;
    font-weight: 700;
    color: var(--pulse-text-dim);
    background: #ffffff0f;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: border-color .2s ease
}

.pulse-lang__trigger:active {
    border-color: #ff2d7880
}

.pulse-lang__trigger svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.pulse-lang__menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 41;
    min-width: 108px;
    border-radius: 14px;
    padding: 5px;
    background: #120920f7;
    border: 1px solid rgba(168,85,247,.3);
    box-shadow: 0 14px 40px #0000008c;
    animation: pulse-pop-in .2s cubic-bezier(.2,1.2,.4,1)
}

.pulse-lang__option {
    display: block;
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
    color: var(--pulse-text-dim);
    background: transparent;
    cursor: pointer;
    transition: background .15s ease
}

.pulse-lang__option:active {
    background: #ffffff14
}

.pulse-lang__option--active {
    color: #fff;
    background: var(--pulse-grad-soft)
}

.pulse-hero {
    margin-top: 9vh;
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.pulse-hero__logo-ring {
    position: relative;
    width: 108px;
    height: 108px;
    border-radius: 32px;
    padding: 3px;
    background: conic-gradient(from 120deg,#ff2d78,#a855f7,#22d3ee,#ff2d78);
    animation: pulse-ring-spin 6s linear infinite;
    box-shadow: 0 0 42px #ff2d7873,0 0 90px #a855f747
}

.pulse-hero__logo-ring:after {
    content: "";
    position: absolute;
    top: -14px;
    right: -14px;
    bottom: -14px;
    left: -14px;
    border-radius: 44px;
    background: radial-gradient(circle,rgba(255,45,120,.3),transparent 70%);
    filter: blur(12px);
    z-index: -1
}

.pulse-hero__logo {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    -o-object-fit: cover;
    object-fit: cover;
    background: var(--pulse-bg-2)
}

.pulse-hero__logo-fallback {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(160deg,#2a1245,#170a2c)
}

@keyframes pulse-ring-spin {
    to {
        transform: rotate(360deg)
    }
}

.pulse-kicker {
    margin-top: 26px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .32em;
    color: var(--pulse-cyan);
    text-shadow: 0 0 12px rgba(34,211,238,.75)
}

.pulse-hero__title {
    margin: 10px 0 0;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: .01em;
    background: linear-gradient(120deg,#fff 12%,#ffc2da 38%,#ff2d78 62%,#a855f7 88%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: pulse-title-shine 5s ease-in-out infinite
}

@keyframes pulse-title-shine {
    0%,to {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }
}

.pulse-hero__subtitle {
    margin: 14px 0 0;
    max-width: 340px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--pulse-text-dim)
}

.pulse-stats {
    margin-top: 26px;
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 420px
}

.pulse-stat {
    flex: 1;
    padding: 12px 6px;
    border-radius: 16px;
    background: #ffffff0d;
    border: 1px solid rgba(255,255,255,.09);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-align: center
}

.pulse-stat__value {
    font-size: 17px;
    font-weight: 900;
    background: var(--pulse-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.pulse-stat__label {
    margin-top: 3px;
    font-size: 10px;
    letter-spacing: .05em;
    color: var(--pulse-text-faint)
}

.pulse-featured {
    margin-top: 34px;
    width: 100%;
    max-width: 520px
}

.pulse-featured__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 2px
}

.pulse-featured__title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .02em
}

.pulse-featured__title:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--pulse-pink);
    box-shadow: 0 0 10px var(--pulse-pink);
    vertical-align: 2px
}

.pulse-featured__subtitle {
    font-size: 11px;
    color: var(--pulse-text-faint)
}

.pulse-featured__rail {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none
}

.pulse-featured__rail::-webkit-scrollbar {
    display: none
}

.pulse-card {
    position: relative;
    flex: 0 0 132px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.1);
    background: var(--pulse-bg-2);
    cursor: pointer;
    transition: transform .25s ease,box-shadow .25s ease
}

.pulse-card:active {
    transform: scale(.96)
}

.pulse-card__img {
    width: 100%;
    aspect-ratio: 3 / 4;
    -o-object-fit: cover;
    object-fit: cover;
    display: block
}

.pulse-card__shade {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg,transparent 46%,rgba(5,2,10,.9) 100%)
}

.pulse-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    transform: translate(-50%,-58%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff2d78eb;
    box-shadow: 0 0 18px #ff2d78bf
}

.pulse-card__play svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    margin-left: 2px
}

.pulse-card__info {
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 9px;
    z-index: 2
}

.pulse-card__title {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.pulse-card__views {
    margin-top: 3px;
    font-size: 10px;
    color: var(--pulse-text-faint)
}

.pulse-card__duration {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 999px;
    color: #fff;
    background: #0000008c;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

.pulse-card__hot {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .08em;
    padding: 3px 8px;
    border-radius: 999px;
    color: #fff;
    background: var(--pulse-grad);
    box-shadow: 0 0 12px #ff2d7899
}

.pulse-cta {
    margin-top: 38px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center
}

.pulse-cta__button {
    position: relative;
    width: 100%;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 19px 24px;
    font-size: 17px;
    font-weight: 900;
    letter-spacing: .04em;
    color: #fff;
    background: var(--pulse-grad);
    box-shadow: 0 10px 32px #ff2d786b,0 0 0 1px #ffffff1f inset;
    animation: pulse-cta-breathe 2.4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .15s ease
}

.pulse-cta__button:active {
    transform: scale(.97)
}

.pulse-cta__button svg {
    width: 20px;
    height: 20px;
    fill: currentColor
}

@keyframes pulse-cta-breathe {
    0%,to {
        box-shadow: 0 10px 32px #ff2d786b,0 0 0 1px #ffffff1f inset
    }

    50% {
        box-shadow: 0 10px 46px #ff2d78ad,0 0 34px #a855f780,0 0 0 1px #fff3 inset
    }
}

.pulse-cta__hint {
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: .05em;
    color: var(--pulse-text-faint)
}

.pulse-cta__disclaimer {
    margin-top: 26px;
    max-width: 380px;
    font-size: 10px;
    line-height: 1.7;
    text-align: center;
    color: var(--pulse-text-faint)
}

.pulse-launch__footer {
    margin-top: auto;
    padding-top: 34px;
    font-size: 10px;
    color: var(--pulse-text-faint);
    letter-spacing: .04em
}

.pulse-age {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background: #05020ac7;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px)
}

.pulse-age__card {
    width: 100%;
    max-width: 360px;
    border-radius: 24px;
    padding: 30px 24px 24px;
    text-align: center;
    background: linear-gradient(170deg,#22113af0,#0c0616f5);
    border: 1px solid rgba(168,85,247,.3);
    box-shadow: 0 24px 70px #0009,0 0 50px #ff2d7824;
    animation: pulse-pop-in .32s cubic-bezier(.2,1.4,.4,1)
}

@keyframes pulse-pop-in {
    0% {
        transform: scale(.86) translateY(16px);
        opacity: 0
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1
    }
}

.pulse-age__badge {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    background: var(--pulse-grad);
    box-shadow: 0 0 26px #ff2d788c
}

.pulse-age__title {
    margin: 18px 0 0;
    font-size: 20px;
    font-weight: 900
}

.pulse-age__body {
    margin: 10px 0 0;
    font-size: 13px;
    line-height: 1.7;
    color: var(--pulse-text-dim)
}

.pulse-age__enter {
    margin-top: 22px;
    width: 100%;
    border: none;
    border-radius: 999px;
    padding: 15px;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    cursor: pointer;
    background: var(--pulse-grad);
    box-shadow: 0 8px 24px #ff2d7866;
    transition: transform .15s ease
}

.pulse-age__enter:active {
    transform: scale(.97)
}

.pulse-age__leave {
    margin-top: 12px;
    border: none;
    background: none;
    font-size: 13px;
    color: var(--pulse-text-faint);
    cursor: pointer;
    padding: 8px
}

.pulse-feed-wrap {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden
}

.pulse-feed {
    position: relative;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-type: y mandatory;
    overscroll-behavior: contain;
    scrollbar-width: none;
    background: #000
}

.pulse-feed::-webkit-scrollbar {
    display: none
}

.pulse-slide {
    position: relative;
    height: 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop:always;overflow: hidden;
    background: #000
}

.pulse-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    padding: calc(10px + env(safe-area-inset-top,0px)) 14px 26px;
    background: linear-gradient(180deg,rgba(0,0,0,.62),transparent);
    pointer-events: none
}

.pulse-topbar__row {
    display: flex;
    align-items: center;
    gap: 10px;
    pointer-events: auto
}

.pulse-topbar__brand {
    display: flex;
    align-items: center;
    gap: 7px
}

.pulse-topbar__logo {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    -o-object-fit: cover;
    object-fit: cover;
    box-shadow: 0 0 10px #ff2d7880
}

.pulse-topbar__name {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em
}

.pulse-tabs {
    margin-left: auto;
    display: flex;
    gap: 4px;
    padding: 3px;
    border-radius: 999px;
    background: #ffffff14;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px)
}

.pulse-tabs__item {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 6px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: var(--pulse-text-dim);
    background: transparent;
    transition: all .2s ease
}

.pulse-tabs__item--active {
    color: #fff;
    background: var(--pulse-grad);
    box-shadow: 0 2px 12px #ff2d7880
}

.pulse-rail {
    position: absolute;
    right: 10px;
    bottom: calc(108px + env(safe-area-inset-bottom,0px));
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.pulse-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    border: none;
    background: none;
    cursor: pointer;
    color: #fff;
    padding: 0
}

.pulse-action__icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff1a;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .18s ease,background .2s ease
}

.pulse-action:active .pulse-action__icon {
    transform: scale(.86)
}

.pulse-action__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: fill .2s ease,stroke .2s ease
}

.pulse-action--liked .pulse-action__icon {
    background: #ff2d783d;
    animation: pulse-heart-pop .36s cubic-bezier(.2,1.8,.4,1)
}

.pulse-action--liked svg {
    fill: var(--pulse-pink);
    stroke: var(--pulse-pink)
}

.pulse-action--faved .pulse-action__icon {
    background: #22d3ee33
}

.pulse-action--faved svg {
    fill: var(--pulse-cyan);
    stroke: var(--pulse-cyan)
}

@keyframes pulse-heart-pop {
    0% {
        transform: scale(.6)
    }

    60% {
        transform: scale(1.24)
    }

    to {
        transform: scale(1)
    }
}

.pulse-action__count {
    font-size: 11px;
    font-weight: 700;
    color: #ffffffd9;
    text-shadow: 0 1px 4px rgba(0,0,0,.6)
}

.pulse-meta {
    position: absolute;
    left: 0;
    right: 76px;
    bottom: 0;
    z-index: 20;
    padding: 40px 14px calc(22px + env(safe-area-inset-bottom,0px));
    background: linear-gradient(0deg,rgba(0,0,0,.72),transparent)
}

.pulse-meta__title {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 6px rgba(0,0,0,.7)
}

.pulse-meta__desc {
    margin: 7px 0 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--pulse-text-dim);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.pulse-meta__tags {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px
}

.pulse-meta__tag {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    color: #ffffffeb;
    background: #ffffff1f;
    border: 1px solid rgba(255,255,255,.14);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.pulse-meta__stats {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    color: var(--pulse-text-faint)
}

.pulse-meta__stats svg {
    width: 13px;
    height: 13px;
    margin-right: 4px;
    vertical-align: -2px;
    fill: currentColor
}

.pulse-feed__loading,.pulse-feed__empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--pulse-text-dim);
    font-size: 13px
}

.pulse-feed__spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid rgba(255,45,120,.18);
    border-top-color: var(--pulse-pink);
    animation: pulse-spin .9s linear infinite
}

@keyframes pulse-spin {
    to {
        transform: rotate(360deg)
    }
}

.pulse-feed__tail {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pulse-text-faint);
    font-size: 12px;
    scroll-snap-align: none
}

.pulse-feed__tail-spinner {
    width: 26px;
    height: 26px;
    border-width: 2px
}

.pulse-player {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000
}

.pulse-player__cover {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    background: #000
}

.pulse-player__cover--blurred {
    -o-object-fit: cover;
    object-fit: cover;
    filter: blur(26px) brightness(.6);
    transform: scale(1.2)
}

.pulse-player__shade {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(70% 60% at 50% 50%,transparent 40%,rgba(0,0,0,.42) 100%)
}

.pulse-player__tap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer
}

.pulse-player__fab {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff2d78eb;
    box-shadow: 0 0 0 10px #ff2d782e,0 0 34px #ff2d78b3;
    animation: pulse-fab-breathe 2.2s ease-in-out infinite;
    transition: transform .16s ease
}

.pulse-player__tap:active .pulse-player__fab {
    transform: scale(.92)
}

.pulse-player__fab svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-left: 4px
}

@keyframes pulse-fab-breathe {
    0%,to {
        box-shadow: 0 0 0 8px #ff2d7829,0 0 30px #ff2d7899
    }

    50% {
        box-shadow: 0 0 0 15px #ff2d7812,0 0 46px #ff2d78d9
    }
}

.pulse-player__tap-label {
    position: absolute;
    bottom: 24%;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    color: #ffffffd9;
    text-shadow: 0 2px 8px rgba(0,0,0,.8)
}

.pulse-player__video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    background: #000
}

.pulse-player__loading {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: #00000073
}

.pulse-player__loading span {
    font-size: 12px;
    letter-spacing: .1em;
    color: var(--pulse-text-dim)
}

.pulse-player__error {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 30px;
    background: #000000b8;
    text-align: center
}

.pulse-player__error p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--pulse-text-dim)
}

.pulse-player__retry {
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 11px 30px;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    background: var(--pulse-grad);
    box-shadow: 0 6px 20px #ff2d7873;
    transition: transform .15s ease
}

.pulse-player__retry:active {
    transform: scale(.95)
}

.pulse-player__fly-heart {
    position: absolute;
    z-index: 12;
    width: 74px;
    height: 74px;
    pointer-events: none;
    animation: pulse-fly-heart .9s ease-out forwards
}

.pulse-player__fly-heart svg {
    width: 100%;
    height: 100%;
    fill: var(--pulse-pink);
    filter: drop-shadow(0 0 14px rgba(255,45,120,.85))
}

@keyframes pulse-fly-heart {
    0% {
        transform: scale(.3) rotate(-14deg);
        opacity: 0
    }

    25% {
        transform: scale(1.15) rotate(6deg);
        opacity: 1
    }

    70% {
        transform: scale(1) translateY(-34px);
        opacity: 1
    }

    to {
        transform: scale(.7) translateY(-90px);
        opacity: 0
    }
}

.pulse-guide {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 70;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #040209a8;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: pulse-fade-in .25s ease
}

@keyframes pulse-fade-in {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.pulse-guide__sheet {
    width: 100%;
    max-width: 480px;
    border-radius: 28px 28px 0 0;
    padding: 26px 24px calc(26px + env(safe-area-inset-bottom,0px));
    background: linear-gradient(175deg,#201036fa,#0b0515fc);
    border-top: 1px solid rgba(168,85,247,.34);
    box-shadow: 0 -18px 60px #0000008c;
    animation: pulse-sheet-up .34s cubic-bezier(.2,1.2,.4,1)
}

@keyframes pulse-sheet-up {
    0% {
        transform: translateY(46%);
        opacity: .4
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.pulse-guide__grip {
    width: 42px;
    height: 4px;
    margin: 0 auto 18px;
    border-radius: 999px;
    background: #ffffff2e
}

.pulse-guide__brand {
    display: flex;
    align-items: center;
    gap: 10px
}

.pulse-guide__brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    background: var(--pulse-bg-2);
    box-shadow: 0 0 14px #ff2d7873
}

.pulse-guide__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25
}

.pulse-guide__brand-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--pulse-cyan)
}

.pulse-guide__brand-name {
    font-size: 14px;
    font-weight: 800
}

.pulse-guide__brand-step {
    margin-left: auto;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--pulse-text-faint);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    padding: 3px 9px
}

.pulse-guide__progress {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.pulse-guide__progress-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--pulse-text-faint);
    white-space: nowrap
}

.pulse-guide__progress-step i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff3
}

.pulse-guide__progress-step--done,.pulse-guide__progress-step--active {
    color: #fff
}

.pulse-guide__progress-step--done i {
    background: var(--pulse-cyan);
    box-shadow: 0 0 8px #22d3eecc
}

.pulse-guide__progress-step--active i {
    background: var(--pulse-pink);
    box-shadow: 0 0 8px #ff2d78cc;
    animation: pulse-progress-blink 1.2s ease-in-out infinite
}

@keyframes pulse-progress-blink {
    0%,to {
        opacity: 1
    }

    50% {
        opacity: .45
    }
}

.pulse-guide__progress-line {
    flex: 1;
    height: 2px;
    border-radius: 2px;
    background: #ffffff1f
}

.pulse-guide__progress-line--active {
    background: var(--pulse-grad)
}

.pulse-guide__benefit {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 11px 14px;
    border-radius: 14px;
    background: var(--pulse-grad-soft);
    border: 1px solid rgba(255,45,120,.28)
}

.pulse-guide__benefit strong {
    font-size: 13px;
    font-weight: 900;
    background: var(--pulse-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.pulse-guide__benefit span {
    font-size: 11px;
    line-height: 1.55;
    color: var(--pulse-text-dim)
}

.pulse-guide__head {
    display: flex;
    align-items: center;
    gap: 14px
}

.pulse-guide__icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pulse-grad-soft);
    border: 1px solid rgba(255,45,120,.36);
    box-shadow: 0 0 22px #ff2d7847
}

.pulse-guide__icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: var(--pulse-pink);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.pulse-guide__title {
    margin: 0;
    font-size: 17px;
    font-weight: 900
}

.pulse-guide__body {
    margin: 5px 0 0;
    font-size: 12px;
    line-height: 1.6;
    color: var(--pulse-text-dim)
}

.pulse-guide__steps {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.pulse-guide__step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    background: #ffffff0d;
    border: 1px solid rgba(255,255,255,.08)
}

.pulse-guide__step-no {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    color: #fff;
    background: var(--pulse-grad)
}

.pulse-guide__step p {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--pulse-text-dim)
}

.pulse-guide__hint {
    margin: 14px 0 0;
    text-align: center;
    font-size: 11px;
    color: var(--pulse-cyan);
    text-shadow: 0 0 8px rgba(34,211,238,.6)
}

.pulse-guide__cta {
    margin-top: 18px;
    width: 100%;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    padding: 16px;
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    background: var(--pulse-grad);
    box-shadow: 0 10px 28px #ff2d786b;
    transition: transform .15s ease
}

.pulse-guide__cta:active {
    transform: scale(.97)
}

.pulse-guide__verify {
    margin-top: 10px;
    width: 100%;
    border: 1px solid rgba(255,255,255,.16);
    cursor: pointer;
    border-radius: 999px;
    padding: 13px;
    font-size: 13px;
    font-weight: 700;
    color: var(--pulse-text-dim);
    background: transparent;
    transition: all .15s ease
}

.pulse-guide__verify:active {
    background: #ffffff14
}

@media(min-width: 520px) {
    .pulse-hero__title {
        font-size:52px
    }

    .pulse-card {
        flex-basis: 148px
    }
}
