         * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Microsoft YaHei', sans-serif;
        }
        
        body {
            color: #e6e6ff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow-x: hidden;
            position: relative;
        }

        /* 顶部切换按钮样式 */
        .tab-buttons {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
        }

        .tab-button {
            width: 200px;
            height: 77px;
            background-image: url('../images/show-nav-top-nav.png');
            background-size: cover;
            background-position: center;
            color: white;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: none;
            outline: none;
            background-color: transparent;
            padding: 0;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
        }

        .tab-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent 0%,
                rgba(255, 255, 255, 0.1) 20%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0.1) 80%,
                transparent 100%
            );
            transition: left 0.6s ease;
            z-index: 1;
        }

        .tab-button:hover::before {
            left: 100%;
        }

        .tab-button:hover {
            transform: translateY(-3px) scale(1.05);
            filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3))
                    drop-shadow(0 0 20px rgba(255, 136, 0, 0.3));
        }

        .tab-button.active {
            transform: scale(1.08);
            filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4))
                    drop-shadow(0 0 25px rgba(255, 68, 68, 0.4));
        }

        .tab-button.active:hover {
            transform: translateY(-2px) scale(1.1);
            filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4))
                    drop-shadow(0 0 30px rgba(255, 68, 68, 0.6));
        }

        .tab-button:active {
            transform: translateY(1px) scale(1.02);
            transition: all 0.1s ease;
        }

        .tab-button {
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
        }

        .tab-button:hover {
            text-shadow: 
                0 0 15px rgba(255, 255, 255, 0.8),
                0 0 25px rgba(255, 136, 0, 0.5);
        }

        .tab-button.active {
            text-shadow: 
                0 0 15px rgba(255, 255, 255, 0.9),
                0 0 25px rgba(255, 68, 68, 0.6);
        }

        .tab-button.active::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 68, 68, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: pulse 2s infinite;
            z-index: 0;
        }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 1;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.1);
                opacity: 0.5;
            }
            100% {
                transform: translate(-50%, -50%) scale(0.8);
                opacity: 1;
            }
        }

        .container { 
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            transform-style: preserve-3d;
            cursor: grab;
            transition: transform 0.2s ease;
        }

        .container:active {
            cursor: grabbing;
        }

        .container .box {
            width: 440px;
            height: 580px;
            margin: 0 10px;
            position: relative;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 0 10px rgba(0,0,0,0.2);
            flex-shrink: 0;
        }

        .container .box img {
            width: 100%;
            height: 100%;
            border-radius: 5px;
            object-fit: cover;
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .container .box.switching img {
            opacity: 0;
            transform: scale(0.95) translateY(20px);
            filter: blur(2px);
        }

        .container .box.fade-in img {
            opacity: 0;
            transform: scale(1.05) translateY(-10px);
            filter: blur(1px);
        }

        .container:hover > :not(:hover) {
            margin: 0 -20px;
            filter: 
                drop-shadow(0 0 25px #000)
                drop-shadow(0 0 45px #000);
            transform: 
                perspective(500px)
                rotateY(45deg)
                scale(0.95);
        }

        .container .box:hover ~ .box {
            transform: 
                perspective(500px)
                rotateY(-45deg)
                scale(0.95);
        }
        
        .container .box:hover{
            transform: 
            perspective(500px)
            rotateY(0)
            scale(1.2);
            z-index: 1000;
        }

        .nav-button {
            position: relative;
            width: 60px;
            height: 60px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
            border: none;
            outline: none;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0 20px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            opacity: 0.8;
        }

        .nav-button:hover {
            opacity: 1;
            transform: scale(1.1);
            background-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        }

        .nav-button:active {
            transform: scale(0.95);
        }

        .nav-button.prev {
            background-image: url('../images/arrow-left.png');
        }

        .nav-button.next {
            background-image: url('../images/arrow-right.png');
        }

        .controls {
            display: flex;
            gap: 20px;
            margin-top: 50px;
        }