  /* 隱藏非當前語言的區塊 */
        .lang-content { display: none; }
        .lang-content.active { display: block; }
        /* 圖片懸停特效 */
        .app-screenshot { transition: transform 0.3s; border-radius: 12px; box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5); }
        .app-screenshot:hover { transform: translateY(-5px); }
       

       /* 整合官網色系 */
        body {
            background-color: #111827; /* 深灰背景 */
            color: #e5e7eb;            /* 淺灰文字 */
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
        }

        /* 標題配色 */
        h1, h2, h3 {
            color: #facc15; /* 官方金黃色 */
        }

        /* 內容區塊背景 */
        .content-card {
            background-color: #1f2937;
            border: 1px solid #374151;
            border-radius: 12px;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
        }

        /* 語言切換隱藏邏輯 */
        .lang-content { display: none; }
        .lang-content.active { display: block; }

        /* 圖片懸停特效 */
        .app-screenshot { 
            transition: transform 0.3s ease; 
            border-radius: 8px; 
            border: 2px solid #374151;
        }
        .app-screenshot:hover { transform: scale(1.02); border-color: #facc15; }

        .logo{
          background-color: transparent;
          color: var(--wild-sand) !important;
          font-family: var(--font-family-exo_2);
          font-size: 29px;
          font-style: italic;
          font-weight: 700;
          height: auto;
          left: 0px;
          letter-spacing: -1.00px;
          line-height: 50px;
          position: absolute;
          text-align: left;
          top: 0px;
          white-space: nowrap;
          width: auto;
          padding: 20px !important;
        }