    /* ========== 页面基础 ========== */
    .pusa-page {
        background: linear-gradient(180deg, #0d0d1a 0%, #1a1a2e 30%, #16213e 100%);
        min-height: 100vh;
    }

    /* ========== Banner区域 ========== */
    .pusa-banner {
        padding: 80px 20px 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .pusa-banner::before {
        content: '';
        position: absolute;
        top: -50%; left: -50%;
        width: 200%; height: 200%;
        background: radial-gradient(circle, rgba(255,215,0,0.03) 0%, transparent 70%);
        animation: bannerGlow 8s ease-in-out infinite;
    }
    @keyframes bannerGlow {
        0%, 100% { transform: rotate(0deg) scale(1); }
        50% { transform: rotate(180deg) scale(1.1); }
    }
    .pusa-banner h1 {
        color: #ffd700;
        font-size: 42px;
        margin-bottom: 15px;
        text-shadow: 0 0 30px rgba(255,215,0,0.4), 0 0 60px rgba(255,215,0,0.2);
        position: relative;
        z-index: 1;
        letter-spacing: 8px;
    }
    .pusa-banner .subtitle {
        color: rgba(255,255,255,0.6);
        font-size: 16px;
        position: relative;
        z-index: 1;
        letter-spacing: 2px;
    }
    .pusa-banner .subtitle span {
        display: inline-block;
        margin: 0 12px;
        padding: 6px 20px;
        background: rgba(255,255,255,0.05);
        border-radius: 25px;
        border: 1px solid rgba(255,215,0,0.2);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
    }
    .pusa-banner .subtitle span:hover {
        background: rgba(255,215,0,0.15);
        border-color: rgba(255,215,0,0.5);
        transform: translateY(-2px);
    }


    /* ========== 页面摘要 ========== */
    .page-summary {
        max-width: 900px;
        margin: 0 auto 40px;
        padding: 0 20px;
        text-align: center;
    }
    .page-summary p {
        color: rgba(255,255,255,0.75);
        font-size: 15px;
        line-height: 2;
        background: rgba(255,255,255,0.03);
        padding: 25px 35px;
        border-radius: 16px;
        border: 1px solid rgba(255,215,0,0.1);
        text-align: center;
        letter-spacing: 1px;
    }
    .page-summary p strong {
        color: #ffd700;
        font-weight: 600;
    }

    /* ========== 菩萨卡片区域 ========== */
    .pusa-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px 20px 60px;
    }
    .pusa-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    @media (max-width: 768px) {
        .pusa-grid {
            grid-template-columns: 1fr;
            gap: 25px;
        }
        .pusa-banner h1 {
            font-size: 28px;
            letter-spacing: 4px;
        }
    }

    .pusa-card {
        background: rgba(255,255,255,0.03);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.06);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        backdrop-filter: blur(10px);
    }
    .pusa-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        border-radius: 20px;
        padding: 1px;
        background: linear-gradient(135deg, rgba(255,215,0,0.1), transparent, rgba(255,215,0,0.05));
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }
    .pusa-card:hover {
        transform: translateY(-10px);
        border-color: rgba(255,215,0,0.2);
        box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 0 40px rgba(255,215,0,0.05);
    }

    /* ========== 菩萨头像区域 - 动态光晕 ========== */
    .pusa-card-header {
        padding: 40px 30px 30px;
        text-align: center;
        position: relative;
    }

    /* 外层旋转光环 */
    .pusa-avatar-wrap {
        position: relative;
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }
    .pusa-avatar-wrap::before {
        content: '';
        position: absolute;
        top: -15px; left: -15px;
        width: calc(100% + 30px);
        height: calc(100% + 30px);
        border-radius: 50%;
        border: 2px solid transparent;
        border-top-color: rgba(255,215,0,0.4);
        border-right-color: rgba(255,215,0,0.2);
        animation: rotateRing 4s linear infinite;
    }
    .pusa-avatar-wrap::after {
        content: '';
        position: absolute;
        top: -25px; left: -25px;
        width: calc(100% + 50px);
        height: calc(100% + 50px);
        border-radius: 50%;
        border: 1px dashed rgba(255,215,0,0.15);
        animation: rotateRingReverse 6s linear infinite;
    }
    @keyframes rotateRing {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    @keyframes rotateRingReverse {
        0% { transform: rotate(360deg); }
        100% { transform: rotate(0deg); }
    }

    /* 呼吸光晕 */
    .pusa-glow {
        position: absolute;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
        width: 180px; height: 180px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
        animation: breatheGlow 3s ease-in-out infinite;
    }
    @keyframes breatheGlow {
        0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
        50% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
    }

    /* 粒子光点 */
    .pusa-particles {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        pointer-events: none;
    }
    .pusa-particles span {
        position: absolute;
        width: 4px; height: 4px;
        background: rgba(255,215,0,0.6);
        border-radius: 50%;
        animation: particleFloat 3s ease-in-out infinite;
    }
    .pusa-particles span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
    .pusa-particles span:nth-child(2) { top: 80%; left: 70%; animation-delay: 0.5s; }
    .pusa-particles span:nth-child(3) { top: 30%; left: 85%; animation-delay: 1s; }
    .pusa-particles span:nth-child(4) { top: 70%; left: 15%; animation-delay: 1.5s; }
    .pusa-particles span:nth-child(5) { top: 50%; left: 50%; animation-delay: 2s; width: 2px; height: 2px; }
    @keyframes particleFloat {
        0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
        50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
    }

    /* 菩萨头像 */
    .pusa-avatar {
        position: relative;
        z-index: 2;
        width: 160px;
        height: 160px;
        margin: 20px auto 0;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid rgba(255,215,0,0.3);
        box-shadow: 0 0 30px rgba(255,215,0,0.2), inset 0 0 20px rgba(255,215,0,0.1);
        background: rgba(0,0,0,0.2);
        transition: all 0.4s ease;
    }
    .pusa-card:hover .pusa-avatar {
        border-color: rgba(255,215,0,0.6);
        box-shadow: 0 0 50px rgba(255,215,0,0.4), inset 0 0 30px rgba(255,215,0,0.15);
    }
    .pusa-avatar img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 8px;
        filter: drop-shadow(0 0 10px rgba(255,215,0,0.2));
        transition: all 0.4s ease;
    }
    .pusa-card:hover .pusa-avatar img {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(255,215,0,0.4));
    }

    .pusa-card-header h2 {
        color: #ffd700;
        font-size: 22px;
        margin-bottom: 8px;
        text-shadow: 0 0 15px rgba(255,215,0,0.3);
        letter-spacing: 2px;
    }
    .pusa-card-header .pusa-title {
        display: inline-block;
        padding: 5px 25px;
        background: rgba(255,215,0,0.1);
        border-radius: 25px;
        color: rgba(255,215,0,0.8);
        font-size: 14px;
        border: 1px solid rgba(255,215,0,0.15);
        letter-spacing: 3px;
    }

    /* ========== 卡片内容 ========== */
    .pusa-card-body {
        padding: 20px 30px;
    }
    .pusa-card-body .info-row {
        display: flex;
        align-items: flex-start;
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .pusa-card-body .info-row:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    .pusa-card-body .info-label {
        min-width: 70px;
        font-weight: 600;
        color: rgba(255,215,0,0.7);
        font-size: 13px;
        letter-spacing: 1px;
    }
    .pusa-card-body .info-value {
        flex: 1;
        color: rgba(255,255,255,0.65);
        font-size: 13px;
        line-height: 1.7;
    }
    .pusa-card-body .info-value .highlight {
        color: #ffd700;
        font-weight: 500;
    }

    .pusa-card-footer {
        padding: 0 30px 30px;
        text-align: center;
    }
    .pusa-card-footer .pusa-desc {
        color: rgba(255,255,255,0.55);
        font-size: 13px;
        line-height: 1.9;
        text-align: justify;
        margin-bottom: 20px;
    }
    .pusa-card-footer .pusa-btn {
        display: inline-block;
        padding: 12px 45px;
        border-radius: 30px;
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        transition: all 0.4s ease;
        border: 1px solid rgba(255,255,255,0.1);
        background: rgba(255,255,255,0.05);
        letter-spacing: 2px;
        position: relative;
        overflow: hidden;
    }
    .pusa-card-footer .pusa-btn::before {
        content: '';
        position: absolute;
        top: 0; left: -100%;
        width: 100%; height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.5s ease;
    }
    .pusa-card-footer .pusa-btn:hover::before {
        left: 100%;
    }
    .pusa-card-footer .pusa-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        border-color: rgba(255,215,0,0.3);
    }

    /* ========== 道场介绍区域 ========== */
    .daochang-section {
        background: linear-gradient(180deg, #0d0d1a 0%, #12122a 100%);
        padding: 80px 20px;
        position: relative;
    }
    .daochang-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
    }
    .daochang-section .section-title {
        text-align: center;
        font-size: 32px;
        color: #ffd700;
        margin-bottom: 10px;
        text-shadow: 0 0 20px rgba(255,215,0,0.3);
        letter-spacing: 4px;
    }
    .daochang-section .section-subtitle {
        text-align: center;
        color: rgba(255,255,255,0.4);
        margin-bottom: 60px;
        font-size: 15px;
        letter-spacing: 3px;
    }
    .daochang-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    @media (max-width: 768px) {
        .daochang-grid {
            grid-template-columns: 1fr;
        }
    }

    .daochang-card {
        background: rgba(255,255,255,0.02);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.04);
        display: flex;
        flex-direction: column;
        transition: all 0.4s ease;
    }
    .daochang-card:hover {
        border-color: rgba(255,215,0,0.15);
        transform: translateY(-5px);
        box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .daochang-card .daochang-img {
        width: 100%;
        height: 220px;
        background: linear-gradient(135deg, rgba(255,215,0,0.05), rgba(255,255,255,0.02));
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }
    .daochang-card .daochang-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
    }
    .daochang-card:hover .daochang-img img {
        transform: scale(1.08);
    }
    .daochang-card .daochang-info {
        padding: 28px;
        flex: 1;
    }
    .daochang-card .daochang-info h3 {
        font-size: 20px;
        color: #ffd700;
        margin-bottom: 8px;
        letter-spacing: 2px;
    }
    .daochang-card .daochang-info .daochang-tag {
        display: inline-block;
        padding: 4px 16px;
        border-radius: 15px;
        font-size: 12px;
        color: #fff;
        margin-bottom: 15px;
        letter-spacing: 1px;
    }
    .daochang-card .daochang-info p {
        color: rgba(255,255,255,0.6);
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 12px;
    }
    .daochang-card .daochang-info .feature-text {
        color: rgba(255,215,0,0.7);
        font-size: 13px;
        font-style: italic;
        border-left: 3px solid rgba(255,215,0,0.3);
        padding-left: 12px;
        line-height: 1.8;
    }

    /* ========== 成道日总览 ========== */
    .enlightenment-section {
        max-width: 1000px;
        margin: 0 auto;
        padding: 80px 20px;
        position: relative;
    }
    .enlightenment-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
    }
    .enlightenment-section .section-title {
        text-align: center;
        font-size: 28px;
        color: #ffd700;
        margin-bottom: 40px;
        text-shadow: 0 0 15px rgba(255,215,0,0.2);
        letter-spacing: 3px;
    }
    .enlightenment-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        background: rgba(255,255,255,0.02);
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(255,255,255,0.04);
    }
    .enlightenment-table th {
        background: rgba(255,215,0,0.08);
        color: #ffd700;
        padding: 18px 15px;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        border-bottom: 1px solid rgba(255,215,0,0.1);
    }
    .enlightenment-table td {
        padding: 16px 15px;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.03);
        font-size: 14px;
        color: rgba(255,255,255,0.7);
    }
    .enlightenment-table tr:last-child td {
        border-bottom: none;
    }
    .enlightenment-table tr:hover td {
        background: rgba(255,215,0,0.03);
    }
    .enlightenment-table .pusa-name {
        font-weight: 600;
        color: #ffd700;
    }
    .enlightenment-table .date-highlight {
        color: #ff6b6b;
        font-weight: 500;
    }

    /* ========== 相关推荐 ========== */
    .related-section {
        max-width: 1000px;
        margin: 0 auto;
        padding: 60px 20px;
        position: relative;
    }
    .related-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,215,0,0.2), transparent);
    }
    .related-section h2 {
        text-align: center;
        font-size: 24px;
        color: #ffd700;
        margin-bottom: 35px;
        letter-spacing: 3px;
    }
    .related-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    @media (max-width: 768px) {
        .related-links {
            grid-template-columns: 1fr;
        }
    }
    .related-links a {
        display: block;
        padding: 16px 22px;
        background: rgba(255,255,255,0.03);
        border-radius: 12px;
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        font-size: 14px;
        border: 1px solid rgba(255,255,255,0.05);
        border-left: 3px solid rgba(255,215,0,0.3);
        transition: all 0.3s ease;
        letter-spacing: 1px;
    }
    .related-links a:hover {
        background: rgba(255,215,0,0.05);
        border-left-color: #ffd700;
        color: #ffd700;
        transform: translateX(5px);
    }

    /* ========== 祈福区域 ========== */
    .pray-section {
        background: linear-gradient(180deg, #0d0d1a 0%, #1a0a2e 100%);
        padding: 80px 20px;
        text-align: center;
        position: relative;
    }
    .pray-section::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
    }
    .pray-section h2 {
        color: #ffd700;
        font-size: 30px;
        margin-bottom: 15px;
        text-shadow: 0 0 20px rgba(255,215,0,0.3);
        letter-spacing: 4px;
    }
    .pray-section p {
        color: rgba(255,255,255,0.5);
        font-size: 15px;
        margin-bottom: 35px;
        letter-spacing: 1px;
    }
    .pray-section .pray-btn {
        display: inline-block;
        padding: 16px 55px;
        background: linear-gradient(135deg, rgba(255,215,0,0.9) 0%, rgba(255,170,0,0.9) 100%);
        color: #1a1a2e;
        text-decoration: none;
        border-radius: 35px;
        font-size: 17px;
        font-weight: 700;
        transition: all 0.4s ease;
        box-shadow: 0 5px 30px rgba(255,215,0,0.2);
        letter-spacing: 3px;
        position: relative;
        overflow: hidden;
    }
    .pray-section .pray-btn::after {
        content: '';
        position: absolute;
        top: -50%; left: -50%;
        width: 200%; height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
        animation: btnShine 3s ease-in-out infinite;
    }
    @keyframes btnShine {
        0%, 100% { transform: rotate(0deg); opacity: 0; }
        50% { transform: rotate(180deg); opacity: 1; }
    }
    .pray-section .pray-btn:hover {
        transform: scale(1.08);
        box-shadow: 0 10px 40px rgba(255,215,0,0.4);
    }
