* {
    box-sizing: border-box;
}


html,
body {
    margin: 0;
    padding: 0;

    width: 100%;
    min-height: 100%;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "PingFang SC",
        "Microsoft YaHei",
        sans-serif;

    background: #100719;
    color: #fff;
}


body {
    overflow-y: auto;
    scrollbar-width: none;
}


body::-webkit-scrollbar {
    display: none;
}


button,
a {
    font-family: inherit;
}


.music-page {
    width: 100%;
    max-width: 430px;
    min-height: 100vh;

    margin: 0 auto;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #11071c 0%,
            #190a28 48%,
            #0c0613 100%
        );
}


/***********************
顶部导航
***********************/

.page-header {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 50;

    width: 100%;
    max-width: 430px;
    height:
        calc(
            58px +
            env(safe-area-inset-top)
        );

    display: grid;
    grid-template-columns: 48px 1fr 48px;
    align-items: end;

    padding:
        env(safe-area-inset-top)
        14px
        9px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            to bottom,
            rgba(10, 4, 18, 0.78),
            rgba(10, 4, 18, 0)
        );

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease;
}


.page-header.is-solid {
    background: rgba(18, 7, 29, 0.94);

    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.28);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


.page-header h1 {
    margin: 0;
    padding-bottom: 8px;

    font-size: 17px;
    line-height: 1;
    font-weight: 600;
    text-align: center;

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


.back-button,
.share-button {
    width: 40px;
    height: 40px;

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

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    background: rgba(29, 11, 45, 0.5);
    color: #fff;

    cursor: pointer;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    -webkit-tap-highlight-color: transparent;

    transition:
        transform 0.18s ease,
        background 0.18s ease;
}


.back-button {
    font-size: 34px;
}


.share-button {
    font-size: 23px;
}


.back-button:active,
.share-button:active {
    transform: scale(0.93);

    background: rgba(80, 34, 105, 0.72);
}


/***********************
首屏
***********************/

.hero-section {
    position: relative;

    width: 100%;
    height: 690px;

    overflow: hidden;

    background: #12071d;
}


.hero-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    animation:
        hero-enter
        1.4s
        ease
        forwards;
}


@keyframes hero-enter {

    from {
        transform: scale(1.1);
        opacity: 0.62;
    }

    to {
        transform: scale(1.02);
        opacity: 1;
    }

}


.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(12, 4, 21, 0.12),
            rgba(12, 4, 21, 0.28) 40%,
            rgba(13, 5, 22, 0.94) 100%
        );
}


.hero-light {
    position: absolute;

    border-radius: 50%;

    filter: blur(30px);

    pointer-events: none;
}


.hero-light-one {
    width: 220px;
    height: 220px;

    right: -90px;
    top: 90px;

    background: rgba(255, 38, 174, 0.22);
}


.hero-light-two {
    width: 190px;
    height: 190px;

    left: -80px;
    bottom: 170px;

    background: rgba(66, 82, 255, 0.22);
}


.hero-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 90px;

    z-index: 3;
}


.hero-label {
    display: inline-flex;

    padding: 7px 12px;

    border: 1px solid rgba(255, 118, 224, 0.4);
    border-radius: 999px;

    background: rgba(147, 29, 127, 0.2);
    color: #ff94e3;

    font-size: 11px;
    line-height: 1;
    letter-spacing: 1.3px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.hero-content h2 {
    margin: 18px 0 0;

    font-size: 44px;
    line-height: 1.16;
    font-weight: 780;

    text-shadow:
        0 5px 22px rgba(0, 0, 0, 0.38);
}


.hero-content p {
    max-width: 340px;

    margin: 17px 0 0;

    color: rgba(255, 239, 252, 0.84);

    font-size: 15px;
    line-height: 1.75;
}


.hero-meta {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 10px;

    margin-top: 20px;
}


.hero-meta div {
    padding: 13px;

    border: 1px solid rgba(255, 118, 224, 0.14);
    border-radius: 15px;

    background: rgba(32, 9, 45, 0.52);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.hero-meta span {
    display: block;

    color: #b696bc;

    font-size: 10px;
}


.hero-meta strong {
    display: block;

    margin-top: 5px;

    font-size: 13px;
}


.hero-ticket-button {
    display: inline-flex;
    align-items: center;
    gap: 28px;

    height: 48px;

    margin-top: 20px;
    padding: 0 20px;

    border-radius: 24px;

    background:
        linear-gradient(
            90deg,
            #fa4bb8,
            #8d55ff
        );

    color: #fff;

    font-size: 15px;
    font-weight: 650;
    text-decoration: none;

    box-shadow:
        0 10px 24px rgba(204, 55, 186, 0.28);
}


.hero-ticket-button span {
    font-size: 20px;
}


.hero-scroll-button {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 4;

    display: flex;
    flex-direction: column;
    align-items: center;

    border: 0;

    background: transparent;
    color: rgba(255, 255, 255, 0.75);

    font-size: 11px;

    transform: translateX(-50%);
}


.scroll-arrow {
    font-size: 23px;

    animation:
        scroll-arrow
        1.5s
        ease-in-out
        infinite;
}


@keyframes scroll-arrow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

}


/***********************
通用标题
***********************/

.section-eyebrow {
    margin: 0 0 6px;

    color: #f272d0;

    font-size: 11px;
    line-height: 1;
    font-weight: 650;
    letter-spacing: 1.15px;
}


.section-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;

    margin-bottom: 22px;
}


.section-title-row h2,
.section-heading h2 {
    margin: 0;

    font-size: 28px;
    line-height: 1.25;
}


.slide-hint {
    color: #9984a4;

    font-size: 13px;
}


/***********************
介绍
***********************/

.intro-section {
    padding: 42px 20px;

    background:
        linear-gradient(
            180deg,
            #170a25,
            #1c0c2d
        );
}


.section-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}


.section-number {
    width: 44px;
    height: 44px;

    flex: 0 0 auto;

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

    border: 1px solid rgba(243, 96, 205, 0.25);
    border-radius: 50%;

    background: rgba(153, 38, 134, 0.18);
    color: #ff7bdd;

    font-size: 14px;
    font-weight: 700;
}


.intro-text {
    margin: 24px 0 0;

    color: #b8a4c2;

    font-size: 15px;
    line-height: 1.85;
}


.festival-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;

    margin-top: 28px;
}


.data-item {
    min-height: 95px;

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

    border: 1px solid rgba(245, 102, 209, 0.1);
    border-radius: 20px;

    background: rgba(255, 255, 255, 0.035);
}


.data-item strong {
    color: #ff83df;

    font-size: 27px;
}


.data-item span {
    margin-top: 7px;

    color: #a28dab;

    font-size: 12px;
}


/***********************
艺人阵容
***********************/

.artist-section {
    padding: 42px 0 38px;

    overflow: hidden;
}


.artist-section
.section-title-row {
    padding: 0 20px;
}


.artist-scroll {
    display: flex;
    gap: 14px;

    overflow-x: auto;

    padding: 3px 20px 20px;

    scrollbar-width: none;

    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;
}


.artist-scroll::-webkit-scrollbar {
    display: none;
}


.artist-card {
    position: relative;

    flex: 0 0 72%;
    height: 400px;

    overflow: hidden;

    border-radius: 26px;

    color: #fff;
    text-decoration: none;

    scroll-snap-align: start;

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.3);

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}


.artist-card:active {
    transform: scale(0.985);
    opacity: 0.92;
}


.artist-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.artist-mask {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(13, 5, 22, 0.04),
            rgba(13, 5, 22, 0.82)
        );
}


.artist-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 22px;

    z-index: 2;
}


.artist-content > span {
    color: #ff77d8;

    font-size: 10px;
    letter-spacing: 1.2px;
}


.artist-content h3 {
    margin: 8px 0 0;

    font-size: 29px;
}


.artist-content p {
    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
}


/***********************
日程
***********************/

.schedule-section {
    padding: 42px 18px;

    background: #150922;
}


.schedule-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;

    margin-bottom: 20px;
}


.schedule-tab {
    min-height: 70px;

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

    border: 1px solid rgba(238, 94, 204, 0.1);
    border-radius: 17px;

    background: rgba(255, 255, 255, 0.035);
    color: #a895b1;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.18s ease;
}


.schedule-tab:active {
    transform: scale(0.96);
}


.schedule-tab span {
    font-size: 12px;
}


.schedule-tab strong {
    margin-top: 5px;

    font-size: 17px;
}


.schedule-tab.is-active {
    border-color: rgba(255, 105, 218, 0.5);

    background:
        linear-gradient(
            135deg,
            rgba(224, 55, 184, 0.24),
            rgba(116, 70, 221, 0.2)
        );

    color: #fff;
}


.schedule-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.schedule-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr) 58px;
    align-items: center;
    gap: 12px;

    min-height: 82px;

    padding: 12px 14px;

    border: 1px solid rgba(243, 100, 209, 0.09);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.035);
}


.schedule-item-time {
    color: #ff72d6;

    font-size: 16px;
    font-weight: 700;
}


.schedule-item-info {
    min-width: 0;
}


.schedule-item-info strong {
    display: block;

    font-size: 16px;

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


.schedule-item-info span {
    display: block;

    margin-top: 6px;

    color: #9d89a7;

    font-size: 12px;
}


.schedule-stage {
    color: #927aa0;

    font-size: 11px;
    text-align: right;
}


/***********************
舞台
***********************/

.stage-section {
    padding: 42px 18px;
}


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


.stage-card {
    position: relative;

    display: block;

    height: 190px;

    overflow: hidden;

    border-radius: 24px;

    color: #fff;
    text-decoration: none;
}


.stage-card-large {
    height: 280px;
}


.stage-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}


.stage-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.stage-mask {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(12, 4, 20, 0.04),
            rgba(12, 4, 20, 0.78)
        );
}


.stage-content {
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 17px;

    z-index: 2;
}


.stage-content > span {
    color: #ff75d9;

    font-size: 11px;
}


.stage-content h3 {
    margin: 6px 0 0;

    font-size: 22px;
}


.stage-content p {
    margin: 7px 0 0;

    color: rgba(255, 255, 255, 0.7);

    font-size: 13px;
}


/***********************
视频
***********************/

.video-section {
    padding: 42px 18px;

    background: #150922;
}


.video-card {
    position: relative;

    display: block;

    height: 330px;

    overflow: hidden;

    border-radius: 28px;

    color: #fff;
    text-decoration: none;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.32);
}


.video-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.video-mask {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(10, 4, 18, 0.08),
            rgba(10, 4, 18, 0.78)
        );
}


.video-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;

    padding: 6px 10px;

    border-radius: 8px;

    background: rgba(255, 91, 207, 0.24);
    color: #ff9ae2;

    font-size: 10px;
    letter-spacing: 1px;
}


.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;

    width: 64px;
    height: 64px;

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

    padding-left: 4px;

    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;

    background: rgba(18, 6, 29, 0.52);

    font-size: 24px;

    transform: translate(-50%, -50%);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.video-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;

    z-index: 2;
}


.video-content h3 {
    margin: 0;

    font-size: 25px;
}


.video-content p {
    margin: 8px 0 0;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
}


/***********************
购票
***********************/

.ticket-section {
    position: relative;

    min-height: 330px;

    margin: 36px 16px 0;
    padding: 38px 24px;

    overflow: hidden;

    border-radius: 30px;

    background: #251033;
}


.ticket-background {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.ticket-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to right,
            rgba(25, 8, 35, 0.94),
            rgba(25, 8, 35, 0.45)
        );
}


.ticket-content {
    position: relative;
    z-index: 3;

    max-width: 285px;
}


.ticket-content > span {
    color: #ff83dd;

    font-size: 10px;
    letter-spacing: 1.2px;
}


.ticket-content h2 {
    margin: 13px 0 0;

    font-size: 31px;
    line-height: 1.3;
}


.ticket-content p {
    margin: 15px 0 0;

    color: rgba(255, 238, 251, 0.72);

    font-size: 14px;
    line-height: 1.7;
}


.ticket-button {
    display: inline-flex;
    align-items: center;
    gap: 28px;

    height: 48px;

    margin-top: 24px;
    padding: 0 20px;

    border-radius: 24px;

    background:
        linear-gradient(
            90deg,
            #fa4bb8,
            #8555ff
        );

    color: #fff;

    font-size: 15px;
    font-weight: 650;
    text-decoration: none;
}


.ticket-button span {
    font-size: 20px;
}


.ticket-decoration {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 103, 218, 0.22);
}


.decoration-one {
    width: 230px;
    height: 230px;

    right: -90px;
    top: -80px;
}


.decoration-two {
    width: 150px;
    height: 150px;

    right: 20px;
    bottom: -90px;
}


/***********************
提示
***********************/

.notice-section {
    padding: 42px 18px;
}


.notice-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}


.notice-item {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    align-items: center;
    gap: 12px;

    min-height: 86px;

    padding: 13px 14px;

    border: 1px solid rgba(240, 103, 211, 0.08);
    border-radius: 18px;

    background: rgba(255, 255, 255, 0.03);
    color: #fff;

    text-decoration: none;
}


.notice-icon {
    width: 42px;
    height: 42px;

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

    border-radius: 14px;

    background: rgba(239, 75, 198, 0.14);
    color: #ff7bd9;

    font-size: 12px;
    font-weight: 700;
}


.notice-item strong {
    display: block;

    font-size: 16px;
}


.notice-item p {
    margin: 6px 0 0;

    color: #97839f;

    font-size: 12px;
}


.notice-arrow {
    color: #836d8d;

    font-size: 24px;
}


.page-bottom-space {
    height:
        calc(
            40px +
            env(safe-area-inset-bottom)
        );
}


/***********************
分享提示
***********************/

.share-toast {
    position: fixed;
    left: 50%;
    bottom:
        calc(
            34px +
            env(safe-area-inset-bottom)
        );

    z-index: 100;

    padding: 11px 18px;

    border-radius: 22px;

    background: rgba(20, 7, 29, 0.92);
    color: #fff;

    font-size: 14px;

    opacity: 0;
    pointer-events: none;

    transform:
        translate(-50%, 20px);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.share-toast.is-visible {
    opacity: 1;

    transform:
        translate(-50%, 0);
}


/***********************
小屏适配
***********************/

@media (max-width: 360px) {

    .hero-section {
        height: 640px;
    }


    .hero-content {
        left: 18px;
        right: 18px;
    }


    .hero-content h2 {
        font-size: 38px;
    }


    .artist-card {
        flex-basis: 78%;
        height: 365px;
    }


    .schedule-section,
    .stage-section,
    .video-section,
    .notice-section {
        padding-right: 14px;
        padding-left: 14px;
    }


    .ticket-section {
        margin-right: 12px;
        margin-left: 12px;

        padding-right: 20px;
        padding-left: 20px;
    }

}


/***********************
减少动画
***********************/

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}