        :root {
            --primary-purple: #2D1B69;
            --deep-purple: #1e033d;
            --accent-orange: #FF8C42;
            --accent-pink: #D946EF;
            --light-purple: #8B5CF6;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            width: 100%;
			height: auto;
			overflow-x: hidden;
        }
        
        body {
            font-family: 'Microsoft JhengHei', 'PingFang TC', 'Helvetica Neue', Arial, sans-serif;            
            background: #1e033d;
            color: white;
            width: 100%;
            min-height: 100vh;
            position: relative;
			overflow-x: hidden;
        }
        
        /* Navbar - 統一定義，避免衝突 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            max-width: 100vw;
            padding: 1.5rem 0;
            transition: all 0.4s ease;
            background: transparent !important;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1030;
            box-sizing: border-box;
        }

        .navbar .container {
            width: 100%;
            max-width: 100%;
            padding-left: 1rem;
            padding-right: 1rem;
            box-sizing: border-box;
        }
        
        .navbar.scrolled {
            padding: 1rem 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            background: rgba(30, 3, 61, 0.5) !important;
        }
        
        .navbar-brand {
            position: relative;
            height: 45px;
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .nav-logo {
            height: 45px;
            width: auto;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo-white {
            opacity: 1;
        }

        .navbar.scrolled .logo-white {
            opacity: 0;
        }

        .navbar.scrolled .logo-color {
            opacity: 1;
        }
        
        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 50;
            margin: 0 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-orange), var(--accent-pink));
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 80%;
        }
        
        .nav-link:hover {
            color: white !important;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 110vh;
            background: #1e033d;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding-top: 120px;
            padding-bottom: 8rem;
            box-sizing: border-box;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(217, 70, 239, 0.08) 0%, transparent 40%),
                        radial-gradient(circle at 70% 50%, rgba(255, 140, 66, 0.08) 0%, transparent 40%);
            animation: float-bg 20s ease-in-out infinite;
        }
        
        @keyframes float-bg {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-50px, -30px) rotate(5deg); }
        }
        
        .logo-container {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 2;
        }
        
        .logo-main {
            max-width: 600px;
            width: 90%;
            height: auto;
            opacity: 0;
            filter: drop-shadow(0 0 0 transparent);
            animation: logoFadeIn 1.5s ease-out forwards,
                       glowFadeIn 1s ease-out 1.8s forwards,
                       glow-pulse 3s ease-in-out 3.3s infinite;
            transition: transform 0.4s ease;
            cursor: pointer;
        }
        
        @keyframes logoFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes glowFadeIn {
            from {
                filter: drop-shadow(0 0 0 transparent);
            }
            to {
                filter: drop-shadow(0 8px 20px rgba(217, 70, 239, 0.3)) 
                        drop-shadow(0 0 15px rgba(255, 140, 66, 0.25));
            }
        }
        
        @keyframes glow-pulse {
            0%, 100% {
                filter: drop-shadow(0 8px 20px rgba(217, 70, 239, 0.3)) 
                        drop-shadow(0 0 15px rgba(255, 140, 66, 0.25));
            }
            50% {
                filter: drop-shadow(0 10px 25px rgba(217, 70, 239, 0.4)) 
                        drop-shadow(0 0 25px rgba(255, 140, 66, 0.35));
            }
        }
        
        .logo-main:hover {
            transform: scale(1.1);
            filter: drop-shadow(0 15px 35px rgba(217, 70, 239, 0.5)) 
                    drop-shadow(0 0 35px rgba(255, 140, 66, 0.45)) !important;
        }
        
        .hero-content {
            text-align: center;
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        .hero-title {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 2rem;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease-out;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            line-height: 1.8;
            margin-bottom: 3rem;
            opacity: 0.95;
            animation: fadeInUp 1s ease-out 0.3s both;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Service Buttons */
        .service-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 4rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }
        
        .service-btn {
            padding: 1rem 2.5rem;
            border: 2px solid transparent;
            border-radius: 50px;
            background: linear-gradient(#1e033d, #1e033d) padding-box,
                        linear-gradient(135deg, var(--accent-pink), var(--accent-orange)) border-box;
            color: white;
            font-size: 1.1rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .service-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
            transition: left 0.4s ease;
            z-index: -1;
        }
        
        .service-btn:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(217, 70, 239, 0.4);
        }
        
        .service-btn:hover::before {
            left: 0;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 3rem 0;
            text-align: center;
            animation: fadeInUp 1s ease-out 0.9s both;
        }
        
        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--accent-orange);
            font-size: 1.5rem;
            text-decoration: none;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        
        .contact-email:hover {
            color: var(--accent-pink);
            transform: scale(1.05);
        }
        
        .contact-email i {
            font-size: 1.8rem;
        }
        
        /* Social Icons */
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--accent-orange);
            border-radius: 50%;
            color: var(--accent-orange);
            font-size: 1.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
            transform: scale(0);
            transition: transform 0.3s ease;
            border-radius: 50%;
            z-index: -1;
        }
        
        .social-link:hover {
            color: white;
            border-color: transparent;
            transform: translateY(-5px);
        }
        
        .social-link:hover::before {
            transform: scale(1);
        }
        
        /* About Section */
        .about-section {
            padding: 6rem 0;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            position: relative;
            z-index: 2;
            box-sizing: border-box;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 300;
            text-align: center;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.1rem;
            opacity: 0.8;
            margin-bottom: 4rem;
        }
        
        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 20px 40px rgba(217, 70, 239, 0.3);
            border-color: var(--accent-pink);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }
        
        .feature-desc {
            opacity: 0.85;
            line-height: 1.7;
        }
        
        /* CTA Section */
        .cta-section {
            margin-top: 5rem;
            padding: 4rem 3rem;
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--accent-pink), var(--accent-orange), transparent);
        }
        
        .cta-section::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(217, 70, 239, 0.03) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .cta-section > * {
            position: relative;
            z-index: 1;
        }
        
        .cta-button {
            display: inline-block;
            padding: 1.25rem 3rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
            border: none;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(217, 70, 239, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
            transition: left 0.4s ease;
            z-index: -1;
        }
        
        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(217, 70, 239, 0.5);
            color: white;
        }
        
        .cta-button:hover::before {
            left: 0;
        }
        
        .cta-button i {
            margin-left: 0.5rem;
        }
        
        /* Footer */
        .footer {
            padding: 3rem 0;
            background: rgba(15, 0, 32, 0.95);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
            box-sizing: border-box;
        }
        
        .footer .container {
            padding-bottom: 2rem;
        }
        
        .footer-brand {
            font-size: 1.1rem;
            opacity: 0.7;
            margin-bottom: 1.5rem;
        }
        
        .footer-copyright {
            opacity: 0.6;
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        
        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 5px 20px rgba(217, 70, 239, 0.4);
        }
        
        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(217, 70, 239, 0.6);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem 0;
            }
            
            .navbar .container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            
            .navbar-toggler {
                border: none;
                padding: 0.5rem;
            }
            
            .scroll-top {
                bottom: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            
            .hero-section {
                padding-top: 80px;
                padding-bottom: 20rem;
                min-height: auto;
            }
            
            .logo-container {
                margin-top: 2rem;
                margin-bottom: 2rem;
            }
            
            .hero-content {
                padding: 1rem;
            }
            
            .hero-title {
                font-size: 2rem;
                margin-bottom: 1.5rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }
            
            .service-buttons {
                margin-bottom: 2.5rem;
                gap: 1rem;
            }
            
            .service-btn {
                padding: 0.875rem 2rem;
                font-size: 1rem;
            }
            
            .contact-section {
                padding: 2rem 0 3rem;
            }
            
            .contact-email {
                font-size: 1.2rem;
                margin-bottom: 1.5rem;
            }
            
            .social-links {
                margin-bottom: 2rem;
            }
            
            .logo-main {
                max-width: 550px;
                width: 100%;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .nav-link {
                margin: 0.5rem 0;
            }
            
            .cta-button {
                padding: 1rem 2rem;
                font-size: 1.1rem;
            }
            
            .cta-section {
                margin-top: 3rem;
                padding: 3rem 1.5rem;
                border-radius: 20px;
            }

            .about-section {
                position: relative;
                z-index: 10;
            }
            
            .footer .container {
                padding-bottom: 3rem;
            }
        }
        
        @media (max-width: 576px) {
            .scroll-top {
                bottom: 12px;
                right: 12px;
                width: 38px;
                height: 38px;
            }
            
            .footer .container {
                padding-bottom: 4rem;
            }
            
            .service-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .service-btn {
                width: 100%;
                max-width: 300px;
            }
        }

        @media (min-width: 992px) {
            .navbar .container {
                max-width: 1140px;
                padding-left: 1rem;
                padding-right: 1rem;
            }
        }

        @media (min-width: 1200px) {
            .navbar .container {
                max-width: 1320px;
            }
        }
        
        @media (prefers-reduced-motion: reduce) {
            .nav-logo {
                transition: none;
            }
        }
		
        /* 自訂 Navbar Toggler */
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
            background: transparent;
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 1031;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }
        
        /* 隱藏原生的 toggler icon */
        .navbar-toggler-icon {
            display: none;
        }
        
        /* 自訂漢堡選單 */
        .navbar-toggler .menu-icon {
            position: relative;
            width: 28px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .navbar-toggler .menu-icon span {
            display: block;
            width: 100%;
            height: 3px;
            background: linear-gradient(135deg, var(--accent-pink), var(--accent-orange));
            border-radius: 3px;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            transform-origin: center;
        }
        
        /* 第一條線 */
        .navbar-toggler .menu-icon span:nth-child(1) {
            width: 100%;
        }
        
        /* 第二條線 */
        .navbar-toggler .menu-icon span:nth-child(2) {
            width: 80%;
            margin-left: auto;
        }
        
        /* 第三條線 */
        .navbar-toggler .menu-icon span:nth-child(3) {
            width: 100%;
        }
        
        /* Hover 效果 */
        .navbar-toggler:hover .menu-icon span:nth-child(2) {
            width: 100%;
        }
        
        /* 展開時的動畫（轉換成 X） */
        .navbar-toggler[aria-expanded="true"] .menu-icon span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
            width: 100%;
        }
        
        .navbar-toggler[aria-expanded="true"] .menu-icon span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }
        
        .navbar-toggler[aria-expanded="true"] .menu-icon span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
            width: 100%;
        }