/* 檔案: assets/css/global.css */
/* 說明: 全站共用樣式表 (已移除 Tailwind CSS) */

body {
    /* 深色漸層背景 */
    background-color: #0d1117;
    background-image: linear-gradient(160deg, #0d1117 0%, #1e293b 100%);
    color: #e2e8f0; /* 預設文字顏色改為淺灰色 */
    margin: 0;
    font-family: 'Noto Sans TC', sans-serif; /* 確保預設字體 */
}

/* 漸層標題文字 */
.text-gradient {
    background-image: linear-gradient(90deg, #38bdf8, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* 發光效果的按鈕 */
.btn-glow {
    font-weight: 700; /* font-bold */
    padding: 0.5rem 1.25rem; /* py-2 px-5 */
    border-radius: 0.5rem; /* rounded-lg */
    transition-property: all; /* transition-all */
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms; /* duration-300 */
    
    background-color: #4f46e5; /* 靛藍色 */
    color: white;
    border: 1px solid #6366f1;
    /* 結合了 shadow-lg 和自訂的光暈效果 */
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1), 0 0 5px #6366f1, 0 0 10px #6366f1;
}

.btn-glow:hover {
    box-shadow: 0 0 10px #818cf8, 0 0 20px #818cf8;
    transform: translateY(-2px);
}

/* 玻璃擬態效果卡片 */
.card-glass {
    background: rgba(30, 41, 59, 0.5); /* 半透明深藍灰色 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1rem; /* 圓角加大 */
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* 輸入框樣式 (更新) */
.input-tech {
    width: 100%; /* w-full */
    padding: 0.75rem 1rem; /* py-3 px-4 */
    border-radius: 0.5rem; /* rounded-lg */
    box-sizing: border-box; /* 確保 padding 不會影響總寬度 */
    color: #f8fafc; /* 清晰的文字顏色 */
    outline: none;
    /* 漸層邊框效果 */
    background: linear-gradient(#0d1117, #0d1117) padding-box,
                linear-gradient(90deg, #38bdf8, #a78bfa) border-box;
    border: 2px solid transparent;
    /* 光暈效果 */
    box-shadow: 0 0 15px rgba(101, 116, 205, 0.5);
}

#persona_id{
    background-color: #17202d;
}
