@import url('css2.css');

        /* 基础样式重置与全局设置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Serif TC', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #001F3F 0%, #0A2647 50%, #0F172A 100%);
            color: #F8FAFC;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            line-height: 1.6;
        }

        /* 色彩变量定义 */
        :root {
            --primary-dark: #001F3F;
            --primary-medium: #0A2647;
            --primary-light: #144272;
            --accent-gold: #FFD700;
            --accent-teal: #00D9FF;
            --accent-green: #06C755;
            --text-primary: #F8FAFC;
            --text-secondary: #CBD5E1;
            --text-muted: #94A3B8;
            --glass-bg: rgba(10, 38, 71, 0.5);
            --border-color: rgba(255, 215, 0, 0.2);
        }

        .bg-grid {
            background-image:
                radial-gradient(var(--primary-light) 1px, transparent 1px),
                radial-gradient(var(--accent-gold) 1px, transparent 1px);
            background-size: 30px 30px;
            background-position: 0 0, 15px 15px;
            opacity: 0.1;
            animation: gridMove 20s linear infinite;
        }

        /* 网格移动动画 */
        @keyframes gridMove {
            0% {
                background-position: 0 0, 15px 15px;
            }
            100% {
                background-position: 30px 30px, 45px 45px;
            }
        }

        .neon-text-purple {
            text-shadow:
                0 0 8px rgba(255, 215, 0, 0.9),
                0 0 16px rgba(255, 215, 0, 0.6),
                0 0 24px rgba(255, 215, 0, 0.4);
        }

        /* 字体层级规范 */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: clamp(2rem, 5vw, 4rem);
            margin-top: 3rem;
        }

        h2 {
            font-size: clamp(1.5rem, 3vw, 2.5rem);
        }

        h3 {
            font-size: clamp(1.25rem, 2.5vw, 2rem);
        }

        p {
            margin-bottom: 1.5rem;
            line-height: 1.8;
            letter-spacing: 0.02em;
        }

        p.typewriter-text {
            text-align: center;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .book-ambassador {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 215, 0, 0.3);
    color: white;
    text-align: center;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 15px #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
        }

        /* 文本颜色类 */
        .text-primary {
            color: var(--text-primary);
        }

        .text-secondary {
            color: var(--text-secondary);
        }

        .text-muted {
            color: var(--text-muted);
        }

        .text-gold-light {
            color: var(--accent-gold);
        }

        /* 打字机效果样式 */
        .typewriter-container {
            display: block;
            text-align: center;
            margin: 0 auto;
            max-width: 3xl;
        }

        .typewriter-text {
            display: block;
            overflow: hidden;
            border-right: none;
            margin: 0 auto;
            text-align: center;
            max-width: 3xl;
        }



        .image-glow {
            box-shadow:
                0 0 15px rgba(255, 215, 0, 0.5),
                0 0 30px rgba(20, 66, 114, 0.4);
        }

        .glass-card {
            background: rgba(10, 38, 71, 0.5);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 215, 0, 0.2);
            box-shadow: 0 8px 32px rgba(20, 66, 114, 0.3);
        }

        .gradient-border {
            position: relative;
            border-radius: inherit;
        }

        .gradient-border::before {
            content: "";
            position: absolute;
            inset: -2px;
            border-radius: inherit;
            padding: 2px;
            background: linear-gradient(45deg, #144272, #FFD700, #00D9FF, #144272);
            background-size: 400% 400%;
            animation: gradient 10s ease infinite;
            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .btn-neon {
            background: linear-gradient(90deg, var(--primary-light), #2C74B3);
            border: none;
            color: white;
            font-weight: 700;
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform: translateZ(0);
            box-shadow: 0 4px 15px rgba(20, 66, 114, 0.3);
        }

        .btn-neon:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow:
                0 0 15px rgba(255, 215, 0, 0.9),
                0 0 30px rgba(20, 66, 114, 0.5);
        }

        .btn-neon:active {
            transform: translateY(-2px) scale(0.98);
            box-shadow: 0 2px 10px rgba(20, 66, 114, 0.4);
        }

        .btn-neon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            z-index: -1;
            transition: all 0.5s ease;
        }

        .btn-neon:hover::before {
            left: 100%;
        }

        .btn-neon::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent-gold), var(--accent-teal));
            z-index: -2;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .btn-neon:hover::after {
            opacity: 1;
        }

        /* Removed line-icon element to comply with design requirements */

        .profile-stat {
            background: linear-gradient(90deg, rgba(20, 66, 114, 0.2), rgba(255, 215, 0, 0.1));
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 9999px;
            padding: 0.4rem 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .profile-stat:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
        }

        .image-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
        }

        .image-grid > div {
            aspect-ratio: 3/4;
            overflow: hidden;
            border-radius: 0.75rem;
        }

        .image-grid > div img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .image-grid > div:hover img {
            transform: scale(1.15);
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .image-grid {
                grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
                gap: 0.75rem;
            }
        }

        @media (max-width: 768px) {
            .image-grid {
                grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
                gap: 0.6rem;
            }
            
            .profile-stat {
                font-size: 0.8rem;
                padding: 0.3rem 0.8rem;
            }
        }

        @media (max-width: 480px) {
            .image-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 0.5rem;
            }
            
            .profile-stat {
                font-size: 0.75rem;
                padding: 0.25rem 0.7rem;
            }
        }

        .footer-legal {
            font-size: 0.7rem;
            color: #6b7280;
            text-align: center;
            margin-top: auto;
            padding: 2rem 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .image-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }
        }

        /* 悬浮按钮样式 */
        .floating-button {
            position: fixed;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #06C755, #00B900);
            color: white;
            font-weight: bold;
            font-size: 1.25rem;
            padding: 1.5rem 3rem;
            border-radius: 60px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1000;
            box-shadow: 0 12px 30px rgba(6, 199, 85, 0.5);
            transition: all 0.3s ease;
            animation: bounce 2s ease-in-out infinite, pulse-ring 2s infinite;
            text-decoration: none;
            border: none;
            outline: none;
            overflow: hidden;
        }

        .floating-button::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
            transform: scale(0);
            transition: transform 0.6s ease-out;
            pointer-events: none;
        }

        .floating-button:active::before {
            transform: scale(2);
        }

        .floating-button:hover {
            transform: translateX(-50%) translateY(-8px);
            box-shadow: 0 16px 45px rgba(6, 199, 85, 0.7);
            background: linear-gradient(135deg, #00B900, #06C755);
            font-size: 1.3rem;
        }

        .floating-button:active {
            transform: translateX(-50%) translateY(-4px);
            box-shadow: 0 10px 25px rgba(6, 199, 85, 0.5);
        }

        /* 波纹渐扩散效果 */
        @keyframes pulse-ring {
            0% {
                box-shadow: 0 0 0 0 rgba(6, 199, 85, 0.7), 0 0 0 10px rgba(6, 199, 85, 0.5), 0 0 0 20px rgba(6, 199, 85, 0.3);
            }
            100% {
                box-shadow: 0 0 0 10px rgba(6, 199, 85, 0.5), 0 0 0 20px rgba(6, 199, 85, 0.3), 0 0 0 30px rgba(6, 199, 85, 0);
            }
        }

        /* 上下跳动动画 */
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-15px);
            }
            60% {
                transform: translateX(-50%) translateY(-7px);
            }
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .floating-button {
                font-size: 0.9rem;
                padding: 0.8rem 1.5rem;
                bottom: 20px;
            }
        }

        @media (max-width: 480px) {
            .floating-button {
                font-size: 0.85rem;
                padding: 0.7rem 1.2rem;
                bottom: 15px;
            }
        }

        /* 隨機台灣虛擬詢盤內容模組樣式 */
        #inquiry-module {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            font-size: 0.9rem;
            line-height: 1.5;
            color: #e0e0e0;
            background: rgba(10, 38, 71, 0.9);
            border: 1px solid rgba(255, 215, 0, 0.3);
            box-shadow: 0 4px 15px rgba(20, 66, 114, 0.3);
            transition: all 0.3s ease;
            max-width: 64rem;
            margin: 0 auto;
        }

        #inquiry-module:hover {
            box-shadow: 0 6px 20px rgba(20, 66, 114, 0.4);
            background: rgba(10, 38, 71, 0.7);
        }

        #inquiry-content {
            font-weight: 400;
            opacity: 0.9;
        }

        /* 響應式設計 */
        @media (max-width: 768px) {
            #inquiry-module {
                font-size: 0.85rem;
                padding: 0.8rem;
            }
        }

        @media (max-width: 480px) {
            #inquiry-module {
                font-size: 0.8rem;
                padding: 0.7rem;
            }
        }
*, ::before, ::after{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}::after,::before{--tw-content:''}:host,html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:transparent}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]){-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}dialog{padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]:where(:not([hidden=until-found])){display:none}.container{width:100%}@media (min-width: 640px){.container{max-width:640px}}@media (min-width: 768px){.container{max-width:768px}}@media (min-width: 1024px){.container{max-width:1024px}}@media (min-width: 1280px){.container{max-width:1280px}}@media (min-width: 1536px){.container{max-width:1536px}}.pointer-events-none{pointer-events:none}.absolute{position:absolute}.relative{position:relative}.inset-0{inset:0px}.bottom-20{bottom:5rem}.left-10{left:2.5rem}.right-10{right:2.5rem}.top-20{top:5rem}.z-10{z-index:10}.mx-2{margin-left:0.5rem;margin-right:0.5rem}.mx-auto{margin-left:auto;margin-right:auto}.mb-2{margin-bottom:0.5rem}.mb-3{margin-bottom:0.75rem}.mb-4{margin-bottom:1rem}.mb-6{margin-bottom:1.5rem}.mb-8{margin-bottom:2rem}.mr-2{margin-right:0.5rem}.mt-2{margin-top:0.5rem}.mt-4{margin-top:1rem}.flex{display:flex}.inline-flex{display:inline-flex}.h-40{height:10rem}.h-60{height:15rem}.h-auto{height:auto}.h-full{height:100%}.min-h-screen{min-height:100vh}.w-40{width:10rem}.w-60{width:15rem}.w-full{width:100%}.max-w-4xl{max-width:56rem}.flex-grow{flex-grow:1}@keyframes pulse{50%{opacity:.5}}.animate-pulse-fast{animation:pulse 1.5s cubic-bezier(0.4, 0, 0.6, 1) infinite}.flex-col{flex-direction:column}.flex-wrap{flex-wrap:wrap}.items-center{align-items:center}.justify-center{justify-content:center}.gap-6{gap:1.5rem}.overflow-hidden{overflow:hidden}.rounded-2xl{border-radius:1rem}.rounded-full{border-radius:9999px}.rounded-lg{border-radius:0.5rem}.bg-gold-dark\/20{background-color:rgb(253 184 19 / 0.2)}.bg-ocean-dark\/20{background-color:rgb(10 38 71 / 0.2)}.bg-ocean-dark\/80{background-color:rgb(10 38 71 / 0.8)}.bg-gradient-to-r{background-image:linear-gradient(to right, var(--tw-gradient-stops))}.from-ocean{--tw-gradient-from:#144272 var(--tw-gradient-from-position);--tw-gradient-to:rgb(20 66 114 / 0) var(--tw-gradient-to-position);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.to-gold{--tw-gradient-to:#FFD700 var(--tw-gradient-to-position)}.bg-clip-text{-webkit-background-clip:text;background-clip:text}.object-cover{object-fit:cover}.p-4{padding:1rem}.p-6{padding:1.5rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.px-8{padding-left:2rem;padding-right:2rem}.py-3{padding-top:0.75rem;padding-bottom:0.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.py-6{padding-top:1.5rem;padding-bottom:1.5rem}.text-center{text-align:center}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-4xl{font-size:2.25rem;line-height:2.5rem}.text-base{font-size:1rem;line-height:1.5rem}.text-lg{font-size:1.125rem;line-height:1.75rem}.text-sm{font-size:0.875rem;line-height:1.25rem}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-xs{font-size:0.75rem;line-height:1rem}.font-bold{font-weight:700}.italic{font-style:italic}.leading-relaxed{line-height:1.625}.text-gold-light{--tw-text-opacity:1;color:rgb(255 229 127 / var(--tw-text-opacity, 1))}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219 / var(--tw-text-opacity, 1))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175 / var(--tw-text-opacity, 1))}.text-teal{--tw-text-opacity:1;color:rgb(0 217 255 / var(--tw-text-opacity, 1))}.text-transparent{color:transparent}.text-white{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}.text-yellow{--tw-text-opacity:1;color:rgb(255 235 59 / var(--tw-text-opacity, 1))}.opacity-80{opacity:0.8}.blur-3xl{--tw-blur:blur(64px);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.backdrop-blur-sm{--tw-backdrop-blur:blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity, 1))}@media (min-width: 768px){.md\:w-1\/3{width:33.333333%}.md\:w-2\/3{width:66.666667%}.md\:flex-row{flex-direction:row}}