* {
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    min-height: 100%;

    margin: 0;
    padding: 0;

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

    background: #061426;
    color: #fff;
}


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


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


button,
a {
    font-family: inherit;
}


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

    margin: 0 auto;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #07182e 0%,
            #0a213e 48%,
            #061426 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(3, 14, 29, 0.84),
            rgba(3, 14, 29, 0)
        );

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


.page-header.is-solid {
    background: rgba(5, 21, 41, 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: 650;
    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(110, 195, 255, 0.22);
    border-radius: 50%;

    background: rgba(9, 40, 72, 0.56);
    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(19, 79, 128, 0.76);
}


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

.hero-section {
    position: relative;

    width: 100%;
    height: 700px;

    overflow: hidden;

    background: #061426;
}


.hero-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    animation:
        hero-enter
        1.35s
        ease
        forwards;
}


@keyframes hero-enter {

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

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

}


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

    background:
        linear-gradient(
            to bottom,
            rgba(3, 13, 26, 0.08),
            rgba(3, 13, 26, 0.28) 38%,
            rgba(4, 18, 35, 0.97) 100%
        );
}


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

    opacity: 0.12;

    background-image:
        linear-gradient(
            45deg,
            rgba(90, 192, 255, 0.3) 25%,
            transparent 25%
        );

    background-size: 42px 42px;

    mask-image:
        linear-gradient(
            to bottom,
            transparent,
            #000 40%,
            transparent
        );
}


.hero-light {
    position: absolute;
    right: -100px;
    top: 160px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(25, 149, 255, 0.23);

    filter: blur(38px);
}


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

    z-index: 3;
}


.hero-label {
    display: inline-flex;

    padding: 7px 11px;

    border: 1px solid rgba(87, 189, 255, 0.42);
    border-radius: 999px;

    background: rgba(7, 56, 94, 0.3);
    color: #70cfff;

    font-size: 10px;
    line-height: 1;
    letter-spacing: 1px;

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


.hero-kicker {
    margin: 17px 0 0;

    color: #92d9ff;

    font-size: 15px;
    font-weight: 650;
    letter-spacing: 1px;
}


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

    font-size: 43px;
    line-height: 1.16;
    font-weight: 800;

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


.hero-description {
    max-width: 330px;

    margin: 17px 0 0;

    color: rgba(225, 242, 255, 0.84);

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


.hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-top: 23px;
}


.primary-button,
.secondary-button {
    height: 47px;

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

    padding: 0 19px;

    border-radius: 24px;

    color: #fff;

    font-size: 14px;
    text-decoration: none;

    -webkit-tap-highlight-color: transparent;
}


.primary-button {
    gap: 24px;

    background:
        linear-gradient(
            90deg,
            #168de0,
            #33b9f4
        );

    box-shadow:
        0 10px 23px rgba(16, 143, 220, 0.3);
}


.primary-button span {
    font-size: 18px;
}


.secondary-button {
    border: 1px solid rgba(125, 205, 255, 0.28);

    background: rgba(7, 39, 70, 0.52);

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


.hero-data {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 24px;
    z-index: 4;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    padding: 13px 8px;

    border: 1px solid rgba(91, 185, 245, 0.17);
    border-radius: 20px;

    background: rgba(4, 27, 50, 0.68);

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


.hero-data div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}


.hero-data div + div {
    border-left: 1px solid rgba(110, 199, 255, 0.15);
}


.hero-data strong {
    font-size: 19px;
}


.hero-data span {
    color: #84a7be;

    font-size: 11px;
}


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

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

    color: #49b9f6;

    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.1px;
}


.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;
}


.more-link {
    display: flex;
    align-items: center;
    gap: 3px;

    color: #89a5b9;

    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}


.more-link span {
    font-size: 22px;
}


.slide-hint {
    color: #7894a8;

    font-size: 12px;
}


/***********************
介绍区域
***********************/

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

    background:
        linear-gradient(
            180deg,
            #081c35,
            #0a2341
        );
}


.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(76, 185, 245, 0.25);
    border-radius: 50%;

    background: rgba(24, 119, 178, 0.17);
    color: #5bc7ff;

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


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

    color: #9db4c5;

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


.intro-highlight {
    position: relative;

    margin-top: 28px;
    padding: 25px 22px;

    overflow: hidden;

    border: 1px solid rgba(68, 180, 244, 0.15);
    border-radius: 23px;

    background:
        linear-gradient(
            135deg,
            rgba(18, 82, 125, 0.52),
            rgba(7, 30, 56, 0.76)
        );
}


.intro-highlight span {
    color: #5ac7ff;

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


.intro-highlight strong {
    display: block;

    margin-top: 10px;

    font-size: 24px;
}


.intro-highlight p {
    margin: 11px 0 0;

    color: #99b3c5;

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


/***********************
球队卡片
***********************/

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


.team-card {
    position: relative;

    display: block;

    height: 400px;

    overflow: hidden;

    border-radius: 28px;

    color: #fff;
    text-decoration: none;

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


.team-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.team-card-mask {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(3, 15, 29, 0.03),
            rgba(3, 15, 29, 0.88)
        );
}


.team-card-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 23px;

    z-index: 3;
}


.team-card-label {
    color: #59c7ff;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
}


.team-card-content h3 {
    margin: 7px 0 0;

    font-size: 34px;
}


.team-card-content p {
    margin: 8px 0 0;

    color: rgba(225, 242, 255, 0.75);

    font-size: 14px;
}


.team-card-button,
.stadium-button {
    display: inline-flex;
    align-items: center;
    gap: 23px;

    height: 42px;

    margin-top: 18px;
    padding: 0 15px;

    border: 1px solid rgba(114, 204, 255, 0.3);
    border-radius: 21px;

    background: rgba(7, 54, 90, 0.5);

    font-size: 13px;

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


.team-shield {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;

    width: 54px;
    height: 62px;

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

    border: 2px solid rgba(255, 255, 255, 0.66);
    border-radius: 12px 12px 22px 22px;

    background: rgba(9, 65, 108, 0.7);

    font-size: 18px;
    font-weight: 800;
}


/***********************
赛事切换
***********************/

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

    background: #081b33;
}


.match-tabs {
    display: flex;
    gap: 8px;

    margin-bottom: 20px;
}


.match-tab {
    flex: 1;

    height: 42px;

    border: 1px solid rgba(78, 175, 233, 0.12);
    border-radius: 21px;

    background: rgba(255, 255, 255, 0.035);
    color: #88a4b9;

    font-size: 13px;

    cursor: pointer;
}


.match-tab.is-active {
    border-color: #32aeea;

    background:
        linear-gradient(
            90deg,
            rgba(20, 132, 202, 0.42),
            rgba(37, 172, 226, 0.26)
        );

    color: #fff;
}


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


.match-card {
    padding: 16px;

    border: 1px solid rgba(89, 180, 235, 0.11);
    border-radius: 21px;

    background:
        linear-gradient(
            135deg,
            rgba(15, 51, 82, 0.95),
            rgba(8, 32, 60, 0.95)
        );
}


.match-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #7795aa;

    font-size: 11px;
}


.match-teams {
    display: grid;
    grid-template-columns: 1fr 58px 1fr;
    align-items: center;

    margin-top: 17px;
}


.match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}


.match-team-logo {
    width: 48px;
    height: 48px;

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

    border-radius: 50%;

    background: rgba(40, 136, 199, 0.2);
    color: #65c9ff;

    font-size: 13px;
    font-weight: 750;
}


.match-team strong {
    font-size: 15px;
}


.match-versus {
    color: #74a0bb;

    font-size: 13px;
    font-weight: 700;
    text-align: center;
}


.match-status {
    display: block;

    margin-top: 5px;

    color: #4ebef6;

    font-size: 10px;
}


/***********************
八城
***********************/

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


.city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}


.city-item {
    min-height: 86px;

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

    padding: 15px 17px;

    border: 1px solid rgba(82, 174, 229, 0.1);
    border-radius: 18px;

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

    text-decoration: none;
}


.city-item strong {
    font-size: 18px;
}


.city-item span {
    margin-top: 6px;

    color: #7e9aae;

    font-size: 11px;
}


.city-dalian {
    border-color: rgba(61, 183, 246, 0.42);

    background:
        linear-gradient(
            135deg,
            rgba(20, 128, 194, 0.4),
            rgba(20, 79, 126, 0.28)
        );
}


.city-dalian strong {
    color: #67cfff;
}


/***********************
主场
***********************/

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

    background: #081b33;
}


.stadium-card {
    position: relative;

    display: block;

    height: 360px;

    overflow: hidden;

    border-radius: 28px;

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


.stadium-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

    background:
        linear-gradient(
            to right,
            rgba(3, 19, 36, 0.9),
            rgba(3, 19, 36, 0.15)
        );
}


.stadium-content {
    position: absolute;
    left: 22px;
    right: 70px;
    top: 50%;

    z-index: 3;

    transform: translateY(-50%);
}


.stadium-content > span {
    color: #57c4fb;

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


.stadium-content h3 {
    margin: 10px 0 0;

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


.stadium-content p {
    margin: 12px 0 0;

    color: #a3b9c9;

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


/***********************
赛事瞬间
***********************/

.moment-section {
    padding: 42px 0;

    overflow: hidden;
}


.moment-section
.section-title-row {
    padding: 0 18px;
}


.moment-scroll {
    display: flex;
    gap: 13px;

    overflow-x: auto;

    padding: 3px 18px 20px;

    scrollbar-width: none;

    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;
}


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


.moment-card {
    position: relative;

    flex: 0 0 76%;
    height: 380px;

    overflow: hidden;

    border-radius: 26px;

    color: #fff;
    text-decoration: none;

    scroll-snap-align: start;
}


.moment-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(2, 15, 30, 0.88)
        );
}


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

    z-index: 2;
}


.moment-content span {
    color: #5ac8ff;

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


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

    font-size: 23px;
}


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

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

    background: #081b33;
}


.video-card {
    position: relative;

    display: block;

    height: 330px;

    overflow: hidden;

    border-radius: 28px;

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


.video-card img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

    background:
        linear-gradient(
            to bottom,
            rgba(2, 15, 29, 0.05),
            rgba(2, 15, 29, 0.85)
        );
}


.video-label {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 3;

    padding: 6px 9px;

    border-radius: 7px;

    background: rgba(18, 125, 190, 0.5);
    color: #b8e9ff;

    font-size: 10px;
}


.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(3, 28, 51, 0.6);

    font-size: 23px;

    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: 3;
}


.video-content h3 {
    margin: 0;

    font-size: 25px;
}


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

    color: rgba(225, 241, 252, 0.72);

    font-size: 13px;
}


/***********************
足球文化
***********************/

.culture-section {
    position: relative;

    min-height: 370px;

    margin: 38px 16px 0;
    padding: 38px 23px;

    overflow: hidden;

    border-radius: 30px;
}


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

    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

    background:
        linear-gradient(
            to right,
            rgba(3, 20, 39, 0.96),
            rgba(3, 20, 39, 0.36)
        );
}


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

    max-width: 290px;
}


.culture-content > span {
    color: #57c6ff;

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


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

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


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

    color: #a3b7c6;

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


.culture-content a {
    display: inline-flex;
    align-items: center;
    gap: 25px;

    height: 46px;

    margin-top: 23px;
    padding: 0 18px;

    border-radius: 23px;

    background:
        linear-gradient(
            90deg,
            #168edc,
            #35baf0
        );

    color: #fff;

    font-size: 14px;
    text-decoration: none;
}


/***********************
观赛指南
***********************/

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


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


.guide-item {
    min-height: 86px;

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

    padding: 13px 14px;

    border: 1px solid rgba(84, 177, 231, 0.09);
    border-radius: 19px;

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

    text-decoration: none;
}


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

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

    border-radius: 14px;

    background: rgba(26, 133, 198, 0.19);
    color: #5fc9ff;

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


.guide-item strong {
    display: block;

    font-size: 16px;
}


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

    color: #839daf;

    font-size: 12px;
}


.guide-arrow {
    color: #7390a4;

    font-size: 24px;
}


/***********************
底部票务
***********************/

.ticket-section {
    position: relative;

    min-height: 350px;

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

    overflow: hidden;

    border-radius: 30px;
}


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

    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

    background:
        linear-gradient(
            to right,
            rgba(3, 21, 41, 0.97),
            rgba(3, 21, 41, 0.45)
        );
}


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

    opacity: 0.12;

    background-image:
        linear-gradient(
            rgba(86, 192, 252, 0.28) 1px,
            transparent 1px
        );

    background-size: 100% 30px;
}


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

    max-width: 280px;
}


.ticket-content > span {
    color: #5bc8ff;

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


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

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


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

    color: #a4b8c7;

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


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

    height: 48px;

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

    border-radius: 24px;

    background:
        linear-gradient(
            90deg,
            #168dde,
            #3cc2f5
        );

    color: #fff;

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


.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(3, 20, 38, 0.94);
    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: 650px;
    }


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


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


    .moment-card {
        flex-basis: 80%;
        height: 350px;
    }


    .team-section,
    .match-section,
    .city-section,
    .stadium-section,
    .video-section,
    .guide-section {
        padding-right: 14px;
        padding-left: 14px;
    }


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

}


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

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

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

}