/* 滑動提示容器 */
        #swipe-hint-container {
            width: 300px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 10px;
            box-sizing: border-box;
            pointer-events: none;

        }

        .hint-text {
            font-size: 3.0vmin;
            color: #555;
            margin-bottom: 15px;
            text-align: center;
        }

        /* 手指圖示及動畫容器 */
        .finger-swipe-animation {
            position: relative;
            width: 100%;
            height: 80px; /* 足夠容納手指圖示 */
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        /* 手指圖示本身 */
        .finger-icon {
            font-size: 8vmin; /* 調整手指圖示大小 */
            line-height: 1;
            display: inline-block;
            position: absolute;
            color: #e67e22; /* 給手指圖示一個顏色 */
            /* 關鍵：讓手指向上指 */
            transform: rotate(-90deg); /* 初始旋轉為向上指 */
            transform-origin: center center; /* 確保旋轉和後續動畫的中心點正確 */

            /* 應用動畫 */
            animation: swipe-finger-up 2.5s infinite ease-in-out;
        }

        /* CSS 動畫：手指向上指並左右來回滑動 */
        @keyframes swipe-finger-up {
            0% {
                transform: translateX(-100px) rotate(-90deg) scale(0.9); /* 初始位置偏左，向上指，略微縮小 */
                opacity: 0;
            }
            10% {
                transform: translateX(-50px) rotate(-90deg) scale(1); /* 顯現並放大 */
                opacity: 1;
            }
            40% {
                transform: translateX(50px) rotate(-90deg) scale(1); /* 向右滑動，保持向上指 */
                opacity: 1;
            }
            60% {
                transform: translateX(100px) rotate(-90deg) scale(0.9); /* 到達右邊，略微縮小 */
                opacity: 0; /* 開始隱藏 */
            }
            70% {
                /* 關鍵：在隱藏時快速回到左邊並翻轉Y軸，為下一次循環準備 */
                /* 這裡只翻轉了位置，不翻轉方向，因為我們希望它一直向上 */
                transform: translateX(-50px) rotate(-90deg) scale(0.9);
                opacity: 0;
            }
            100% {
                transform: translateX(-50px) rotate(-90deg) scale(0.9);
                opacity: 0;
            }
        }

        /* 內容區塊 (用於模擬可滑動的內容) */
        .content-area {
            width: 80%;
            max-width: 500px;
            height: 250px;
            background-color: #e0f2f7;
            border-radius: 10px;
            margin-top: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            color: #34495e;
            box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
        }

        /* 隱藏提示的類別 (用JS控制) */
        .hidden {
            display: none;
        }