body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0F2027, #203A43, #2C5364);
    color: white;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

h1, h2 {
    color: #00A3FF;
}

a {
    color: #FFB400;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #FFD700;
}

hr {
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

/* ---- About Me 變成雙欄對齊 + 優化標題樣式 ---- */
.about-me {
    display: grid;
    grid-template-columns: 1fr 2fr;
    text-align: left;
    max-width: 800px;
    margin: auto;
    row-gap: 10px; /* 調整行距 */
}

.about-label {
    font-weight: bold;
    color: #00A3FF;
    display: flex;
    align-items: center; /* 讓圖示和文字對齊 */
    font-size: 18px;
}

.about-label img {
    width: 22px; /* 調整圖示大小 */
    height: 22px;
    margin-right: 8px; /* 增加圖示與文字的間距 */
}

.about-value {
    text-align: left;
    font-size: 17px;
    color: #ffffff;
    line-height: 1.5;
}

/* 針對所有 ul 移除點點 */
ul {
    list-style: none; /* 移除點點 (bullet points) */
    padding-left: 0; /* 確保列表內容靠左 */
}

/* 讓列表內容每一行佔同樣的寬度 */
ul li {
    display: flex;
    align-items: center; /* 讓 emoji 與文字對齊 */
    justify-content: center; /* 讓內容置中 */
    width: 100%; /* 讓所有 li 都等寬 */
}

