        /* ===== 静心阁整体样式 ===== */
        .jingxin-wrapper {
            background: linear-gradient(180deg, #1a0a0a 0%, #2d1810 30%, #1a0a0a 100%);
            min-height: 100vh;
            color: #f0e68c;
            font-family: "Microsoft YaHei", "SimSun", serif;
        }

        /* 顶部横幅 */
        .jingxin-header {
            text-align: center;
            padding: 40px 20px 20px;
            background: linear-gradient(180deg, rgba(139,0,0,0.3) 0%, transparent 100%);
        }
        .jingxin-header h1 {
            font-size: 36px;
            color: #f0e68c;
            text-shadow: 0 0 20px rgba(240,230,140,0.4);
            margin-bottom: 10px;
            letter-spacing: 8px;
        }
        .jingxin-header .subtitle {
            font-size: 16px;
            color: #cd853f;
            letter-spacing: 4px;
        }
        .jingxin-header .foyu-daily {
            margin-top: 15px;
            padding: 15px 25px;
            background: rgba(139,0,0,0.2);
            border: 1px solid rgba(240,230,140,0.2);
            border-radius: 8px;
            display: inline-block;
            font-size: 18px;
            color: #f0e68c;
            max-width: 800px;
            line-height: 1.8;
        }

        /* 游戏导航 */
        .games-nav {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 15px;
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        .game-nav-item {
            background: linear-gradient(135deg, rgba(139,0,0,0.4) 0%, rgba(90,30,10,0.4) 100%);
            border: 1px solid rgba(240,230,140,0.15);
            border-radius: 10px;
            padding: 20px 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            color: #f0e68c;
        }
        .game-nav-item:hover, .game-nav-item.active {
            background: linear-gradient(135deg, rgba(180,50,0,0.5) 0%, rgba(139,0,0,0.5) 100%);
            border-color: rgba(240,230,140,0.4);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
        }
        .game-nav-item .icon {
            font-size: 32px;
            margin-bottom: 8px;
            display: block;
        }
        .game-nav-item .name {
            font-size: 15px;
            font-weight: bold;
            display: block;
        }
        .game-nav-item .desc {
            font-size: 11px;
            color: #cd853f;
            margin-top: 4px;
            display: block;
        }

        /* 游戏区域 */
        .game-section {
            max-width: 900px;
            margin: 0 auto 40px;
            padding: 0 20px;
            display: none;
        }
        .game-section.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .game-box {
            background: linear-gradient(135deg, rgba(60,20,10,0.6) 0%, rgba(40,15,8,0.6) 100%);
            border: 1px solid rgba(240,230,140,0.15);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
        }
        .game-box h2 {
            font-size: 24px;
            margin-bottom: 5px;
            color: #f0e68c;
        }
        .game-box .game-tip {
            font-size: 13px;
            color: #cd853f;
            margin-bottom: 25px;
        }

        /* ===== 电子木鱼 ===== */
        .muyu-container {
            position: relative;
            margin: 20px auto;
        }
        .muyu-gongde {
            font-size: 48px;
            font-weight: bold;
            color: #f0e68c;
            text-shadow: 0 0 20px rgba(240,230,140,0.5);
            margin-bottom: 5px;
        }
        .muyu-label {
            font-size: 14px;
            color: #cd853f;
            margin-bottom: 30px;
        }
        .muyu {
            width: 180px;
            height: 180px;
            background: radial-gradient(circle at 35% 35%, #A0522D, #5D3A1A);
            border-radius: 50% 50% 45% 45%;
            position: relative;
            margin: 0 auto;
            cursor: pointer;
            transition: transform 0.1s;
            box-shadow: 0 15px 40px rgba(0,0,0,0.6), inset 0 -5px 20px rgba(0,0,0,0.4);
        }
        .muyu:active { transform: scale(0.92); }
        .muyu::before {
            content: "";
            width: 50px;
            height: 70px;
            background: linear-gradient(180deg, #CD853F 0%, #8B4513 100%);
            border-radius: 50% 50% 40% 40%;
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            box-shadow: 0 5px 15px rgba(0,0,0,0.4);
        }
        .muyu-text {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 24px;
            color: #f0e68c;
            font-weight: bold;
        }
        .float-text {
            position: fixed;
            font-size: 22px;
            font-weight: bold;
            color: #f0e68c;
            pointer-events: none;
            animation: floatUp 1s ease-out forwards;
            text-shadow: 0 0 10px rgba(240,230,140,0.6);
            z-index: 9999;
        }
        @keyframes floatUp {
            0% { opacity: 1; transform: translateY(0) scale(1); }
            100% { opacity: 0; transform: translateY(-80px) scale(1.3); }
        }
        .ripple {
            position: absolute;
            border: 2px solid rgba(240,230,140,0.4);
            border-radius: 50%;
            animation: ripple 0.6s ease-out forwards;
            pointer-events: none;
        }
        @keyframes ripple {
            0% { width: 0; height: 0; opacity: 1; }
            100% { width: 250px; height: 250px; opacity: 0; }
        }
        .muyu-rank {
            margin-top: 25px;
            padding: 12px 20px;
            background: rgba(139,0,0,0.2);
            border-radius: 8px;
            font-size: 13px;
            color: #aaa;
        }
        .muyu-rank span { color: #f0e68c; font-weight: bold; }

        /* ===== 观音灵签 ===== */
        .qian-tong {
            width: 100px;
            height: 160px;
            background: linear-gradient(180deg, #DAA520 0%, #B8860B 100%);
            border-radius: 8px 8px 35px 35px;
            margin: 20px auto;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s;
            position: relative;
        }
        .qian-tong:hover { transform: scale(1.05); }
        .qian-tong::before {
            content: "签筒";
            font-size: 20px;
            color: #8B4513;
            font-weight: bold;
        }
        .qian-tong.shake { animation: shake 0.5s ease-in-out; }
        @keyframes shake {
            0%,100% { transform: rotate(0deg); }
            25% { transform: rotate(-12deg); }
            75% { transform: rotate(12deg); }
        }
        .qian-result-box {
            display: none;
            background: linear-gradient(180deg, #FFF8DC 0%, #F5DEB3 100%);
            color: #333;
            padding: 25px;
            border-radius: 10px;
            margin-top: 20px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.4);
        }
        .qian-result-box.show { display: block; animation: fadeIn 0.5s; }
        .qian-level {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 8px;
        }
        .qian-level.shang { color: #c41a1a; }
        .qian-level.zhong { color: #d4a017; }
        .qian-level.xia { color: #666; }
        .qian-num { font-size: 13px; color: #888; margin-bottom: 12px; }
        .qian-text { font-size: 22px; font-weight: bold; margin-bottom: 15px; color: #5D0000; }
        .qian-desc { font-size: 14px; line-height: 1.8; color: #555; text-align: left; }
        .qian-jie { margin-top: 15px; padding-top: 15px; border-top: 1px dashed #d4a017; font-size: 14px; color: #8B4513; font-weight: bold; }
        .qian-btns { margin-top: 20px; }
        .qian-btn {
            padding: 10px 25px;
            background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
            border: none;
            border-radius: 20px;
            color: #fff;
            font-size: 15px;
            cursor: pointer;
            margin: 0 5px;
        }
        .qian-btn:hover { background: linear-gradient(135deg, #E5B80B 0%, #C99700 100%); }

        /* ===== 转经筒 ===== */
        .zhuanjing-container {
            position: relative;
            margin: 20px auto;
        }
        .zhuanjing-count {
            font-size: 42px;
            font-weight: bold;
            color: #f0e68c;
            text-shadow: 0 0 15px rgba(240,230,140,0.4);
            margin-bottom: 5px;
        }
        .zhuanjing-label {
            font-size: 14px;
            color: #cd853f;
            margin-bottom: 25px;
        }
        .zhuanjing {
            width: 200px;
            height: 200px;
            margin: 0 auto;
            cursor: pointer;
            position: relative;
        }
        .zhuanjing-wheel {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: conic-gradient(
                #DAA520 0deg 60deg,
                #B8860B 60deg 120deg,
                #CD853F 120deg 180deg,
                #DAA520 180deg 240deg,
                #B8860B 240deg 300deg,
                #CD853F 300deg 360deg
            );
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.1s;
            position: relative;
        }
        .zhuanjing-wheel::before {
            content: "卍";
            font-size: 60px;
            color: #8B4513;
            font-weight: bold;
        }
        .zhuanjing-wheel::after {
            content: "";
            position: absolute;
            width: 60px;
            height: 60px;
            background: radial-gradient(circle, #F5DEB3, #DAA520);
            border-radius: 50%;
            z-index: -1;
        }
        .zhuanjing-text {
            margin-top: 15px;
            font-size: 20px;
            color: #f0e68c;
            min-height: 30px;
            transition: all 0.3s;
        }
        .zhuanjing-text.glow {
            text-shadow: 0 0 20px rgba(240,230,140,0.8);
            transform: scale(1.1);
        }
        .zhuanjing-foyu {
            margin-top: 20px;
            padding: 15px;
            background: rgba(139,0,0,0.2);
            border-radius: 8px;
            font-size: 16px;
            color: #f0e68c;
            line-height: 1.8;
        }

        /* ===== 祈福莲灯 ===== */
        .lotus-pool {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
            max-width: 500px;
            margin: 20px auto;
        }
        .lotus-slot {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .lotus {
            width: 70px;
            height: 70px;
            position: relative;
            transition: all 0.3s;
        }
        .lotus.off .petals {
            opacity: 0.3;
            filter: grayscale(0.8);
        }
        .lotus.on .petals {
            animation: lotusGlow 2s ease-in-out infinite;
        }
        @keyframes lotusGlow {
            0%, 100% { filter: drop-shadow(0 0 5px rgba(255,200,100,0.5)); }
            50% { filter: drop-shadow(0 0 15px rgba(255,200,100,0.9)); }
        }
        .petals {
            width: 100%;
            height: 100%;
        }
        .petals::before {
            content: "🪷";
            font-size: 50px;
            display: block;
        }
        .lotus.on .petals::before {
            content: "🪷";
            filter: brightness(1.3);
        }
        .lotus-wish {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 10px;
            color: #f0e68c;
            white-space: nowrap;
            opacity: 0.8;
        }
        .lotus-input {
            margin-top: 20px;
        }
        .lotus-input input {
            padding: 12px 20px;
            border: 1px solid rgba(240,230,140,0.3);
            border-radius: 25px;
            background: rgba(60,20,10,0.5);
            color: #f0e68c;
            font-size: 15px;
            width: 300px;
            text-align: center;
        }
        .lotus-input input::placeholder { color: #888; }
        .lotus-input button {
            padding: 12px 30px;
            margin-left: 10px;
            background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
            border: none;
            border-radius: 25px;
            color: #fff;
            font-size: 15px;
            cursor: pointer;
        }
        .lotus-total {
            margin-top: 15px;
            font-size: 14px;
            color: #cd853f;
        }
        .lotus-total span { color: #f0e68c; font-weight: bold; }

        /* ===== 浴佛祈福 ===== */
        .yufu-container {
            position: relative;
            margin: 20px auto;
        }
        .yufu-buddha {
            width: 200px;
            height: 250px;
            margin: 0 auto;
            position: relative;
            cursor: pointer;
        }
        .yufu-buddha::before {
            content: "🙏";
            font-size: 150px;
            display: block;
            filter: drop-shadow(0 5px 15px rgba(240,230,140,0.3));
        }
        .yufu-water {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            font-size: 30px;
            opacity: 0;
            pointer-events: none;
        }
        .yufu-water.drop {
            animation: waterDrop 1s ease-out forwards;
        }
        @keyframes waterDrop {
            0% { opacity: 1; transform: translateX(-50%) translateY(0); }
            100% { opacity: 0; transform: translateX(-50%) translateY(120px); }
        }
        .yufu-count {
            font-size: 36px;
            font-weight: bold;
            color: #f0e68c;
            margin-top: 15px;
        }
        .yufu-label {
            font-size: 14px;
            color: #cd853f;
            margin-bottom: 15px;
        }
        .yufu-text {
            font-size: 18px;
            color: #f0e68c;
            min-height: 30px;
            margin-top: 10px;
        }

        /* ===== 抄佛经 ===== */
        .chaojing-text {
            background: rgba(60,20,10,0.4);
            border: 1px solid rgba(240,230,140,0.15);
            border-radius: 10px;
            padding: 25px;
            max-width: 600px;
            margin: 20px auto;
            text-align: left;
            font-size: 20px;
            line-height: 2.2;
            color: #f0e68c;
            min-height: 200px;
        }
        .chaojing-text .char {
            display: inline-block;
            transition: color 0.3s;
            cursor: default;
        }
        .chaojing-text .char.typed {
            color: #DAA520;
            text-shadow: 0 0 5px rgba(218,165,32,0.5);
        }
        .chaojing-input {
            margin-top: 20px;
        }
        .chaojing-input input {
            padding: 12px 20px;
            border: 1px solid rgba(240,230,140,0.3);
            border-radius: 25px;
            background: rgba(60,20,10,0.5);
            color: #f0e68c;
            font-size: 16px;
            width: 350px;
            text-align: center;
        }
        .chaojing-progress {
            margin-top: 15px;
            font-size: 14px;
            color: #cd853f;
        }
        .chaojing-progress span { color: #f0e68c; font-weight: bold; }

        /* ===== 在线念佛 ===== */
        .nianfo-container {
            margin: 20px auto;
        }
        .nianfo-buddha {
            width: 180px;
            height: 180px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(240,230,140,0.2), transparent 70%);
            display: flex;
            align-items: center;
            justify-content: center;
            animation: buddhaGlow 3s ease-in-out infinite;
        }
        @keyframes buddhaGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(240,230,140,0.2); }
            50% { box-shadow: 0 0 40px rgba(240,230,140,0.5); }
        }
        .nianfo-buddha::before {
            content: "🙏";
            font-size: 100px;
        }
        .nianfo-count {
            font-size: 48px;
            font-weight: bold;
            color: #f0e68c;
            text-shadow: 0 0 15px rgba(240,230,140,0.4);
        }
        .nianfo-label {
            font-size: 14px;
            color: #cd853f;
            margin-bottom: 20px;
        }
        .nianfo-text {
            font-size: 28px;
            color: #f0e68c;
            margin: 15px 0;
            min-height: 40px;
            font-weight: bold;
        }
        .nianfo-btns {
            margin-top: 20px;
        }
        .nianfo-btn {
            padding: 12px 35px;
            margin: 0 8px;
            border: 1px solid rgba(240,230,140,0.3);
            border-radius: 25px;
            background: rgba(60,20,10,0.5);
            color: #f0e68c;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .nianfo-btn:hover {
            background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
            border-color: transparent;
            color: #fff;
        }
        .nianfo-btn.active {
            background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
            border-color: transparent;
            color: #fff;
        }

        /* ===== 在线放生 ===== */
        .fangsheng-pool {
            width: 100%;
            max-width: 600px;
            height: 300px;
            margin: 20px auto;
            background: linear-gradient(180deg, rgba(0,100,150,0.3) 0%, rgba(0,60,100,0.5) 100%);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(100,200,255,0.2);
        }
        .fangsheng-pool::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 80%, rgba(0,150,200,0.2) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(0,150,200,0.15) 0%, transparent 50%);
        }
        .fish {
            position: absolute;
            font-size: 30px;
            transition: all 3s ease-in-out;
            cursor: pointer;
        }
        .fish:hover { transform: scale(1.3); }
        .fangsheng-btn {
            padding: 12px 35px;
            background: linear-gradient(135deg, #20B2AA 0%, #008B8B 100%);
            border: none;
            border-radius: 25px;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
            margin-top: 15px;
        }
        .fangsheng-count {
            margin-top: 15px;
            font-size: 18px;
            color: #f0e68c;
        }
        .fangsheng-count span { font-weight: bold; font-size: 24px; }
        .fangsheng-foyu {
            margin-top: 15px;
            font-size: 14px;
            color: #cd853f;
            line-height: 1.8;
        }

        /* ===== 在线供灯 ===== */
        .gongdeng-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 500px;
            margin: 20px auto;
        }
        .gongdeng-slot {
            text-align: center;
        }
        .gongdeng {
            width: 80px;
            height: 120px;
            margin: 0 auto;
            position: relative;
            cursor: pointer;
        }
        .gongdeng.off { opacity: 0.4; }
        .gongdeng .lamp {
            font-size: 60px;
            display: block;
            transition: all 0.3s;
        }
        .gongdeng.on .lamp {
            filter: drop-shadow(0 0 10px rgba(255,200,50,0.8));
            animation: lampFlicker 2s ease-in-out infinite;
        }
        @keyframes lampFlicker {
            0%, 100% { filter: drop-shadow(0 0 8px rgba(255,200,50,0.6)); }
            50% { filter: drop-shadow(0 0 15px rgba(255,200,50,1)); }
        }
        .gongdeng-name {
            font-size: 12px;
            color: #cd853f;
            margin-top: 5px;
        }
        .gongdeng-wisher {
            font-size: 10px;
            color: #888;
            margin-top: 2px;
        }
        .gongdeng-input {
            margin-top: 20px;
        }
        .gongdeng-input input {
            padding: 10px 15px;
            border: 1px solid rgba(240,230,140,0.2);
            border-radius: 20px;
            background: rgba(60,20,10,0.4);
            color: #f0e68c;
            font-size: 14px;
            width: 200px;
        }
        .gongdeng-input button {
            padding: 10px 25px;
            margin-left: 8px;
            background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
            border: none;
            border-radius: 20px;
            color: #fff;
            font-size: 14px;
            cursor: pointer;
        }
        .gongdeng-total {
            margin-top: 15px;
            font-size: 14px;
            color: #cd853f;
        }

        /* ===== 每日禅语 ===== */
        .foyu-box {
            background: rgba(60,20,10,0.4);
            border: 1px solid rgba(240,230,140,0.15);
            border-radius: 15px;
            padding: 40px 30px;
            max-width: 700px;
            margin: 20px auto;
        }
        .foyu-content {
            font-size: 24px;
            line-height: 2;
            color: #f0e68c;
            margin-bottom: 20px;
            font-weight: 500;
        }
        .foyu-source {
            font-size: 14px;
            color: #cd853f;
            text-align: right;
        }
        .foyu-btns {
            margin-top: 25px;
        }
        .foyu-btn {
            padding: 10px 25px;
            margin: 0 5px;
            border: 1px solid rgba(240,230,140,0.3);
            border-radius: 20px;
            background: rgba(60,20,10,0.5);
            color: #f0e68c;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
        }
        .foyu-btn:hover {
            background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
            border-color: transparent;
            color: #fff;
        }
        .foyu-history {
            margin-top: 20px;
            text-align: left;
            max-height: 200px;
            overflow-y: auto;
        }
        .foyu-history-item {
            padding: 8px 15px;
            border-bottom: 1px solid rgba(240,230,140,0.1);
            font-size: 14px;
            color: #aaa;
        }

        /* 返回首页 */
        .back-home {
            text-align: center;
            padding: 30px 20px 50px;
        }
        .back-home a {
            display: inline-block;
            padding: 12px 35px;
            background: linear-gradient(135deg, rgba(139,0,0,0.5) 0%, rgba(90,30,10,0.5) 100%);
            border: 1px solid rgba(240,230,140,0.3);
            border-radius: 25px;
            color: #f0e68c;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
        }
        .back-home a:hover {
            background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
            border-color: transparent;
            color: #fff;
            transform: translateY(-2px);
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .jingxin-header h1 { font-size: 26px; letter-spacing: 4px; }
            .games-nav { grid-template-columns: repeat(3, 1fr); gap: 10px; }
            .game-nav-item { padding: 15px 8px; }
            .game-nav-item .icon { font-size: 24px; }
            .game-nav-item .name { font-size: 13px; }
            .lotus-pool { grid-template-columns: repeat(3, 1fr); }
            .gongdeng-grid { grid-template-columns: repeat(2, 1fr); }
            .chaojing-input input, .lotus-input input { width: 250px; }
            .foyu-content { font-size: 18px; }
        }

/* ===== 新增30个游戏CSS样式 ===== */

/* 诵经祈福 */
.songjing-text {
    font-size: 28px;
    color: #f0e68c;
    margin: 20px 0;
    padding: 20px;
    background: rgba(60,20,10,0.4);
    border-radius: 10px;
    transition: transform 0.2s;
}
.songjing-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.songjing-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.songjing-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin: 10px;
}
.songjing-list {
    margin-top: 15px;
}
.songjing-select {
    padding: 8px 20px;
    margin: 5px;
    border: 1px solid rgba(240,230,140,0.3);
    border-radius: 20px;
    background: rgba(60,20,10,0.5);
    color: #f0e68c;
    cursor: pointer;
}
.songjing-select:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: #fff;
}

/* 在线叩头 */
.koutou-count {
    font-size: 48px;
    font-weight: bold;
    color: #f0e68c;
    text-shadow: 0 0 15px rgba(240,230,140,0.4);
}
.koutou-label {
    font-size: 14px;
    color: #cd853f;
    margin-bottom: 20px;
}
.koutou-buddha {
    font-size: 120px;
    cursor: pointer;
    transition: transform 0.3s;
    display: inline-block;
}
.koutou-total {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}
.koutou-total span { color: #f0e68c; font-weight: bold; }

/* 佛前供花 */
.gonghua-display {
    font-size: 100px;
    margin: 20px 0;
    transition: all 0.3s;
    display: inline-block;
}
.gonghua-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.gonghua-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.gonghua-flowers button {
    padding: 10px 20px;
    margin: 5px;
    border: 1px solid rgba(240,230,140,0.3);
    border-radius: 20px;
    background: rgba(60,20,10,0.5);
    color: #f0e68c;
    font-size: 14px;
    cursor: pointer;
}
.gonghua-flowers button:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: #fff;
}

/* 佛前供果 */
.gongguo-display {
    font-size: 100px;
    margin: 20px 0;
    transition: all 0.3s;
    display: inline-block;
}
.gongguo-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.gongguo-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.gongguo-fruits button {
    padding: 10px 20px;
    margin: 5px;
    border: 1px solid rgba(240,230,140,0.3);
    border-radius: 20px;
    background: rgba(60,20,10,0.5);
    color: #f0e68c;
    font-size: 14px;
    cursor: pointer;
}
.gongguo-fruits button:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: #fff;
}

/* 在线供香 */
.gongxiang-display {
    position: relative;
    margin: 20px 0;
}
.xiang {
    font-size: 80px;
    display: inline-block;
}
.xiang-smoke {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: rgba(200,200,200,0.6);
}
.gongxiang-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.gongxiang-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.gongxiang-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* 净水供佛 */
.gongshui-bowl {
    font-size: 100px;
    cursor: pointer;
    transition: transform 0.3s;
    display: inline-block;
}
.gongshui-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.gongshui-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }

/* 禅修打坐 */
.chanxiu-timer {
    font-size: 48px;
    font-weight: bold;
    color: #f0e68c;
    text-shadow: 0 0 15px rgba(240,230,140,0.4);
    margin: 20px 0;
}
.chanxiu-buddha {
    font-size: 100px;
    margin: 20px 0;
}
.chanxiu-btns button {
    padding: 12px 35px;
    margin: 0 10px;
    border: 1px solid rgba(240,230,140,0.3);
    border-radius: 25px;
    background: rgba(60,20,10,0.5);
    color: #f0e68c;
    font-size: 16px;
    cursor: pointer;
}
.chanxiu-btns button:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: #fff;
}
.chanxiu-total {
    margin-top: 20px;
    font-size: 14px;
    color: #cd853f;
}
.chanxiu-total span { color: #f0e68c; font-weight: bold; }

/* 冥想放松 */
.mingxiang-circle {
    width: 150px;
    height: 150px;
    border: 3px solid rgba(240,230,140,0.4);
    border-radius: 50%;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 2s ease-in-out;
    background: rgba(240,230,140,0.05);
}
.breath-text {
    font-size: 24px;
    color: #f0e68c;
}
.mingxiang-btns button {
    padding: 12px 35px;
    margin: 0 10px;
    border: 1px solid rgba(240,230,140,0.3);
    border-radius: 25px;
    background: rgba(60,20,10,0.5);
    color: #f0e68c;
    font-size: 16px;
    cursor: pointer;
}
.mingxiang-count {
    margin-top: 15px;
    font-size: 14px;
    color: #cd853f;
}
.mingxiang-count span { color: #f0e68c; font-weight: bold; }

/* 功德回向 */
.huixiang-text {
    font-size: 18px;
    line-height: 2;
    color: #f0e68c;
    margin: 20px 0;
    padding: 20px;
    background: rgba(60,20,10,0.4);
    border-radius: 10px;
}
.huixiang-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.huixiang-count {
    margin-top: 15px;
    font-size: 14px;
    color: #cd853f;
}
.huixiang-count span { color: #f0e68c; font-weight: bold; }

/* 在线忏悔 */
.chanhui-text {
    font-size: 18px;
    line-height: 2;
    color: #f0e68c;
    margin: 20px 0;
    padding: 20px;
    background: rgba(60,20,10,0.4);
    border-radius: 10px;
}
.chanhui-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.chanhui-count {
    margin-top: 15px;
    font-size: 14px;
    color: #cd853f;
}
.chanhui-count span { color: #f0e68c; font-weight: bold; }

/* 在线佛鼓 */
.fogu-drum {
    font-size: 100px;
    cursor: pointer;
    transition: transform 0.15s;
    display: inline-block;
}
.fogu-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.fogu-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }

/* 引磬清音 */
.yinbo-bowl {
    font-size: 100px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}
.yinbo-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.yinbo-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }

/* 手持念珠 */
.handing-beads {
    font-size: 80px;
    cursor: pointer;
    transition: transform 0.3s;
    display: inline-block;
    margin: 20px 0;
}
.handing-count {
    font-size: 18px;
    color: #cd853f;
    margin: 10px 0;
}
.handing-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.handing-round {
    font-size: 14px;
    color: #aaa;
}
.handing-round span { color: #f0e68c; font-weight: bold; }

/* 天珠祈福 */
.tianzhu-display {
    font-size: 100px;
    transition: all 0.6s;
    display: inline-block;
    margin: 20px 0;
}
.tianzhu-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.tianzhu-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.tianzhu-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #9370DB 0%, #8A2BE2 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* 法幢高悬 */
.fachuang-flag {
    font-size: 100px;
    transition: all 0.5s;
    display: inline-block;
    margin: 20px 0;
}
.fachuang-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.fachuang-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.fachuang-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* 宝伞供养 */
.baosan-umbrella {
    font-size: 100px;
    transition: all 0.4s;
    display: inline-block;
    margin: 20px 0;
}
.baosan-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.baosan-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.baosan-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* 法轮常转 */
.falun-wheel {
    font-size: 100px;
    cursor: pointer;
    transition: transform 0.5s;
    display: inline-block;
    margin: 20px 0;
}
.falun-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.falun-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }

/* 合十礼拜 */
.bainuo-hands {
    font-size: 120px;
    cursor: pointer;
    transition: transform 0.2s;
    display: inline-block;
}
.bainuo-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.bainuo-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }

/* 绕佛三匝 */
.raofo-path {
    width: 300px;
    height: 100px;
    margin: 20px auto;
    position: relative;
    border: 2px dashed rgba(240,230,140,0.2);
    border-radius: 50px;
}
.raofo-buddha {
    font-size: 60px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.raofo-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.raofo-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.raofo-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* 顶礼膜拜 */
.dingli-body {
    font-size: 100px;
    cursor: pointer;
    transition: transform 0.4s;
    display: inline-block;
}
.dingli-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.dingli-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }

/* 持戒修行 */
.jiezhi-list {
    max-width: 400px;
    margin: 20px auto;
    text-align: left;
}
.jiezhi-item {
    padding: 15px 20px;
    margin: 10px 0;
    background: rgba(60,20,10,0.4);
    border: 1px solid rgba(240,230,140,0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    color: #f0e68c;
}
.jiezhi-item:hover {
    background: rgba(139,0,0,0.3);
    border-color: rgba(240,230,140,0.4);
}
.jiezhi-item span { color: #DAA520; font-weight: bold; }
.jiezhi-total {
    margin-top: 20px;
    font-size: 18px;
    color: #cd853f;
}
.jiezhi-total span { color: #f0e68c; font-weight: bold; font-size: 24px; }

/* 在线布施 */
.bushi-items button {
    padding: 12px 30px;
    margin: 10px;
    border: 1px solid rgba(240,230,140,0.3);
    border-radius: 25px;
    background: rgba(60,20,10,0.5);
    color: #f0e68c;
    font-size: 16px;
    cursor: pointer;
}
.bushi-items button:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: #fff;
}
.bushi-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.bushi-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }

/* 随缘开示 */
.suiyuan-text {
    font-size: 22px;
    color: #f0e68c;
    margin: 20px 0;
    padding: 30px;
    background: rgba(60,20,10,0.4);
    border-radius: 10px;
    min-height: 80px;
}
.suiyuan-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.suiyuan-count {
    margin-top: 15px;
    font-size: 14px;
    color: #cd853f;
}
.suiyuan-count span { color: #f0e68c; font-weight: bold; }

/* 观想修行 */
.mingxiang2-buddha {
    font-size: 120px;
    margin: 20px 0;
    transition: all 0.5s;
    display: inline-block;
}
.mingxiang2-btns button {
    padding: 10px 25px;
    margin: 5px;
    border: 1px solid rgba(240,230,140,0.3);
    border-radius: 20px;
    background: rgba(60,20,10,0.5);
    color: #f0e68c;
    font-size: 14px;
    cursor: pointer;
}
.mingxiang2-btns button:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: #fff;
}
.mingxiang2-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.mingxiang2-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.mingxiang2-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* 护法祈福 */
.hufa-shield {
    font-size: 100px;
    transition: all 0.5s;
    display: inline-block;
    margin: 20px 0;
}
.hufa-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.hufa-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.hufa-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #4682B4 0%, #1E90FF 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* 接引往生 */
.jieyin-light {
    font-size: 100px;
    transition: all 0.6s;
    display: inline-block;
    margin: 20px 0;
}
.jieyin-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.jieyin-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.jieyin-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* 超度亡灵 */
.chaodu-soul {
    font-size: 80px;
    transition: all 0.8s;
    display: inline-block;
    margin: 20px 0;
}
.chaodu-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.chaodu-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.chaodu-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* 祈福法事 */
.fashi-items button {
    padding: 12px 30px;
    margin: 10px;
    border: 1px solid rgba(240,230,140,0.3);
    border-radius: 25px;
    background: rgba(60,20,10,0.5);
    color: #f0e68c;
    font-size: 16px;
    cursor: pointer;
}
.fashi-items button:hover {
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    color: #fff;
}
.fashi-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.fashi-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }

/* 在线法会 */
.kaihui-hall {
    padding: 40px;
    background: rgba(60,20,10,0.4);
    border-radius: 15px;
    margin: 20px 0;
    transition: background 0.3s;
}
.kaihui-monks {
    font-size: 60px;
}
.kaihui-count {
    font-size: 18px;
    color: #cd853f;
    margin: 15px 0;
}
.kaihui-count span { color: #f0e68c; font-weight: bold; font-size: 24px; }
.kaihui-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

/* 佛缘测试 */
.jieyuan-result {
    font-size: 18px;
    color: #f0e68c;
    margin: 20px 0;
    padding: 30px;
    background: rgba(60,20,10,0.4);
    border-radius: 10px;
    min-height: 100px;
}
.jieyuan-btn {
    padding: 12px 35px;
    background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}
.jieyuan-count {
    margin-top: 15px;
    font-size: 14px;
    color: #cd853f;
}
.jieyuan-count span { color: #f0e68c; font-weight: bold; }

/* 绕佛动画 */
@keyframes raofoWalk {
    0% { left: 0; }
    50% { left: calc(100% - 60px); }
    100% { left: 0; }
}

/* 香烟动画 */
@keyframes xiangSmoke {
    0% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: translateX(-50%) translateY(-50px); }
}