*    
        {
          
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        ::selection {
          background: #313022; /* 深灰藍黑 */
          color: #f55003;      /* 高飽和青藍色 */
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            overflow-x: hidden;
            line-height: 1.6;
        }

      /* 動畫背景粒子 */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 5px;
            height: 5px;
            background: #64ffda;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .particle:nth-child(odd) {
            background: #ff6b6b;
            animation-delay: -2s;
        }

        .particle:nth-child(2n) {
            background: #4ecdc4;
            animation-delay: -4s;
        }

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

        /* Header */
        header {
            position: relative;
            z-index: 10;
            padding: 1rem 0;
            background: rgba(15, 15, 35, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(100, 255, 218, 0.2);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: #64ffda;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo::before {
            content: "🤖";
            font-size: 2rem;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #64ffda;
            transform: translateY(-2px);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #64ffda;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            position: relative;
            z-index: 5;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 1rem;
            background: linear-gradient(
                45deg,
                #64ffda,   /* cyan */
                #b388ff,   /* purple */
                #ff6b6b,   /* pink */
                #64ffda    /* 回到 cyan 做循環 */
            );
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
        }

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

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #b8b8b8;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            background: linear-gradient(45deg, #64ffda, #4ecdc4);
            color: #0f0f23;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(100, 255, 218, 0.4);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Features Section */
        .features {
            position: relative;
            z-index: 5;
            padding: 5rem 2rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .features h2 {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 3rem;
            color: #64ffda;
        }

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

        .feature-card {
            background: rgba(26, 26, 46, 0.8);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(100, 255, 218, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #64ffda;
            box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #64ffda, #ff6b6b, #4ecdc4);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: block;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #64ffda;
        }

        .feature-card p {
            color: #b8b8b8;
            line-height: 1.6;
        }

        /*features2模板*/
        .features2 {
            position: relative;
            z-index: 5;
            padding: 5rem 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }
        

        /* Stats Section */
        .stats {
            background: rgba(15, 15, 35, 0.9);
            padding: 3rem 2rem;
            margin: 3rem 0;
            position: relative;
            z-index: 5;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: #64ffda;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #b8b8b8;
            font-size: 1.1rem;
        }

        /* Footer */
        footer {
            background: rgba(15, 15, 35, 0.95);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid rgba(100, 255, 218, 0.2);
            position: relative;
            z-index: 5;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .social-links a {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: rgba(100, 255, 218, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #64ffda;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: #64ffda;
            color: #0f0f23;
            transform: translateY(-5px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .nav-links {
                display: none;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        /* 高級RGB漸變文字 */
        .premium-gradient-text {
          background: linear-gradient(45deg, var(--primary-cyan), var(--primary-purple), var(--primary-pink), var(--primary-cyan));
          background-size: 300% 300%;
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          animation: gradientShift 4s ease-in-out infinite;
        }

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

        /*玟珄貼紙使用伺服器狀態強制加"伺服器"*/
        .stat-number0::after {
          content: '+伺服器';
          margin-left: 2px;
       }

       /*文字在跳動動畫*/
        .loading__letter {
            display: inline-block;
            font-size: inherit;      /* 繼承 h3 大小 */
            color: inherit;          /* 繼承原色，如 .feature-card 裡設定的藍綠色 */
            animation-name: bounce;
            animation-duration: 2s;
            animation-iteration-count: infinite;
        }

        @keyframes bounce {
            0%   { transform: translateY(0); }
            40%  { transform: translateY(-10px); }
            80%, 100% { transform: translateY(0); }
        }
        /* 卡片文字+圖片置中 */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
        }

        .feature-card {
            min-height: 250px; /* 或你想要的固定高度 */
        }
        .center-only-card {
          display: flex;
          flex-direction: column;
          justify-content: center; /* 垂直置中 */
          align-items: center;     /* 水平置中 */
          text-align: center;
        }


        
      /*高雄119圖片*/
        .feature-image-bottom {
            width: 100%;
            max-height: 200px;
            object-fit: cover;
            margin-top: 1rem;
            border-radius: 5px;
        }
        .feature-image-bottom2 {
            width: 100%;
            max-height: 200px;
            object-fit: contain;
            margin-top: 1rem;
            border-radius: 5px;
        }

        /*左上角玟珄貼紙大頭像*/
        .logo-with-avatar {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          font-weight: bold;
          font-size: 1.1rem;
          color: #ffffff;
          text-decoration: none;
        }
        .logo-with-avatar .avatar {
          width: 32px;
          height: 32px;
          border-radius: 50%;
          object-fit: cover;
        }
        
         /*置中大標題玟珄貼紙大頭像*/
        .hero-title {
          display: flex;
          align-items: center;
          gap: 1rem;
          font-size: 4rem;
          font-weight: bold;
          flex-wrap: wrap;
          justify-content: center; /* 置中對齊 */
          text-align: center;
        }

        .hero-avatar {
          width: 56px;
          height: 56px;
          border-radius: 50%;
          object-fit: cover;
        }

        /* 伺服器頭像輪播 */
      .server-avatars-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        padding: 20px 0;
        height: 100px;
      }

      .server-avatars-track {
        display: flex;
        gap: 50px;
        position: absolute;
        top: 0;
        left: 0;
        will-change: transform;
      }

      .server-avatar {
        width: 80px;
        height: 80px;
        border-radius: 30% / 30%;
        object-fit: cover;
        border: 2px solid white;
      }

      /* 手機自動偵測 玟珄貼紙目前狀況、在伺服器排版*/
      @media (max-width: 868px) {
        .stats-container {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          gap: 3rem;
        }

        .stat-number {
          font-size: 2.5rem;
        }

        .stat-label,
        .stat-label span.loading__letter {
          font-size: 1rem;
        }
      }

        /* 🔠 手機版調整 h2 動畫標題大小（像是「伺服器使用好評」） */
        h2.animate-on-scroll {
          font-size: 2.5rem;         /* 適中尺寸，比原本小但不會太小 */
          line-height: 1.2;          /* 行高保持緊湊一點，避免上下太寬 */
          margin-bottom: 1rem;       /* 底部間距保留，不要貼太近 */
        }

        /* 👤 hero 裡面頭像（LOGO）圖的尺寸調整 */
        .hero-title .hero-avatar {
          width: 80px;               /* 頭像寬度縮小 */
          height: 80px;              /* 頭像高度縮小 */
          margin-bottom: 0.5rem;     /* 和文字間留一點間距 */
        }

        /* 功能卡片的標籤樣式 */
        .tags {
        margin-top: 1rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
        }

       /* 🌟 標籤一：一般用途（亮藍色系，科技感） */
.tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #64ffda;
  color: #64ffda;
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px #64ffda;
}

.tag:hover {
  background: #64ffda;
  color: #0f0f23;
  transform: scale(1.05);
  box-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
  cursor: default;
}


/* 💬 標籤二：強調按鈕（漸層亮藍，鼓勵點擊） */
.tag2 {
  background: linear-gradient(to right, #64ffda, #00bcd4);
  color: #0f0f0f;
  padding: 0.4rem 0.9rem;
  font-size: 0.9rem;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  transition: transform 0.2s;
  box-shadow: 0 0 5px #64ffda;
}

.tag2:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}


/* 🟥 標籤三：警示類型（淡紅背景＋紅色發光） */
.tag3 {
  background: rgba(255, 0, 0, 0.15);
  border: 1px solid #ff4d4d;
  color: #ff4d4d;
  font-weight: bold;
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(255, 77, 77, 0.6);
}

.tag3:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}


/* ✅ 標籤四：可點擊動作（螢光綠申請類，帶滑鼠指標） */
.tag4 {
  display: inline-block;
  cursor: pointer;
  background: rgba(0, 255, 153, 0.12);
  border: 1px solid #00ff99;
  color: #00ff99;
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 6px rgba(0, 255, 153, 0.5);
}

.tag4:hover {
  transform: scale(1.05);
  box-shadow: 0 0 10px currentColor, 0 0 20px currentColor;
}


/* 顯示申請表單功能*/
.modal-overlay {
    position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }
        .modal-content {
            background: rgba(26, 26, 46, 0.95);
            border: 1px solid #64ffda;
            border-radius: 12px;
            padding: 2rem;
            max-width: 600px;
            width: 90%;
            box-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
        }
        #applyForm {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        #applyForm input,
        #applyForm textarea {
            padding: 0.75rem 1rem;
            border: 1px solid #64ffda;
            border-radius: 8px;
            background: rgba(255,255,255,0.05);
            color: white;
            font-size: 1rem;
            font-family: inherit;
        }
        #applyForm input::placeholder,
        #applyForm textarea::placeholder {
            color: rgba(255,255,255,0.4);
        }
        #applyForm label {
            font-weight: bold;
            color: #64ffda;
        }

        /* 移除動畫相關樣式 */
        .no-animation {
            animation: none !important;
            transition: none !important;
            transform: none !important;
        }


        /* 左側大頭貼樣式 */
        .with-avatar .card-header {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .with-avatar .avatar-left {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #64ffda;
        }

        /* 手機製作人網站設計排版 */
        @media (max-width: 768px) {
        .with-avatar .card-header {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 0.5rem;
        }

        .with-avatar .avatar-left {
            width: 100px;
            height: 100px;
            border-width: 3px;
        }

        .with-avatar .feature-icon {
            font-size: 1.2rem;
            display: block;
            margin-top: 0.3rem;
        }

        .with-avatar h3 {
            font-size: 1.3rem;
            line-height: 1.4;
        }

        .with-avatar p {
            font-size: 0.95rem;
            line-height: 1.5;
            padding: 0 0.5rem;
        }

        .with-avatar .tags {
            justify-content: center;
        }
        }

        @media (max-width: 768px) {
        .features2 {
            padding: 0 1rem;
        }
        }

        /* 新版功能卡片區塊 */
        .features-alt {
        padding: 5rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
        }

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

        .alt-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(100, 255, 218, 0.4);
        border-radius: 25px;
        text-align: center;
        padding: 2rem 1.5rem;
        backdrop-filter: blur(8px);
        box-shadow: 0 0 15px rgba(100, 255, 218, 0.1);
        transition: all 0.3s ease;
        }

        .alt-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 0 30px rgba(100, 255, 218, 0.2);
        border-color: #64ffda;
        }

        .alt-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: #64ffda;
        }

        .alt-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        color: #ffffff;
        }

        .alt-card p {
        font-size: 1rem;
        color: #b8b8b8;
        margin-bottom: 1rem;
        }

        .alt-tags {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
        }

        .alt-tags span {
        font-size: 0.8rem;
        background: #64ffda;
        color: #0f0f23;
        border-radius: 15px;
        padding: 0.3rem 0.7rem;
        font-weight: bold;
        box-shadow: 0 0 5px #64ffda;
        }

        /* 特殊經典功能RGB*/
.premium-gradient-text {
  background: linear-gradient(
    45deg,
    #00ffd5,   /* 冷亮藍綠 */
    #00c3ff,   /* 亮冰藍 */
    #cc7eff,   /* 柔和科技紫 */
    #ff6f91    /* 落日粉紅 */
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 5s ease-in-out infinite,
             glowPulse 4s ease-in-out infinite,
             textBreath 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% {
    text-shadow:
      0 0 6px rgba(0, 255, 213, 0.3),
      0 0 12px rgba(204, 126, 255, 0.2),
      0 0 20px rgba(255, 111, 145, 0.2);
  }
  50% {
    text-shadow:
      0 0 12px rgba(0, 170, 255, 0.411),
      0 0 20px rgba(204, 126, 255, 0.4),
      0 0 30px rgba(255, 111, 145, 0.3);
  }
}
@keyframes textBreath {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.premium-gradient-text:hover {
  filter: brightness(1.2);
}
@keyframes scaleFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.animate-scale-pop {
  animation: scaleFadeIn 0.8s ease-out both;
}




