*        /*置中*/
        .btn-center {
            text-align: center;
            padding-top: 40px;     /* 把內容往下推 */
            margin-top: 40px;      /* 再推一層保險 */
            position: relative;    /* 讓它優先顯示在 timeline 上面 */
            z-index: 2;
        }

/* 按鈕樣式 */
        .view-more-btn {
            display: inline-block;
            margin-top: 15px;
            padding: 12px 24px;
            background: linear-gradient(45deg, #3498db, #2980b9);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            transition: all 0.3s;
            font-weight: bold;
            font-size: 14px;
        }

        .view-more-btn:hover {
            background: linear-gradient(45deg, #2980b9, #3498db);
        }

        /* 全局樣式 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Microsoft JhengHei', '微軟正黑體', Arial, sans-serif;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            background-color: #f7f9fc;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        section {
            padding: 250px 0;/* 調整網頁定位高度 */
        }
        
        h1, h2, h3 {
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        p {
            margin-bottom: 15px;
        }
        
        .btn {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
            margin-top: 20px;
            font-weight: bold;
        }
        /*字卡（ 一）*/
        .timeline-content {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .timeline-content:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: #3498db;
        }
        .view-more-btn:hover {
            background: linear-gradient(45deg, #2980b9, #3498db);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }


        .glow-btn {
           box-shadow: 0 0 15px rgba(52, 152, 219, 0.8), 0 0 25px rgba(52, 152, 219, 0.6);
           animation: glow 1.5s ease-in-out infinite alternate;
           background-color: #3498db;}

          @keyframes glow {
              0% {
            box-shadow: 0 0 8px rgba(52, 152, 219, 0.5), 0 0 16px rgba(52, 152, 219, 0.3);
             }       
           100% {
            box-shadow: 0 0 20px rgba(52, 152, 219, 0.9), 0 0 30px rgba(52, 152, 219, 0.6);
             }
        } 

        .btn:hover {
            background-color: #2980b9;
        }

        .logo {
          display: flex;
          align-items: center;
          font-size: 20px;
          font-weight: bold;
          color: #333;
          gap: 10px;
        }

        .profile-pic {
          width: 50px;
          height: 50px;
          border-radius: 30%;
          object-fit: cover;
        }

        /* 頂部導航 */
        header {
            background-color: white;
            box-shadow: 0 5px 10px rgba(0, 183, 255, 0.377);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #3498db;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 25px;
        }
        
        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #3498db;
        }
        
        /* 首頁區塊 */
        #home {
            height: 2vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('/api/placeholder/1200/800') center/cover;
            margin-top: 10px;
        }
        
        .hero-content {
            max-width: 500px;
        }
        
        .hero-content h1 {
            font-size: 46px;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 18px;
            margin-bottom: 30px;
        }
        
        ::selection {
        background: white;
        color: #ff7f00; /* 更濃的橘色也可以這樣調 */
      }

        
        /* 專案經歷區塊 */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: #3498db;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 20px;
            background-color: white;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
         .timeline-date {
            color: #3498db;
            font-weight: bold;
            font-size: 14px;
            margin-bottom: 10px;
            display: inline-block;
            background: linear-gradient(45deg, #3498db, #e74c3c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .timeline-dot {
            width: 20px;
            height: 20px;
            background-color: #3498db;
            border-radius: 50%;
            position: absolute;
            top: 20px;
            z-index: 1;
        }
        
        .timeline-item:nth-child(odd) .timeline-dot {
            right: -10px;
        }
        
        .timeline-item:nth-child(even) .timeline-dot {
            left: -10px;
        }
        
        /* 頁尾 */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .social-links {
            margin: 20px 0;
        }
        
        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            margin: 0 10px;
            border-radius: 50%;
            color: white;
            text-decoration: none;
            font-size: 18px;
            line-height: 40px;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: #3498db;
        }
        
        /* 響應式設計 */
        @media (max-width: 768px) {
            .about-content {
                flex-direction: column;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item:nth-child(odd) .timeline-dot,
            .timeline-item:nth-child(even) .timeline-dot {
                left: 21px;
            }
            
            .nav-links {
                display: none;
            }
        }
         /* 額外的視覺效果 */
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            left: 10%;
            animation-delay: 0s;
        }
        .shape:nth-child(2) {
            left: 20%;
            animation-delay: 1s;
        }
        .shape:nth-child(3) {
            left: 80%;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
        }





