.elementor-10931 .elementor-element.elementor-element-70a483a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:25px;--margin-bottom:10px;--margin-left:0px;--margin-right:0px;}.elementor-10931 .elementor-element.elementor-element-70a483a:not(.elementor-motion-effects-element-type-background), .elementor-10931 .elementor-element.elementor-element-70a483a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#05031B;}.elementor-10931 .elementor-element.elementor-element-99bea6b{column-gap:0px;text-align:center;}.elementor-10931 .elementor-element.elementor-element-6c45a95{--display:flex;--gap:20px 20px;--row-gap:20px;--column-gap:20px;}.elementor-10931 .elementor-element.elementor-element-6c45a95:not(.elementor-motion-effects-element-type-background), .elementor-10931 .elementor-element.elementor-element-6c45a95 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#05031B;}.elementor-10931 .elementor-element.elementor-element-6c45a95.e-con{--align-self:flex-start;--flex-grow:0;--flex-shrink:0;}.elementor-10931 .elementor-element.elementor-element-c7f2a0f > .elementor-widget-container{background-color:#334C60;}.elementor-10931 .elementor-element.elementor-element-a01b154{--display:flex;}@media(max-width:767px){.elementor-10931 .elementor-element.elementor-element-70a483a{--margin-top:10px;--margin-bottom:10px;--margin-left:0px;--margin-right:0px;}}@media(min-width:768px){.elementor-10931 .elementor-element.elementor-element-70a483a{--content-width:1320px;}.elementor-10931 .elementor-element.elementor-element-6c45a95{--width:98.377%;}}/* Start custom CSS for text-editor, class: .elementor-element-99bea6b *//* 容器基礎設定 */
#top.section-title {
    text-align: center !important;
    font-family: "PingFang TC", "Microsoft JhengHei", sans-serif !important;
    font-weight: 900 !important;
    line-height: 1.4 !important;
    padding: 20px 10px !important;
    /* 響應式字體大小：電腦大、手機適中 */
    font-size: clamp(22px, 5.5vw, 48px) !important; 
    letter-spacing: 1px !important;
}

/* 清新彩虹漸層特效 */
.ai-rainbow-text {
    /* 使用亮色系漸層：粉紅、橘黃、青綠、亮藍 */
    background: linear-gradient(
        to right, 
        #ff5f6d, 
        #ffc371, 
        #33ccff, 
        #00ffcc, 
        #ff5f6d
    );
    background-size: 200% auto !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    
    /* 移除厚重的發光，改用非常淡的投影來增加層次感而不模糊 */
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.05)) !important;

    /* 漸層流動動畫 */
    animation: rainbowFlow 4s linear infinite !important;
}

/* 讓彩虹流動起來的動畫 */
@keyframes rainbowFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* 手機版微調：防止字太長擠歪 */
@media (max-width: 767px) {
    .ai-rainbow-text {
        white-space: normal !important;
        word-break: keep-all !important;
        display: block !important;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-c7f2a0f *//* 1. 容器：電腦版並排，手機版自動換行 */
.tech-card-wrapper {
    display: flex !important;
    flex-wrap: wrap !important; /* 核心：允許內容換行 */
    justify-content: center !important;
    gap: 20px !important;
    padding: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* 2. 卡片主體：深色科技感毛玻璃 */
.tech-card {
    background: rgba(10, 25, 41, 0.9) !important; 
    border: 1px solid rgba(0, 255, 242, 0.3) !important;
    border-radius: 16px !important;
    padding: 25px !important;
    backdrop-filter: blur(12px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease;
    
    /* 電腦版預設寬度 */
    flex: 1 1 400px !important; 
    max-width: 500px !important;
    min-width: 300px !important; /* 防止太窄 */
    box-sizing: border-box !important;
}

/* 3. 標題：修正手機版文字被切斷問題 */
.tech-card-title {
    color: #00fff2 !important; 
    font-size: clamp(20px, 5vw, 26px) !important; /* 隨螢幕縮放字體 */
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 0 10px rgba(0, 255, 242, 0.5) !important;
    line-height: 1.4 !important;
    text-align: left !important; /* 改為左對齊更適合長標題 */
}

/* 4. 列表內容：恢復正常橫排 */
.tech-card-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
}

.tech-card-list li {
    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    padding-left: 20px !important;
    position: relative !important;
    /* 確保文字不會變成垂直排列 */
    white-space: normal !important; 
    word-break: normal !important; 
}

/* 5. 手機版專屬微調：寬度撐滿 */
@media (max-width: 767px) {
    .tech-card {
        flex: 1 1 100% !important; /* 強制手機版佔滿 100% 寬度 */
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 20px !important;
    }
    
    .tech-card-wrapper {
        padding: 10px !important;
        gap: 15px !important;
    }
}

/* 指示符號 */
.tech-card-list li::before {
    content: "◢" !important;
    position: absolute !important;
    left: 0 !important;
    color: #39ff14 !important;
    font-size: 12px !important;
    top: 6px !important;
}

.tech-card-list b {
    color: #39ff14 !important;
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-ce88e4c *//* 1. 基礎容器強制置中 */
.ai-landing-page {
    background: #000000 !important;
    color: #ffffff !important;
    padding: 40px 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important; /* 所有子元素水平置中 */
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
}

.ai-header-box {
    text-align: center !important;
    margin-bottom: 30px !important;
}

.ai-main-title {
    font-size: clamp(24px, 5vw, 40px) !important;
    background: linear-gradient(90deg, #00fff2, #39ff14) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    margin-bottom: 15px !important;
}

/* 2. 贈品卡片強制置中與螢光 */
.tech-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(0, 255, 242, 0.3) !important;
    border-radius: 16px !important;
    padding: 30px !important;
    backdrop-filter: blur(15px) !important;
    margin-bottom: 30px !important;
    width: 100% !important;
    max-width: 600px !important; /* 限制寬度避免電腦版太散 */
    box-sizing: border-box !important;
    text-align: center !important;
}

.gift-center {
    border: 1.5px solid #39ff14 !important;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2) !important;
}

.neon-badge-center {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(57, 255, 20, 0.15) !important;
    border: 1px dashed #39ff14 !important;
    padding: 12px 25px !important;
    border-radius: 50px !important;
    margin: 20px auto !important;
}

/* 3. 四大技能標題：極亮螢光效果 */
.ai-section-title {
    color: #00fff2 !important;
    font-size: clamp(20px, 4vw, 28px) !important;
    text-shadow: 0 0 15px #00fff2 !important;
    margin: 40px 0 25px !important;
    animation: neon-flicker 2s infinite alternate;
}

.tech-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 900px !important;
}

.tech-card.mini {
    flex: 1 1 calc(45% - 15px) !important; /* 電腦版每行兩個 */
    min-width: 280px !important;
}

.mini-title {
    color: #39ff14 !important; /* 極亮螢光綠 */
    font-size: 20px !important;
    font-weight: 800 !important;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.8) !important;
    margin-bottom: 10px !important;
}

/* 4. 手機版 RWD 強制修正 */
@media (max-width: 767px) {
    .tech-card.mini {
        flex: 1 1 100% !important; /* 手機版佔滿寬度，解決細長條問題 */
    }
    .investment-text {
        font-size: 16px !important;
    }
}

/* 特效動畫 */
@keyframes neon-flicker {
    0% { opacity: 1; text-shadow: 0 0 10px #00fff2; }
    100% { opacity: 0.9; text-shadow: 0 0 25px #00fff2, 0 0 40px #00fff2; }
}

.red-highlight { color: #ff4d4d !important; text-shadow: 0 0 10px rgba(255, 77, 77, 0.8) !important; }/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-67b845d *//* --- 全域容器修正 --- */
.info-dashboard-wrapper {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    padding: 20px 0 !important;
}

.info-dashboard {
    width: 90% !important;
    max-width: 600px !important; /* 電腦版限制寬度 */
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid #00fff2 !important;
    border-radius: 16px !important;
    padding: 25px !important;
    box-sizing: border-box !important;
}

/* --- 資訊條修正 --- */
.info-grid-container {
    width: 100% !important;
    margin-bottom: 20px !important;
}

.info-item {
    background: rgba(255, 255, 255, 0.05) !important;
    border-left: 4px solid #00fff2 !important;
    padding: 15px !important;
    margin-bottom: 12px !important;
    border-radius: 4px !important;
    text-align: left !important;
}

.info-label {
    color: #00fff2 !important;
    font-size: 11px !important;
    font-weight: 900 !important;
    display: block !important;
}

.info-value {
    color: #ffffff !important;
    font-size: 18px !important;
    margin: 5px 0 0 0 !important;
    font-weight: bold !important;
}

.price-tag {
    color: #ff3c00 !important;
    font-size: 32px !important;
    text-shadow: 0 0 15px rgba(255, 60, 0, 0.8) !important;
}

/* --- 按鈕與文字修正 --- */
.cta-section {
    width: 100% !important;
    text-align: center !important;
}

.urgent-text {
    color: #39ff14 !important;
    font-size: 18px !important;
    margin-bottom: 15px !important;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5) !important;
}

.glow-cta-btn {
    display: inline-block !important;
    width: 100% !important; /* 手機版按鈕填滿寬度更好按 */
    max-width: 300px !important;
    background: linear-gradient(135deg, #00fff2, #0072ff) !important;
    color: #ffffff !important;
    padding: 15px 0 !important;
    border-radius: 50px !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    box-shadow: 0 0 20px rgba(0, 255, 242, 0.6) !important;
    animation: pulseButton 2s infinite !important;
}

@keyframes pulseButton {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.footer-quote {
    color: #ffffff !important;
    font-size: 14px !important;
    margin-top: 15px !important;
    opacity: 0.8 !important;
}

/* --- 手機版專用修正：防止文字溢出與邊距過大 --- */
@media (max-width: 767px) {
    .info-dashboard {
        width: 95% !important; /* 讓手機版寬一點 */
        padding: 15px !important;
    }
    .info-value {
        font-size: 16px !important; /* 字體微調，避免地點太長折行 */
    }
    .price-tag {
        font-size: 28px !important;
    }
}/* End custom CSS */