        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #ff8c00;
            --secondary-color: #ffd700;
            --bg-color: #1a2a6c;
            --card-bg: rgba(0, 0, 0, 0.7);
            --text-color: #fff;
        }

        body {
            font-family: 'Microsoft YaHei', sans-serif;
            background: linear-gradient(135deg, var(--bg-color), #b21f1f, #fdbb2d);
            color: var(--text-color);
            min-height: 100vh;
            display: flex;
            overflow-x: hidden;
            position: relative;
        }

        /* 侧边导航 */
        .sidebar {
            width: 250px;
            background: rgba(0, 0, 0, 0.8);
            padding: 20px 0;
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
            z-index: 100;
            backdrop-filter: blur(10px);
        }

        .logo {
            text-align: center;
            padding: 0 20px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 20px;
        }

        .logo h1 {
            font-size: 1.5rem;
            background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .nav-links {
            list-style: none;
            flex: 1;
        }

        .nav-links li {
            padding: 0;
            margin: 5px 15px;
        }

        .nav-links a {
            display: flex;
            align-items: center;
            padding: 12px 15px;
            color: #ddd;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover, .nav-links a.active {
            background: rgba(255, 140, 0, 0.2);
            color: var(--secondary-color);
        }

        .nav-links i {
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .share-section {
            padding: 20px;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .share-btn {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: #000;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            transition: all 0.3s ease;
        }

        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
        }

        .share-btn i {
            margin-right: 8px;
        }

        /* 主内容区 */
        .main-content {
            flex: 1;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow-y: auto;
        }

        .container {
            width: 100%;
            max-width: 700px;
            background: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            position: relative;
            z-index: 10;
            backdrop-filter: blur(10px);
        }

        .scene-title {
            font-size: 2.5rem;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            display: inline-block;
        }

        .scene-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 10%;
            width: 80%;
            height: 3px;
            background: linear-gradient(to right, transparent, var(--secondary-color), transparent);
        }

        .scene-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #ddd;
        }

        .bagua-container {
            width: 200px;
            height: 200px;
            margin: 0 auto 30px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .bagua {
            width: 180px;
            height: 180px;
            background: linear-gradient(45deg, #000, #fff);
            border-radius: 50%;
            position: relative;
            animation: rotate 10s linear infinite;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
        }

        .bagua::before, .bagua::after {
            content: '';
            position: absolute;
            width: 90px;
            height: 90px;
            border-radius: 50%;
            top: 0;
        }

        .bagua::before {
            background: #000;
            left: 0;
            border: 35px solid #fff;
        }

        .bagua::after {
            background: #fff;
            right: 0;
            border: 35px solid #000;
        }

        .yin-yang {
            position: absolute;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            z-index: 2;
        }

        .yin {
            background: #fff;
            top: 45px;
            left: 45px;
        }

        .yang {
            background: #000;
            bottom: 45px;
            right: 45px;
        }

        .button-container {
            margin: 30px 0;
        }

        #divine-btn {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: #000;
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }

        #divine-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 140, 0, 0.6);
        }

        #divine-btn:active {
            transform: translateY(1px);
        }

        #divine-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        #divine-btn:hover::before {
            left: 100%;
        }

        .result-container {
            display: none;
            margin-top: 30px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            animation: fadeIn 1s ease;
            position: relative;
            overflow: hidden;
        }

        .result-container::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
            z-index: -1;
            border-radius: 20px;
            opacity: 0.1;
        }

        .result-title {
            font-size: 2rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .result-content {
            font-size: 1.2rem;
            line-height: 1.6;
            margin-bottom: 20px;
            background: rgba(0, 0, 0, 0.3);
            padding: 15px;
            border-radius: 10px;
        }

        .result-advice {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .advice-item {
            width: 48%;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 10px;
            text-align: left;
        }

        .do {
            background: rgba(0, 255, 0, 0.2);
            border-left: 4px solid #4CAF50;
        }

        .dont {
            background: rgba(255, 0, 0, 0.2);
            border-left: 4px solid #f44336;
        }

        .advice-title {
            font-weight: bold;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .do .advice-title {
            color: #4CAF50;
        }

        .dont .advice-title {
            color: #f44336;
        }

        .advice-title i {
            margin-right: 8px;
            font-size: 1.2rem;
        }

        /* 粒子效果 */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        /* 动画 */
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes fadeIn {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
        }

        .firework {
            position: absolute;
            width: 5px;
            height: 5px;
            border-radius: 50%;
            box-shadow: 0 0 10px #ff0, 0 0 20px #ff0, 0 0 30px #ff0;
            animation: explode 0.8s ease-out forwards;
        }

        @keyframes explode {
            0% { transform: scale(1); opacity: 1; }
            100% { transform: scale(10); opacity: 0; }
        }

        .lotus {
            position: absolute;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,215,0,0.5) 70%, rgba(255,140,0,0) 100%);
            border-radius: 50%;
            animation: lotusBloom 2s ease-out forwards;
            opacity: 0;
        }

        @keyframes lotusBloom {
            0% { transform: scale(0); opacity: 0; }
            50% { opacity: 0.7; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .fortune-stars {
            position: absolute;
            font-size: 2rem;
            color: gold;
            animation: twinkle 1.5s infinite alternate;
        }

        @keyframes twinkle {
            0% { opacity: 0.3; transform: scale(0.8); }
            100% { opacity: 1; transform: scale(1.2); }
        }

        .confetti {
            position: absolute;
            width: 10px;
            height: 20px;
            background: #f00;
            animation: confettiFall 5s linear forwards;
        }

        @keyframes confettiFall {
            0% { transform: translateY(-100px) rotate(0deg); opacity: 1; }
            100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
        }

        /* 移动端适配 */
        .menu-toggle {
            display: none;
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1000;
            background: var(--primary-color);
            color: #000;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            body {
                flex-direction: column;
            }

            .sidebar {
                position: fixed;
                left: -100%;
                top: 0;
                height: 100%;
                width: 280px;
                transition: left 0.3s ease;
                z-index: 999;
            }

            .sidebar.active {
                left: 0;
            }

            .menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .main-content {
                padding: 70px 15px 15px;
            }

            .container {
                padding: 20px;
            }

            .scene-title {
                font-size: 2rem;
            }

            .result-advice {
                flex-direction: column;
            }

            .advice-item {
                width: 100%;
            }
        }

        /* 场景特定样式 */
        .scene-work { --primary-color: #ff8c00; --secondary-color: #ffd700; }
        .scene-slack { --primary-color: #4CAF50; --secondary-color: #8BC34A; }
        .scene-offwork { --primary-color: #2196F3; --secondary-color: #03A9F4; }
        .scene-overtime { --primary-color: #9C27B0; --secondary-color: #E91E63; }
        .scene-meeting { --primary-color: #FF5722; --secondary-color: #FF9800; }
        .scene-scolded { --primary-color: #607D8B; --secondary-color: #9E9E9E; }