﻿/* ==================== 六爻神卦 - 全新主题样式 ==================== */
:root {
    --bg-dark: #1a2a4a;
    --bg-darker: #0f1a30;
    --bg-card: #2a3a5a;

    --gold: #d4a535;
    --gold-light: #f0c850;
    --gold-dark: #b8922e;

    --cream: #f5f0e6;
    --cream-dark: #e8e0d0;

    --red: #c75050;
    --pink: #ffb8c0;
    --pink-bg: #ffe4e8;
    --yellow-bg: #fff8e0;
    --blue-bg: #e0f0ff;
    --green-bg: #e0ffe8;

    --text-dark: #2a2a2a;
    --text-light: #f0f0f0;
    --text-muted: #8899aa;
}

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

html {
    scroll-behavior: smooth;
    /* 始终显示滚动条，防止页面宽度抖动影响 fixed 定位元素 */
    overflow-y: scroll;
    /* 防止移动端地址栏变化导致的视口高度抖动 */
    height: 100%;
}

body {
    font-family: var(--font-chinese-serif, 'Songti SC', 'STSong', 'SimSun', serif);
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    color: var(--text-light);
    min-height: 100%;
    line-height: 1.7;
}

/* ==================== 顶部滚动字幕 ==================== */
.top-marquee {
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(90deg, var(--red), #d06060);
    padding: 8px 0;
    overflow: hidden;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 35s linear infinite;
    color: #fff;
    font-size: 13px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

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

/* ==================== 隐私协议下方滚动弹幕 ==================== */
.privacy-marquee {
    margin-top: 15px;
    overflow: hidden;
    background: transparent;
}

.privacy-marquee-track {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 35s linear infinite;
    color: var(--gold-dark);
    font-size: 12px;
}


/* ==================== 视频背景区域 ==================== */
.video-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--bg-dark);
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    object-fit: cover;
    z-index: 0;
    /* 硬件加速 */
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(26, 42, 74, 0.7) 0%,
            rgba(26, 42, 74, 0.5) 50%,
            rgba(26, 42, 74, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 12px;
}

/* ==================== 主容器 ==================== */
.container {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 12px;
}

/* ==================== 头部区域 ==================== */
.hero-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 15px;
    padding: 20px 10px;
    background: transparent;
    border-radius: 0 0 20px 20px;
    margin-bottom: 15px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.badge-recommend {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
}

.title-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Ma Shan Zheng', cursive;
}

.title-vertical .char {
    font-size: 42px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(212, 165, 53, 0.5);
}

.subtitle-tag {
    background: rgba(212, 165, 53, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 10px;
}

.hero-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
}

.center-title {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 20px;
    color: var(--cream);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.center-title .big {
    font-size: 24px;
}

.center-title .dot {
    color: var(--gold);
}

.center-title .highlight {
    color: var(--gold-light);
}

.center-subtitle {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 8px;
}

/* ==================== 头部布局 V2 ==================== */
.hero-header-v2 {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 25px;
    padding: 20px 15px;
    background: transparent;
}

.hero-left-v2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.title-vertical-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Ma Shan Zheng', cursive;
}

.title-vertical-v2 .char {
    font-size: 20px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
    display: block;
}

.hero-center-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    flex: 1;
}

.hero-right-v2 {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
    padding-top: 5px;
}

/* 语言切换按钮 */
.lang-switch-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(212, 168, 83, 0.5);
    border-radius: 20px;
    padding: 6px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.lang-switch-btn:hover {
    background: rgba(212, 168, 83, 0.2);
    border-color: var(--gold);
    transform: scale(1.05);
}

.lang-switch-btn .lang-icon {
    font-size: 14px;
}

.lang-switch-btn .lang-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.main-title-v2 {
    font-family: 'Ma Shan Zheng', cursive;
    font-size: 48px;
    background: linear-gradient(180deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 6px;
    filter: drop-shadow(0 2px 4px rgba(212, 165, 53, 0.3));
}

.main-subtitle-v2 {
    font-size: 13px;
    color: var(--gold-light);
    margin-top: 8px;
    letter-spacing: 2px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-header-v2 {
        gap: 15px;
        padding: 15px 10px;
    }

    .title-vertical-v2 .char {
        font-size: 16px;
        line-height: 1.3;
    }

    .main-title-v2 {
        font-size: 38px;
        letter-spacing: 4px;
    }

    .hero-right-v2 {
        padding-top: 0;
    }

    .lang-switch-btn {
        padding: 5px 10px;
    }

    .lang-switch-btn .lang-icon {
        font-size: 12px;
    }

    .lang-switch-btn .lang-text {
        font-size: 11px;
    }

    .main-subtitle-v2 {
        font-size: 11px;
        letter-spacing: 1px;
    }
}

/* ==================== 六爻罗盘 ==================== */
.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.liuyao-compass {
    position: relative;
    width: 120px;
    height: 120px;
    animation: compassRotate 30s linear infinite;
}

@keyframes compassRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.compass-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.compass-ring.outer {
    width: 100%;
    height: 100%;
    border-color: rgba(212, 165, 53, 0.6);
    background: radial-gradient(circle, transparent 60%, rgba(212, 165, 53, 0.1) 100%);
}

.compass-ring.middle {
    width: 75%;
    height: 75%;
    border-color: rgba(212, 165, 53, 0.4);
    border-style: dashed;
}

.compass-ring.inner {
    width: 50%;
    height: 50%;
    border-color: rgba(212, 165, 53, 0.3);
}

.compass-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="12" text-anchor="middle" font-size="8" fill="%23d4a535">☰</text><text x="85" y="35" text-anchor="middle" font-size="8" fill="%23d4a535">☱</text><text x="92" y="55" text-anchor="middle" font-size="8" fill="%23d4a535">☲</text><text x="85" y="75" text-anchor="middle" font-size="8" fill="%23d4a535">☳</text><text x="50" y="95" text-anchor="middle" font-size="8" fill="%23d4a535">☴</text><text x="15" y="75" text-anchor="middle" font-size="8" fill="%23d4a535">☵</text><text x="8" y="55" text-anchor="middle" font-size="8" fill="%23d4a535">☶</text><text x="15" y="35" text-anchor="middle" font-size="8" fill="%23d4a535">☷</text></svg>');
    animation: compassRotate 30s linear infinite reverse;
}

.compass-center {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: compassRotate 30s linear infinite reverse;
}

.yin-yang {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to right, #f0f0f0 50%, #1a1a2e 50%);
    position: relative;
    border: 2px solid var(--gold);
    box-shadow: 0 0 15px rgba(212, 165, 53, 0.5);
}

.yang,
.yin {
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 50%;
}

.yang {
    background: #1a1a2e;
    top: 0;
    left: 25%;
}

.yin {
    background: #f0f0f0;
    bottom: 0;
    left: 25%;
}

.dot-white,
.dot-black {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
}

.dot-white {
    background: #f0f0f0;
    top: 18%;
}

.dot-black {
    background: #1a1a2e;
    bottom: 18%;
}

/* ==================== 功能标签 ==================== */
.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
}

.feature-tabs .tab {
    padding: 8px 16px;
    background: rgba(212, 165, 53, 0.1);
    border: 1px solid rgba(212, 165, 53, 0.4);
    border-radius: 20px;
    color: var(--cream);
    font-size: 13px;
}

.intro-text {
    text-align: center;
    color: var(--cream-dark);
    font-size: 14px;
    margin-bottom: 20px;
}

.intro-text .gold {
    color: var(--gold-light);
    font-weight: bold;
}

/* ==================== 用户评价 + 统计 ==================== */
.social-proof {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: rgba(42, 58, 90, 0.6);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 165, 53, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.reviews-scroll {
    flex: 1;
    overflow: hidden;
    height: 55px;
}

.reviews-track {
    animation: scrollUp 12s linear infinite;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

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

.review-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
}

.review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    flex-shrink: 0;
}

.review-text {
    font-size: 13px;
    color: var(--cream-dark);
    min-width: 0;
}

.review-text strong {
    color: var(--gold-light);
}

.review-text .time {
    color: var(--text-muted);
    font-size: 11px;
    margin-left: 8px;
}

.stats-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(212, 165, 53, 0.15);
    border: 1px solid var(--gold);
    border-radius: 10px;
    flex-shrink: 0;
}

.stats-box .icon {
    font-size: 22px;
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stats-number {
    font-size: 11px;
    color: var(--cream);
}

.stats-number strong {
    color: var(--gold-light);
    font-size: 16px;
}

.stats-label {
    font-size: 10px;
    color: var(--text-muted);
}

/* ==================== 表单卡片 ==================== */
.form-card {
    background: var(--cream);
    border-radius: 16px;
    padding: 25px 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-title {
    text-align: center;
    color: var(--text-dark);
    font-size: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #ccc;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.form-row label {
    width: 80px;
    color: var(--text-dark);
    font-size: 14px;
    flex-shrink: 0;
}

.form-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    color: var(--text-dark);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 53, 0.2);
}

.form-input::placeholder {
    color: #999;
}

.date-picker-wrap {
    flex: 1;
    position: relative;
}

.date-picker-wrap .form-input {
    cursor: pointer;
    width: 100%;
}

.gender-btns {
    display: flex;
    gap: 10px;
    flex: 1;
}

.gender-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: var(--text-dark);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.gender-btn:hover {
    border-color: var(--gold);
}

.gender-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-color: var(--gold);
    color: #fff;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #f5a623, #f7c04a);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    font-family: inherit;
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5);
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(245, 166, 35, 0.6);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnGlow 2.5s ease-in-out infinite;
}

@keyframes btnGlow {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.query-btn {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 25px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    margin-top: 12px;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.query-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.form-footer {
    margin-top: 15px;
    text-align: center;
}

.checkbox-wrap {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.checkbox-wrap input {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

.checkbox-wrap a {
    color: var(--gold-dark);
    text-decoration: none;
}

/* ==================== 订单号查询入口 ==================== */
.order-lookup-entry {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed rgba(212, 165, 53, 0.3);
    text-align: center;
}

.order-lookup-title {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.order-lookup-inline {
    display: flex;
    gap: 8px;
    max-width: 300px;
    margin: 0 auto;
}

.order-lookup-inline input {
    flex: 1;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 165, 53, 0.3);
    border-radius: 8px;
    font-size: 13px;
    color: #333;
    outline: none;
}

.order-lookup-inline input:focus {
    border-color: var(--gold);
}

.order-lookup-inline input::placeholder {
    color: #999;
}

.order-lookup-inline button {
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.order-lookup-inline button:hover {
    opacity: 0.9;
}

/* ==================== 通用Section样式 ==================== */
.section-box {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 25px 18px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 165, 53, 0.2);
}

.section-title {
    text-align: center;
    color: var(--gold-light);
    font-size: 18px;
    margin-bottom: 20px;
}

.section-title.gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-icon {
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
}

.section-desc {
    text-align: center;
    color: var(--cream-dark);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ==================== 人生玄机（视频背景） ==================== */
.mystery-section {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    /* 正方形比例 1:1 */
    aspect-ratio: 1 / 1;
    max-height: 100vw;
}

.mystery-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    object-fit: cover;
    z-index: 0;
    /* 硬件加速 */
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.mystery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 58, 90, 0.75);
    z-index: 1;
}

.mystery-content {
    position: relative;
    z-index: 2;
    padding: 25px 18px;
}

.mystery-content .section-icon,
.mystery-content .section-title,
.mystery-content .section-desc {
    position: relative;
    z-index: 2;
}

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

.feature-item {
    background: rgba(212, 165, 53, 0.1);
    border: 1px solid rgba(212, 165, 53, 0.3);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.feature-item h3 {
    color: var(--gold-light);
    font-size: 14px;
    margin-bottom: 4px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 12px;
}

/* ==================== 六爻介绍（视频背景） ==================== */
.intro-section {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    /* 正方形比例 1:1 */
    aspect-ratio: 1 / 1;
    max-height: 100vw;
}

.intro-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    object-fit: cover;
    z-index: 0;
    /* 硬件加速 */
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 58, 90, 0.75);
    z-index: 1;
}

.intro-content {
    position: relative;
    z-index: 2;
    padding: 25px 18px;
}

.intro-paragraph {
    color: var(--cream-dark);
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 15px;
    text-indent: 2em;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(212, 165, 53, 0.08);
    border-radius: 10px;
}

.intro-feature .icon {
    font-size: 24px;
    flex-shrink: 0;
}

.intro-feature strong {
    color: var(--gold-light);
    font-size: 14px;
    display: block;
    margin-bottom: 2px;
}

.intro-feature p {
    color: var(--text-muted);
    font-size: 12px;
    margin: 0;
}

/* ==================== 时间线（视频背景） ==================== */
.timeline-section {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    /* 正方形比例 1:1 */
    aspect-ratio: 1 / 1;
    max-height: 100vw;
}

.timeline-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    object-fit: cover;
    z-index: 0;
    /* 硬件加速 */
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.timeline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 58, 90, 0.75);
    z-index: 1;
}

.timeline-content {
    position: relative;
    z-index: 2;
    padding: 25px 18px;
}

.year-timeline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.year-item {
    position: relative;
    padding-left: 20px;
}

.year-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    transform: translateY(-50%);
}

.year-item::after {
    content: '';
    position: absolute;
    left: 4px;
    top: calc(50% + 10px);
    width: 2px;
    height: calc(100% + 5px);
    background: rgba(212, 165, 53, 0.3);
}

.year-item:last-child::after {
    display: none;
}

.year-badge {
    display: inline-block;
    background: rgba(212, 165, 53, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
}

.year-item.current .year-badge {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1a1a1a;
    font-weight: bold;
}

.year-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
    margin-bottom: 8px;
}

.year-card {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    background: rgba(30, 50, 80, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(212, 165, 53, 0.2);
}

.card-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.card-content strong {
    color: var(--cream);
    font-size: 12px;
    display: block;
    margin-bottom: 2px;
}

.card-content p {
    color: var(--text-muted);
    font-size: 11px;
    margin: 0;
}

.timeline-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(212, 165, 53, 0.1);
    border-radius: 12px;
}

.note-icon {
    font-size: 32px;
}

.timeline-note p {
    color: var(--cream-dark);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* ==================== 测算亮点（视频背景） ==================== */
.highlights-section {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    /* 正方形比例 1:1 */
    aspect-ratio: 1 / 1;
    max-height: 100vw;
}

.highlights-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    object-fit: cover;
    z-index: 0;
    /* 硬件加速 */
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.highlights-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 58, 90, 0.75);
    z-index: 1;
}

.highlights-content {
    position: relative;
    z-index: 2;
    padding: 25px 18px;
}

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

.highlight-item {
    background: rgba(212, 165, 53, 0.08);
    border-radius: 12px;
    padding: 18px 12px;
    text-align: center;
}

.hl-icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.highlight-item h3 {
    color: var(--gold-light);
    font-size: 13px;
    margin-bottom: 5px;
}

.highlight-item p {
    color: var(--text-muted);
    font-size: 11px;
}

/* ==================== 六爻结合八字 ==================== */
/* ==================== 开运商城入口 ==================== */
.shop-entry-section {
    background: url('sc.webp') center center / cover no-repeat;
    border: 1px solid rgba(201, 162, 39, 0.3);
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.shop-entry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 26, 48, 0.7);
    z-index: 0;
}

.shop-entry-section>* {
    position: relative;
    z-index: 1;
}

.shop-entry-container {
    max-width: 500px;
    margin: 0 auto;
}

.shop-entry-icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

.shop-entry-title {
    font-size: 24px;
    color: var(--gold-light);
    margin-bottom: 10px;
}

.shop-entry-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 14px;
}

.shop-entry-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.shop-feature {
    background: rgba(201, 162, 39, 0.15);
    border: 1px solid rgba(201, 162, 39, 0.3);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--gold-light);
}

.shop-entry-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #1a2a4a;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 165, 53, 0.3);
}

.shop-entry-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 165, 53, 0.5);
}

.shop-entry-btn:active {
    transform: translateY(-1px);
}

/* ==================== 六爻结合八字 ==================== */
.combine-section {
    text-align: center;
    background: url('sc1.webp') center center / cover no-repeat;
    position: relative;
}

.combine-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 26, 48, 0.6);
    z-index: 0;
}

.combine-section>* {
    position: relative;
    z-index: 1;
}

.combine-header .coins {
    font-size: 32px;
    margin-bottom: 15px;
}

.combine-header h2 {
    color: var(--gold-light);
    font-size: 18px;
    line-height: 1.6;
}

/* ==================== 适合人群 ==================== */
.section-title.pink-bg {
    background: linear-gradient(135deg, var(--pink), #ffc0cb);
    color: #8b4560;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin: 0 auto 20px;
    width: auto;
}

.audience-section {
    text-align: center;
}

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

.audience-item {
    padding: 20px 12px;
    border-radius: 12px;
    text-align: center;
}

.audience-item.pink {
    background: var(--pink-bg);
}

.audience-item.yellow {
    background: var(--yellow-bg);
}

.audience-item.blue {
    background: var(--blue-bg);
}

.audience-item.green {
    background: var(--green-bg);
}

.audience-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.audience-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 5px;
}

.audience-item p {
    color: #666;
    font-size: 12px;
    margin: 0;
}

/* ==================== 底部CTA ==================== */
.cta-section {
    text-align: center;
    background: linear-gradient(180deg, var(--bg-card), rgba(42, 58, 90, 0.5));
}

.cta-line1 {
    color: var(--cream);
    font-size: 16px;
    margin-bottom: 8px;
}

.cta-line2 {
    color: var(--cream-dark);
    font-size: 14px;
    margin-bottom: 20px;
}

.cta-line2 .gold {
    color: var(--gold-light);
    font-weight: bold;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    color: #1a1a1a;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 6px 25px rgba(212, 165, 53, 0.5);
    transition: all 0.3s;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(212, 165, 53, 0.6);
}

/* ==================== 页脚 ==================== */
.footer {
    text-align: center;
    padding: 30px 15px;
    color: var(--text-muted);
    font-size: 12px;
}

.disclaimer {
    margin-top: 8px;
    opacity: 0.7;
}

/* ==================== 弹窗样式 ==================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 16px;
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--gold);
    box-shadow: 0 0 50px rgba(212, 165, 53, 0.4);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(212, 165, 53, 0.3);
}

.modal-header h2 {
    color: var(--gold-light);
    font-size: 18px;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
}

.close-btn:hover {
    color: var(--gold);
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 18px 20px;
    text-align: center;
    border-top: 1px solid rgba(212, 165, 53, 0.3);
}

.modal-btn {
    padding: 12px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    color: #1a1a1a;
    cursor: pointer;
    font-family: inherit;
}

.modal-btn:hover {
    transform: scale(1.05);
}

/* 隐私弹窗 */
.privacy-modal-content {
    max-width: 500px;
}

.privacy-body {
    padding: 0;
}

.privacy-text {
    padding: 20px;
    color: var(--cream-dark);
    font-size: 13px;
    line-height: 1.9;
}

.privacy-text p {
    margin: 0 0 12px;
}

.privacy-text strong {
    color: var(--gold-light);
}

.privacy-footer {
    padding: 18px 20px;
    border-top: 1px solid rgba(212, 165, 53, 0.3);
    text-align: center;
    background: rgba(30, 50, 80, 0.5);
}

/* 日期弹窗 */
.date-modal-content {
    max-width: 380px;
}

.date-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}

.date-nav {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(212, 165, 53, 0.4);
    background: rgba(212, 165, 53, 0.1);
    color: var(--gold);
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s;
}

.date-nav:hover {
    border-color: var(--gold);
    background: rgba(212, 165, 53, 0.2);
}

.date-selectors {
    display: flex;
    gap: 8px;
}

.date-select {
    appearance: none;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(212, 165, 53, 0.4);
    background: rgba(30, 50, 80, 0.6);
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
}

.date-select:focus {
    outline: none;
    border-color: var(--gold);
}

.date-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: bold;
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.date-cell {
    aspect-ratio: 1;
    border-radius: 10px;
    border: 1px solid rgba(212, 165, 53, 0.2);
    background: rgba(30, 50, 80, 0.5);
    color: var(--text-light);
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.date-cell:hover {
    border-color: var(--gold);
    background: rgba(212, 165, 53, 0.15);
}

.date-cell.today {
    outline: 2px solid #4ecdc4;
    outline-offset: 1px;
}

.date-cell.selected {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-color: var(--gold);
    color: #1a1a1a;
}

.date-cell.blank {
    background: transparent;
    border: none;
    pointer-events: none;
}

.date-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.date-action {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #1a1a1a;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
}

.date-action.secondary {
    background: rgba(212, 165, 53, 0.15);
    border: 1px solid rgba(212, 165, 53, 0.4);
    color: var(--gold-light);
}

/* 结果展示 */
.result-section {
    margin-bottom: 20px;
}

.result-section h3 {
    color: var(--gold-light);
    font-size: 15px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(212, 165, 53, 0.3);
}

.bazi-display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.bazi-pillar {
    text-align: center;
    padding: 12px 8px;
    background: rgba(30, 50, 80, 0.6);
    border-radius: 10px;
    border: 1px solid rgba(212, 165, 53, 0.2);
}

.pillar-title {
    color: var(--text-muted);
    font-size: 11px;
    margin-bottom: 8px;
}

.pillar-char {
    display: block;
    font-size: 22px;
    color: var(--gold);
    font-family: 'Ma Shan Zheng', cursive;
    margin: 3px 0;
}

.wuxing-chart {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 8px;
}

.wuxing-item {
    text-align: center;
    padding: 10px 12px;
    border-radius: 8px;
    min-width: 50px;
}

.wuxing-item.wood {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.wuxing-item.fire {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.wuxing-item.earth {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.wuxing-item.metal {
    background: rgba(226, 232, 240, 0.2);
    color: #e2e8f0;
}

.wuxing-item.water {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.wuxing-icon {
    font-size: 20px;
    display: block;
    margin-bottom: 4px;
}

.wuxing-name {
    font-size: 13px;
    display: block;
}

.wuxing-count {
    font-size: 11px;
    opacity: 0.8;
}

.destiny-text {
    color: var(--cream-dark);
    font-size: 13px;
    line-height: 1.9;
}

.report-text {
    /* 保留空格与对齐（适合命盘表格），超出则横向滚动 */
    white-space: pre-wrap;
    word-break: break-word;
    overflow-x: auto;
    color: var(--cream-dark);
    font-size: 14px;
    line-height: 1.9;
    background: rgba(30, 50, 80, 0.55);
    border: 1px solid rgba(212, 165, 53, 0.25);
    border-radius: 12px;
    padding: 18px 16px;
    max-height: 65vh;
    overflow: auto;
    font-family: var(--font-chinese-serif, 'Songti SC', 'STSong', 'SimSun', serif);
}

/* 流式生成效果 */
.report-text.streaming::after {
    content: '▌';
    animation: cursorBlink 0.8s infinite;
    color: var(--gold);
    font-weight: bold;
}

@keyframes cursorBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.advice-list {
    list-style: none;
}

.advice-list li {
    position: relative;
    padding: 8px 0 8px 20px;
    color: var(--cream-dark);
    font-size: 13px;
    border-bottom: 1px dashed rgba(212, 165, 53, 0.2);
}

.advice-list li:last-child {
    border-bottom: none;
}

.advice-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ==================== 响应式 ==================== */
@media (max-width: 400px) {
    .hero-header {
        grid-template-columns: auto 1fr;
    }

    .hero-right {
        grid-column: 1 / -1;
        justify-content: center;
        padding-top: 15px;
    }

    .title-vertical .char {
        font-size: 36px;
    }

    .liuyao-compass {
        width: 100px;
        height: 100px;
    }

    .year-cards {
        grid-template-columns: 1fr;
    }
}

/* 滚动条 */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

/* ==================== 测算后你会知道 ==================== */
.knowafter-section {
    background: var(--cream);
    border: none;
}

.knowafter-section .section-title {
    color: var(--text-dark);
    font-size: 16px;
}

.know-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.know-category {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    border-left: 4px solid var(--gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.know-category.highlight-know {
    background: linear-gradient(135deg, #fff8e8, #fff);
    border-left-color: var(--red);
}

.know-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.know-icon {
    font-size: 20px;
}

.know-header strong {
    color: var(--text-dark);
    font-size: 14px;
}

.know-items {
    list-style: none;
    margin: 10px 0 0 30px;
}

.know-items li {
    position: relative;
    padding: 5px 0 5px 15px;
    color: #666;
    font-size: 13px;
}

.know-items li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ==================== 为什么需要六爻神卦 ==================== */
.why-section {
    background: var(--cream);
    border: none;
}

.why-section .section-title {
    color: var(--text-dark);
}

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

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.why-bullet {
    color: var(--gold);
    font-size: 10px;
    margin-top: 4px;
}

.why-item p {
    color: var(--text-dark);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ==================== 用户反馈收集 ==================== */
.feedback-section {
    background: var(--cream);
    border: none;
}

.feedback-section .section-title {
    color: var(--text-dark);
}

.feedback-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feedback-item {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.feedback-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a90d9, #357abd);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.feedback-avatar.female {
    background: linear-gradient(135deg, #e91e8c, #c2185b);
}

.feedback-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.feedback-content {
    flex: 1;
    min-width: 0;
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.feedback-header strong {
    color: var(--text-dark);
    font-size: 14px;
}

.feedback-tag {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
}

.feedback-text {
    color: #555;
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 8px;
}

.feedback-stars {
    font-size: 12px;
}

/* ==================== 人生感悟引导 ==================== */
.lifequote-section {
    background: var(--cream);
    border: none;
    text-align: center;
}

.lifequote-box {
    background: linear-gradient(135deg, #fff8e0, #fff);
    border: 2px dashed var(--gold);
    border-radius: 15px;
    padding: 25px 20px;
}

.quote-main {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* ==================== 大罗盘装饰 ==================== */
.bigcompass-section {
    background: var(--cream);
    border: none;
    text-align: center;
    padding: 40px 20px;
}

.big-compass {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    animation: bigCompassRotate 40s linear infinite;
}

@keyframes bigCompassRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.bc-ring {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.bc-outer {
    width: 100%;
    height: 100%;
    border: 3px solid var(--gold);
    background: radial-gradient(circle, rgba(245, 240, 230, 0.5) 30%, rgba(212, 165, 53, 0.15) 100%);
    box-shadow: 0 0 30px rgba(212, 165, 53, 0.3);
}

.bc-middle {
    width: 75%;
    height: 75%;
    border: 2px dashed var(--gold-dark);
}

.bc-inner {
    width: 50%;
    height: 50%;
    border: 2px solid var(--gold);
}

.bc-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text x="50" y="10" text-anchor="middle" font-size="6" fill="%23b8922e">乾</text><text x="85" y="30" text-anchor="middle" font-size="6" fill="%23b8922e">兑</text><text x="95" y="55" text-anchor="middle" font-size="6" fill="%23b8922e">离</text><text x="85" y="80" text-anchor="middle" font-size="6" fill="%23b8922e">震</text><text x="50" y="97" text-anchor="middle" font-size="6" fill="%23b8922e">巽</text><text x="15" y="80" text-anchor="middle" font-size="6" fill="%23b8922e">坎</text><text x="5" y="55" text-anchor="middle" font-size="6" fill="%23b8922e">艮</text><text x="15" y="30" text-anchor="middle" font-size="6" fill="%23b8922e">坤</text></svg>');
    animation: bigCompassRotate 40s linear infinite reverse;
}

.bc-center {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: bigCompassRotate 40s linear infinite reverse;
}

.bc-yinyang {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to right, #fff 50%, #333 50%);
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 165, 53, 0.5);
    position: relative;
}

.bc-yang,
.bc-yin {
    position: absolute;
    width: 50%;
    height: 50%;
    border-radius: 50%;
}

.bc-yang {
    background: #333;
    top: 0;
    left: 25%;
}

.bc-yin {
    background: #fff;
    bottom: 0;
    left: 25%;
}

.compass-caption {
    color: var(--text-dark);
    font-size: 14px;
    margin: 0;
}

/* ==================== 分析进度展示 ==================== */
.analysis-section {
    background: var(--cream);
    border: none;
}

.analysis-item {
    margin-bottom: 20px;
}

.analysis-item:last-child {
    margin-bottom: 0;
}

.analysis-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 14px;
}

.analysis-icon {
    font-size: 18px;
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.progress-fill.animated {
    width: 0%;
    animation: progressAnim 3s ease-in-out infinite;
}

@keyframes progressAnim {
    0% {
        width: 0%;
    }

    50% {
        width: 80%;
    }

    100% {
        width: 100%;
    }
}

/* ==================== 价格展示 ==================== */
.price-section {
    background: var(--cream);
    border: none;
    text-align: center;
}

.price-avatar {
    font-size: 50px;
    margin-bottom: 10px;
}

.price-intro {
    color: var(--text-dark);
    font-size: 14px;
    margin-bottom: 20px;
}

.unlock-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #f5a623, #f7c04a);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: inherit;
    box-shadow: 0 6px 25px rgba(245, 166, 35, 0.5);
}

.unlock-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnGlow 2.5s ease-in-out infinite;
}

/* ==================== 未来一年事件预告底部 ==================== */
.preview-section {
    background: linear-gradient(180deg, #e8f4fc, #d4eaf7);
    border: 2px solid #a8d4f0;
    text-align: center;
}

.preview-title {
    color: #1976d2;
    font-size: 18px;
    margin-bottom: 20px;
}

.preview-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.preview-stat {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stat-icon {
    font-size: 16px;
}

.stat-value {
    color: #1976d2;
    font-size: 18px;
    font-weight: bold;
}

.stat-label {
    color: #555;
    font-size: 12px;
}

.price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-label {
    background: #ff5252;
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
}

.price-current {
    color: #ff5252;
    font-size: 32px;
    font-weight: bold;
}

.price-original {
    color: #999;
    font-size: 16px;
    text-decoration: line-through;
}

.green-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    margin-bottom: 20px;
    transition: all 0.3s;
}

.green-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.5);
}

.contact-info {
    padding-top: 15px;
    border-top: 1px dashed #a8d4f0;
}

.contact-info p {
    color: #555;
    font-size: 13px;
    margin: 5px 0;
}

/* ==================== 支付弹窗 ==================== */
.payment-modal-content {
    width: 280px;
    max-width: 85vw;
    background: linear-gradient(180deg, #1a2a4a, #0f1a30);
    /* 关键：避免 PayPal iframe 在弹窗滚动容器里出现点击无响应/被裁剪 */
    overflow: visible;
}

.payment-body {
    padding: 8px;
}

.payment-info {
    text-align: center;
}

.payment-notice {
    background: rgba(212, 165, 53, 0.15);
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 4px 8px;
    color: var(--gold-light);
    font-size: 10px;
    margin-bottom: 6px;
}

.payment-amount {
    background: linear-gradient(135deg, #2a3a5a, #1a2a4a);
    border-radius: 6px;
    padding: 5px 8px;
    margin-bottom: 5px;
}

.amount-label {
    display: block;
    color: var(--text-muted);
    font-size: 9px;
    margin-bottom: 2px;
}

.amount-value {
    font-size: 18px;
    font-weight: bold;
    color: #4ade80;
    font-family: 'Courier New', monospace;
    font-variant-numeric: tabular-nums;
    display: inline-block;
}

.amount-unit {
    color: var(--text-muted);
    font-size: 10px;
    margin-left: 2px;
}

.payment-qrcode {
    background: #fff;
    border-radius: 6px;
    padding: 4px;
    margin-bottom: 5px;
    display: inline-block;
}

.payment-qrcode canvas,
.payment-qrcode img {
    width: 100px !important;
    height: 100px !important;
}

.payment-qrcode canvas,
.payment-qrcode img {
    display: block;
}

.payment-address {
    margin-bottom: 5px;
}

.address-label {
    display: block;
    color: var(--text-muted);
    font-size: 9px;
    margin-bottom: 2px;
}

.address-box {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(30, 50, 80, 0.6);
    border: 1px solid rgba(212, 165, 53, 0.3);
    border-radius: 4px;
    padding: 4px 6px;
}

.address-box .address-highlight {
    flex: 1;
    color: var(--cream);
    font-size: 9px;
    font-family: 'Courier New', monospace;
    text-align: left;
    word-break: break-all;
    line-height: 1.2;
}

.copy-btn {
    background: var(--gold);
    border: none;
    border-radius: 3px;
    padding: 3px 6px;
    color: #1a1a1a;
    font-size: 9px;
    font-weight: bold;
    cursor: pointer;
    flex-shrink: 0;
}

.address-box .address-highlight {
    flex: 1;
    color: var(--cream);
    font-size: 12px;
    font-family: 'Courier New', monospace;
    text-align: left;
}

.copy-btn {
    background: var(--gold);
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--gold-light);
}

/* 地址高亮样式 */
.address-highlight {
    display: inline;
    word-break: break-all;
    line-height: 1.6;
}

.addr-highlight {
    color: #4ade80 !important;
    font-weight: bold;
    font-size: 12px !important;
}

.addr-middle {
    color: #8899aa;
    font-size: 11px !important;
}

/* 支付警告 */
.payment-warning {
    background: rgba(255, 100, 100, 0.1);
    border: 1px solid rgba(255, 100, 100, 0.3);
    border-radius: 4px;
    padding: 3px 6px;
    margin-bottom: 4px;
}

.payment-warning p {
    color: #ffa0a0;
    font-size: 9px;
    margin: 0;
    text-align: center;
}

.highlight-amount {
    color: #ff6b6b;
    font-weight: bold;
}

/* 倒计时样式 */
.payment-countdown {
    background: linear-gradient(135deg, rgba(212, 165, 53, 0.2), rgba(212, 165, 53, 0.1));
    border: 1px solid var(--gold);
    border-radius: 4px;
    padding: 3px 8px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.countdown-icon {
    font-size: 12px;
}

.countdown-label {
    color: var(--gold-light);
    font-size: 9px;
}

.countdown-value {
    color: #4ade80;
    font-size: 11px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    font-variant-numeric: tabular-nums;
    display: inline-block;
}

.countdown-value.expired {
    color: #ff6b6b;
}

/* 二维码容器 */
.qr-wrapper {
    text-align: center;
}

.qr-wrapper img {
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

.qr-hint {
    color: #666;
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 0;
}

.qr-error {
    font-size: 60px;
    margin-bottom: 10px;
}

/* 支付方式选择 */
.payment-methods {
    text-align: center;
}

.payment-select-hint {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.method-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
}

.method-btn {
    flex: 1;
    max-width: 150px;
    padding: 20px 15px;
    background: linear-gradient(135deg, #2a3a5a, #1a2a4a);
    border: 2px solid rgba(212, 165, 53, 0.3);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: visible;
}

.method-btn:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 165, 53, 0.2);
}

.method-btn.active {
    border-color: var(--gold);
    background: linear-gradient(135deg, #3a4a6a, #2a3a5a);
}

.method-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 推荐样式 */
.method-btn.recommended {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #3a4520, #2a3a1a);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

.method-btn.recommended:hover {
    border-color: #fbbf24;
    box-shadow: 0 5px 25px rgba(245, 158, 11, 0.3);
}

/* 折扣标签 */
.method-discount-tag {
    position: absolute;
    top: -10px;
    left: -10px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 8px;
    transform: rotate(-15deg);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    animation: discount-pulse 2s ease-in-out infinite;
}

@keyframes discount-pulse {

    0%,
    100% {
        transform: rotate(-15deg) scale(1);
    }

    50% {
        transform: rotate(-15deg) scale(1.05);
    }
}

/* 推荐使用标签 */
.method-recommend-tag {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: 9px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.method-icon {
    font-size: 32px;
}

.method-name {
    color: var(--cream);
    font-size: 16px;
    font-weight: bold;
}

.method-desc {
    color: var(--text-muted);
    font-size: 11px;
}

.payment-amount-preview {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 10px;
    padding: 12px 20px;
    color: #4ade80;
    font-size: 16px;
}

.payment-amount-preview strong {
    font-size: 24px;
    margin: 0 5px;
}

/* 返回按钮 */
.back-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 20px;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.2s;
}

.back-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* PayPal 按钮容器 */
#paypal-button-container {
    min-height: 150px;
    margin: 20px 0;
}

/* PayPal 扫码支付 */
.paypal-qr-section {
    text-align: center;
    margin: 15px 0;
}

.paypal-qr-section .qr-hint {
    color: var(--gold-light);
    font-size: 14px;
    margin-bottom: 12px;
}

.paypal-qrcode {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    display: inline-block;
    margin-bottom: 10px;
}

.paypal-qrcode canvas,
.paypal-qrcode img {
    display: block;
    border-radius: 8px;
}

.paypal-qr-section .qr-tip {
    color: var(--text-muted);
    font-size: 12px;
}

.payment-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: 13px;
}

.payment-divider::before,
.payment-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(212, 165, 53, 0.3);
}

.payment-divider span {
    padding: 0 15px;
}

.btn-hint {
    color: var(--text-muted);
    font-size: 13px;
    text-align: center;
    margin-bottom: 10px;
}

.payment-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(212, 165, 53, 0.1);
    border-radius: 10px;
}

.status-icon {
    font-size: 24px;
    animation: statusPulse 1.5s ease-in-out infinite;
    /* 防止动画影响布局 */
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    flex-shrink: 0;
}

@keyframes statusPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.payment-status span {
    color: var(--gold-light);
    font-size: 14px;
}

.payment-status.success {
    background: rgba(74, 222, 128, 0.15);
}

.payment-status.success .status-icon {
    animation: none;
}

.payment-status.success span {
    color: #4ade80;
}

/* 我已付款按钮区域 */
.paid-confirm-section {
    margin: 5px 0;
    text-align: center;
}

.paid-confirm-hint {
    color: var(--text-muted);
    font-size: 9px;
    margin-bottom: 3px;
}

.paid-confirm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    border: none;
    border-radius: 15px;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(74, 222, 128, 0.4);
}

.paid-confirm-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(74, 222, 128, 0.5);
}

.paid-confirm-btn span {
    font-size: 11px;
}

/* 等待确认区域 */
.payment-waiting-section {
    margin: 15px 0;
}

.payment-waiting-section.hidden {
    display: none;
}

/* 付款提示 */
.payment-tips {
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.1), rgba(74, 222, 128, 0.05));
    border: 1px solid rgba(74, 222, 128, 0.3);
    border-radius: 10px;
    padding: 15px;
    margin-top: 15px;
    text-align: left;
}

.payment-tips .tip-highlight {
    color: #4ade80;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.payment-tips .tip-sub {
    color: var(--text-muted);
    font-size: 12px;
    margin: 5px 0;
    padding-left: 5px;
}

/* ==================== 算卦加载动画 ==================== */
.loading-modal {
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
}

.loading-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-container {
    text-align: center;
    padding: 40px;
    max-width: 400px;
}

/* 八卦旋转器 */
.bagua-spinner {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
}

.bagua-outer {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotateBagua 8s linear infinite;
}

.bagua-outer .trigram {
    position: absolute;
    font-size: 28px;
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 165, 53, 0.6);
    transform-origin: center;
}

.bagua-outer .trigram:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bagua-outer .trigram:nth-child(2) {
    top: 15%;
    right: 10%;
}

.bagua-outer .trigram:nth-child(3) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.bagua-outer .trigram:nth-child(4) {
    bottom: 15%;
    right: 10%;
}

.bagua-outer .trigram:nth-child(5) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.bagua-outer .trigram:nth-child(6) {
    bottom: 15%;
    left: 10%;
}

.bagua-outer .trigram:nth-child(7) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.bagua-outer .trigram:nth-child(8) {
    top: 15%;
    left: 10%;
}

.yinyang {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 70px;
    color: var(--gold-light);
    animation: rotateYinyang 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(212, 165, 53, 0.8), 0 0 60px rgba(212, 165, 53, 0.4);
}

@keyframes rotateBagua {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateYinyang {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
    }
}

/* 卦象变化 */
.hexagram-change {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
    height: 40px;
}

.hexagram-change .hex {
    font-size: 32px;
    color: var(--gold);
    animation: hexFlicker 1.5s ease-in-out infinite;
    opacity: 0.6;
}

.hexagram-change .hex:nth-child(1) {
    animation-delay: 0s;
}

.hexagram-change .hex:nth-child(2) {
    animation-delay: 0.2s;
}

.hexagram-change .hex:nth-child(3) {
    animation-delay: 0.4s;
}

.hexagram-change .hex:nth-child(4) {
    animation-delay: 0.6s;
}

.hexagram-change .hex:nth-child(5) {
    animation-delay: 0.8s;
}

.hexagram-change .hex:nth-child(6) {
    animation-delay: 1s;
}

@keyframes hexFlicker {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
        color: var(--gold-light);
    }
}

/* 加载文字 */
.loading-messages {
    margin-bottom: 25px;
}

.loading-main {
    font-size: 20px;
    color: var(--gold-light);
    margin-bottom: 10px;
    animation: textGlow 2s ease-in-out infinite;
}

.loading-sub {
    font-size: 14px;
    color: var(--text-muted);
    animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 0 10px rgba(212, 165, 53, 0.5);
    }

    50% {
        text-shadow: 0 0 20px rgba(212, 165, 53, 0.8), 0 0 30px rgba(212, 165, 53, 0.4);
    }
}

@keyframes fadeInOut {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* 进度点 - 注意：此样式用于首页点状加载，result.html使用独立的progress-bar样式 */
.loading-progress.progress-dots-container {
    display: flex;
    justify-content: center;
}

.progress-dots {
    display: flex;
    gap: 12px;
}

.progress-dots .dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.progress-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.progress-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.progress-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {

    0%,
    80%,
    100% {
        transform: scale(0.6);
        opacity: 0.4;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 15px rgba(212, 165, 53, 0.8);
    }
}

/* ==================== 假进度条模态框 ==================== */
.calculation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    overflow: hidden;
}

.calculation-modal.show {
    display: block;
}

/* 视频背景 */
.calculation-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.calculation-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 20px 120px;
}

/* 进度步骤 */
.calculation-step {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* 进度条 */
.calculation-progress {
    width: 80%;
    max-width: 300px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #c9a227, #f0c850, #c9a227);
    background-size: 200% 100%;
    border-radius: 6px;
    transition: width 0.3s ease;
    animation: shimmer 1.5s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* 结果预览卡片 - 道家八卦风格 */
.calculation-result {
    width: 100%;
    max-width: 400px;
    animation: fadeInUp 0.5s ease;
    padding: 0 15px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.result-preview-card {
    background: linear-gradient(180deg, #1a2a4a 0%, #0f1a30 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #c9a227, #f0c850, #c9a227) 1;
    position: relative;
    overflow: hidden;
}

/* 八卦纹理背景 */
.result-preview-card::before {
    content: '☯';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    color: rgba(201, 162, 39, 0.05);
    pointer-events: none;
}

.result-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.3);
    margin-bottom: 18px;
    font-size: 18px;
    color: #f0c850;
    font-weight: 600;
    position: relative;
}

.result-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #c9a227, transparent);
}

.result-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 8px rgba(201, 162, 39, 0.5));
}

.result-info {
    position: relative;
    z-index: 1;
}

.result-info p {
    margin: 12px 0;
    font-size: 15px;
    color: #d4c4a8;
    line-height: 1.7;
}

.result-info strong {
    color: #f0c850;
    font-weight: 600;
}

.result-note {
    background: rgba(201, 162, 39, 0.1);
    padding: 15px 18px;
    border-radius: 12px;
    font-size: 14px;
    color: #a89878;
    line-height: 1.7;
    margin-top: 18px;
    border-left: 3px solid #c9a227;
    position: relative;
    z-index: 1;
}

/* 解锁按钮 - 道家风格 */
.unlock-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #1a2a4a 0%, #2a3a5a 50%, #1a2a4a 100%);
    border: 2px solid #c9a227;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    color: #f0c850;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.unlock-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3), transparent);
    animation: btnShimmer 2s infinite;
}

@keyframes btnShimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.unlock-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201, 162, 39, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-color: #f0c850;
    text-shadow: 0 0 15px rgba(240, 200, 80, 0.5);
}

.unlock-btn:active {
    transform: translateY(-1px);
}