:root { --steel-blue: #003366; } /* 你的品牌鋼鐵藍 */

body {
    /* 工業風淡灰漸層背景 */
    background: linear-gradient(180deg, #ffffff 0%, #CCD6E0 100%); /* 由白到淡鋼鐵灰的漸層背景 */
    padding-bottom: 50px;
    margin-top: 20px;
    height: 100vh;
    display: flex;
    align-items: center; /* 垂直置中 */
    justify-content: center; /* 水平置中 */
    margin: 0;
    font-family: "Microsoft JhengHei", sans-serif;
}

/* 入口卡片容器 */
.splash-card {
    width: 90%; /* 在窄螢幕時佔據 90% 寬度，自動預留左右各 5% 空間 */
    max-width: 450px; /* 寬螢幕時限制最大寬度 */
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 51, 102, 0.15);
    text-align: center;
    
    /* 確保在各種螢幕下都置中 */
    margin: 20px;
}

/* 頂部深藍色塊區域 */
.splash-header {
    background-color: var(--steel-blue);
    padding: 3rem 1rem;
    color: white;
}

.splash-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
}

.lang-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 12px;
    /* 強化立體感的陰影 */
    box-shadow: 0 20px 40px rgba(0, 51, 102, 0.15); 
    text-align: center;
    border-top: 5px solid #003366; /* 鋼鐵藍頂邊 */
    width: 100%;
    max-width: 450px; /* 限制最大寬度 */
}

/* 內容區域 */
.splash-body {
    padding: 2rem 2rem;
}

.btn-lang {
    width: 100%;
    max-width: 250px; /* 按鈕寬度 */
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 auto; /* X 軸置中 */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* 高級動畫曲線 */
    border: 1px solid #003366;
    color: #003366;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover 時的立體壓下感 */
.btn-lang:hover {
    background-color: #003366;
    color: #fff;
    transform: translateY(-5px) scale(1.02); /* 向上浮動並稍微放大 */
    box-shadow: 0 10px 20px rgba(0, 51, 102, 0.2);
}

/* 按鈕按下特效 */
.btn-lang:active {
    background-color: #003366 !important;
    color: #fff !important;
    transform: scale(0.92); /* 點擊時縮小的 Q 彈感 */
}

.divider {
    height: 1px;
    background-color: #e9ecef;
    width: 80%;
    margin: 1rem auto;
}