    <style>
        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Serif TC', 'Times New Roman', serif;
            margin: 0;
            padding: 0;
            background-color: #fefefe;
            color: #333;
            line-height: 1.7;
            font-size: 16px;
        }

        /* 導航菜單 */
        .navigation {
            max-width: 1400px;
            margin: 0 auto;
            padding: 30px 40px 0 40px;
        }

        .nav-menu {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-bottom: 60px;
            padding-bottom: 30px;
            border-bottom: 1px solid #e8e8e8;
        }

        .nav-item {
            color: #666;
            text-decoration: none;
            font-size: clamp(14px, 2.5vw, 16px);
            font-weight: 400;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            padding: 8px 0;
            position: relative;
        }

        .nav-item:hover {
            color: #1a1a1a;
        }

        .nav-item.active {
            color: #1a1a1a;
            font-weight: 600;
        }

        .nav-item.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: #1a1a1a;
        }

        /* 新增的導航標頭樣式（手機版） */
        .nav-header {
            display: none; /* 預設隱藏，只在手機版顯示 */
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
            border-bottom: 1px solid #e8e8e8;
            margin-bottom: 20px;
        }

        .nav-title {
            font-size: clamp(16px, 4vw, 20px);
            font-weight: 600;
            color: #1a1a1a;
            text-decoration: none;
            letter-spacing: 1px;
        }

        /* 漢堡選單按鈕 */
        .nav-toggle {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 25px;
            height: 18px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

        .nav-toggle span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: #333;
            transition: all 0.3s ease;
        }

        /* 漢堡選單動畫效果 */
        .nav-toggle.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px 60px 40px;
            min-height: 100vh;
        }

        /* 標題區塊 */
        .header {
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 40px;
            border-bottom: 1px solid #e8e8e8;
        }

        .header h1 {
            font-size: clamp(28px, 5vw, 32px);
            font-weight: 400;
            color: #1a1a1a;
            margin: 0 0 0px 0;
            letter-spacing: 8px;
            font-family: 'Noto Serif TC', serif;
        }

        .header .subentitle {
            font-size: clamp(24px, 3vw, 24px);
            color: #1a1a1a;
            font-weight: 400;
            margin: 0;
            letter-spacing: 2px;
        }

        .header .subtitle {
            font-size: clamp(14px, 2.5vw, 18px);
            color: #666;
            font-weight: 400;
            margin: 0;
            letter-spacing: 2px;
        }

        /* 作品說明區塊 */
        .description-section {
            max-width: 550px;
            margin: 0 auto 120px auto;
            text-align: left;
        }

        .description-section h2 {
            font-size: clamp(24px, 3vw, 24px);
            font-weight: 400;
            color: #1a1a1a;
            margin: 0 0 40px 0;
            letter-spacing: 3px;
            text-align: center;
        }

        .description-text {
            font-size: clamp(18px, 3vw, 18px);
            line-height: 2;
            color: #444;
            margin-bottom: 32px;
            text-align: justify;
        }

        .description-text:last-child {
            margin-bottom: 0;
        }

        /* 操作控制區塊 */
        .control-section {
            text-align: center;
            margin: 0 auto 100px auto;
            max-width: 600px;
        }

        .control-title {
            font-size: clamp(18px, 3vw, 24px);
            font-weight: 400;
            color: #1a1a1a;
            margin: 0 0 50px 0;
            letter-spacing: 3px;
        }

        .controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .control-group {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .control-group label {
            font-size: clamp(14px, 2.5vw, 16px);
            color: #666;
            font-weight: 400;
            letter-spacing: 1px;
        }

        select {
            padding: 12px 20px;
            border: 1px solid #ddd;
            background: #fff;
            font-size: clamp(14px, 2.5vw, 16px);
            cursor: pointer;
            transition: border-color 0.3s ease;
            font-family: inherit;
            min-width: 120px;
            border-radius: 0;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8"><path d="M0 0l6 8 6-8z" fill="%23666"/></svg>');
            background-repeat: no-repeat;
            background-position: right 12px center;
            padding-right: 40px;
        }

        select:hover, select:focus {
            border-color: #999;
            outline: none;
        }

        .refresh-button {
            background: #1a1a1a;
            color: #fff;
            border: none;
            padding: 16px 32px;
            font-size: clamp(14px, 2.5vw, 16px);
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: inherit;
            letter-spacing: 2px;
            border-radius: 0;
        }

        .refresh-button:hover {
            background: #333;
        }

        .refresh-button:active {
            transform: translateY(1px);
        }

        /* 圖片展示區塊 */
        .gallery-section {
            margin-bottom: 120px;
        }

        .grid-container {
            display: flex;
            justify-content: center;
            margin: 0;
        }

        .grid {
            display: grid;
            gap: clamp(20px, 4vw, 60px);
            justify-content: center;
            align-items: center;
            padding: 40px 0;
        }

        .grid.layout-1 {
            grid-template-columns: 280px;
        }

        .grid.layout-2 {
            grid-template-columns: repeat(2, 280px);
        }

        .grid.layout-3 {
            grid-template-columns: repeat(3, 240px);
        }

        .grid.layout-4 {
            grid-template-columns: repeat(2, 240px);
            grid-template-rows: repeat(2, 240px);
        }

        .grid.layout-6 {
            grid-template-columns: repeat(3, 200px);
            grid-template-rows: repeat(2, 200px);
        }

        .image-container {
            width: 100%;
            aspect-ratio: 1;
            overflow: visible;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
        }

        .image-container:hover {
            border-color: #ccc;
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .image-container.dragging {
            opacity: 0.7;
            z-index: 1000;
            transform: rotate(2deg) scale(1.05);
            border-color: #999;
        }

        .image-container.drag-over {
            border-color: #666 !important;
            background: #f8f8f8;
            transform: scale(1.02);
        }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.4s ease;
            display: block;
            pointer-events: none;
            padding: 10px;
        }

        /* 提示框樣式 */
        .custom-tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(26, 26, 26, 0.9);
            color: white;
            padding: 8px 16px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 10000;
            pointer-events: none;
            margin-bottom: 8px;
            letter-spacing: 1px;
            font-weight: 300;
        }

        .image-container:hover .custom-tooltip {
            opacity: 1;
            visibility: visible;
            margin-bottom: 12px;
        }
        a{
            color: #444;
        }

        /* 使用指南 */
        .usage-guide {
            max-width: 550px;
            margin: 0 auto;
            text-align: left;
        }

        .usage-guide h3 {
            font-size: clamp(18px, 3vw, 24px);
            font-weight: 400;
            color: #1a1a1a;
            margin: 0 0 40px 0;
            letter-spacing: 3px;
            text-align: center;
        }

        .usage-steps {
            display: grid;
            gap: 24px;
        }

        .usage-step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 0;
        }

        .step-number {
            background: #1a1a1a;
            color: white;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 400;
            flex-shrink: 0;
        }

        .step-text {
            color: #444;
            font-size: clamp(14px, 2.5vw, 16px);
            line-height: 1.8;
            padding-top: 4px;
        }

        /* 響應式設計 */
        @media (max-width: 768px) {
            .navigation {
                padding: 20px 20px 0 20px;
            }

            .nav-menu {
                overflow: hidden;
                max-height: 0; /* 預設收合 */
                transition: max-height 0.4s cubic-bezier(0.86, 0, 0.07, 1);
                flex-direction: column;
                align-items: flex-start;
                padding-bottom: 0;
                border-bottom: none;
                margin-bottom: 0;
                gap: 0px;
            }

            /* 當選單開啟時，設置最大高度以顯示內容 */
            .nav-menu.open {
                max-height: 500px; /* 根據內容調整，確保能完全展開 */
                padding-bottom: 20px;
                border-bottom: 1px solid #e8e8e8;
            }

            .nav-item {
                padding: 10px 0;
                width: 100%; /* 選單項目佔滿寬度 */
                text-align: left;
            }

            .nav-header {
                display: flex;
            }

            /* 手機版導航按鈕和標題對齊方式 */
            .navigation .nav-header {
                justify-content: flex-start; /* 讓內容靠左對齊 */
                align-items: center;
                gap: 15px; /* 在標題和按鈕之間新增間距 */
            }

            .nav-toggle {
                order: -1; /* 將漢堡按鈕移到最前面 */
            }

            .main-container {
                padding: 0 20px 40px 20px;
            }

            .header {
                margin-bottom: 80px;
            }

            .description-section {
                margin-bottom: 80px;
            }

            .control-section {
                margin-bottom: 60px;
            }

            .controls {
                flex-direction: column;
                gap: 30px;
            }

            .control-group {
                width: 100%;
            }

            .refresh-button {
                width: 100%;
                max-width: 300px;
                padding: 18px 32px;
            }

            .grid {
                gap: clamp(0px, 4vw, 0px);
                padding: 0px 0;
            }

            .grid.layout-1 {
                grid-template-columns: min(300px, 85vw);
            }

            .grid.layout-2, .grid.layout-4 {
                grid-template-columns: repeat(2, min(200px, 42vw));
            }

            .grid.layout-3, .grid.layout-6 {
                grid-template-columns: repeat(3, min(150px, 28vw));
            }

            .usage-guide {
                margin-bottom: 60px;
            }

            .step-text {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .navigation {
                padding: 15px 16px 0 16px;
            }
            
            .main-container {
                padding: 0 16px 30px 16px;
            }

            .header h1 {
                letter-spacing: 4px;
            }

            .grid.layout-1 {
                grid-template-columns: min(280px, 80vw);
            }

            .grid.layout-2, .grid.layout-4 {
                grid-template-columns: repeat(2, min(140px, 45vw));
            }

            .grid.layout-3, .grid.layout-6 {
                grid-template-columns: repeat(3, min(110px, 33vw));
            }

            .usage-steps {
                gap: 20px;
            }

            .step-number {
                width: 28px;
                height: 28px;
                font-size: 13px;
            }
        }

        /* 載入動畫 */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .navigation, .main-container > * {
            animation: fadeInUp 0.8s ease-out;
        }

        .navigation { animation-delay: 0.1s; }
        .main-container > *:nth-child(1) { animation-delay: 0.2s; }
        .main-container > *:nth-child(2) { animation-delay: 0.3s; }
        .main-container > *:nth-child(3) { animation-delay: 0.4s; }
        .main-container > *:nth-child(4) { animation-delay: 0.5s; }
        .main-container > *:nth-child(5) { animation-delay: 0.6s; }

        /* 選擇框樣式優化 */
        select {
            color: #333;
        }

        select:hover {
            background: #fafafa;
        }
    </style>