/* ============================= */
/* 基礎設定 */
/* ============================= */

html, body {
    background: #111; /* 改深灰，不用純黑 */
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #ffffff;
}

/* ============================= */
/* 導覽列 */
/* ============================= */

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    background: #0d0d0d;
    border-bottom: 1px solid #222;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ============================= */
/* HERO TERMINAL */
/* ============================= */

.hero-terminal {
    max-width: 1000px;
    margin: 60px auto;
    height: 500px;
    border: 1px solid #222;
    background: #181818;
    border-radius: 8px;
    display: flex;
}

    .hero-terminal .terminal {
        flex: 1;
        padding: 30px;
        overflow-y: auto;
        font-family: Consolas, monospace;
        font-size: 15px;
        color: #eaeaea; /* 改成淡白 */
    }

.terminal .line {
    margin-bottom: 6px;
    white-space: pre;
}

/* 輸入區 */

.terminal form {
    display: flex;
    align-items: center;
}

.prompt {
    color: #888;
}

.fake-input {
    min-width: 10px;
    outline: none;
    color: #fff;
    font-family: Consolas, monospace;
    white-space: pre;
    caret-color: transparent;
}

/* 游標 */

.cursor {
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #9E9E9E;
    animation: blink 1s infinite;
    caret-color: transparent;
    caret-color: transparent;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* ============================= */
/* Pricing 區 */
/* ============================= */

.pricing-section {
    padding: 0 20px;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.pricing-card {
    position: relative;
    background: #181818;
    border: 1px solid #222;
    padding: 40px 30px;
    border-radius: 10px;
    transition: 0.3s ease;
}

    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }

    .pricing-card h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }

.price {
    font-size: 36px;
    font-weight: bold;
    margin: 20px 0;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 16px;
}

/* 強調方案 */

.featured {
    border: 2px solid #00d084;
}

.highlight {
    color: #00d084;
}

/* badge */

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #00d084;
    color: #000;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 20px;
}

/* 庫存 */

.stock {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}

.danger {
    color: #ff4d4d;
}

/* 按鈕 */

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 6px;
}

    .btn:hover {
        background: #ffffff;
        color: #000;
    }

.highlight-btn {
    background: #00d084;
    color: #000;
    border: none;
}

    .highlight-btn:hover {
        opacity: 0.85;
    }

.disabled {
    pointer-events: none; /* 禁止點擊 */
    opacity: 0.5; /* 變淡 */
    cursor: not-allowed; /* 滑鼠變禁止符號 */
}

/* ============================= */
/* 信任區塊 */
/* ============================= */

.trust-section {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 60px 20px;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    font-size: 15px;
    color: #bbb;
}

/* ============================= */
/* SEO 區 */
/* ============================= */

.seo-content {
    max-width: 900px;
    margin: 80px auto;
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
}


/* ============================= */
/* Pricing list 修正 */
/* ============================= */

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.pricing-card li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}
