@charset "utf-8";
:root {
    --primary-gold: #f5b921; /* 主題金 */
    --primary-green: #1ff10c; /* 主題綠 */
    /*--button-gradient: linear-gradient(180deg, #fce043 0%, #fbab7e 100%);*/
    --button-gradient: linear-gradient(180deg, #f9ff8e 0%, #4dff41 100%);/* 按鈕 */
    --bg-dark: #1a1a1a; /* 深灰黑色背景 */
    --card-bg: #262626; /* 區塊背景色 */
    --border-color: #3d3d3d;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    background-color: var(--bg-dark);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* 外層大容器，模擬圖片中的金邊框 */
.main-container {
    width: 95%;
    /*max-width: 500px;
    background-color: #121212;
    border: 2px solid #554422;  暗金邊框 */
    /*border-radius: 30px; 
    padding: 40px 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    position: relative;*/
}

/* Logo 區域 */
.logo-section {
    text-align: center;
    margin-bottom: 40px;
}
.logo-placeholder {
    max-width: 250px;
    filter: drop-shadow(0 0 10px rgba(245, 185, 33, 0.3));
}

/* 標題區域 */
.header-title {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}
.header-subtitle {
    color: #cccccc;
    font-size: 1.2rem;
    border-radius: 10px;
    padding: 10px 20px;
    position: relative;
    text-align: left;
    margin: auto;
}

/* myid說明卡片 */
.header-myid-card {
    font-size: 1.2rem;
    border-radius: 10px;
    padding: 10px 20px 30px 20px;
    position: relative;
    text-align: left;
    margin: auto;
}

/* 客服區塊卡片 */
.support-card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 25px 20px;
    margin-bottom: 20px;
    position: relative;
    border-left: 6px solid var(--primary-green); /* 圖片左側的黃條 */
    border-bottom: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    margin: auto;
}

.card-number-title {
    color: var(--primary-green);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-description {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.warning-text {
    color: #ff7d7d; /* 紅色提示文字 */
    font-size: 1rem;
    margin-bottom: 15px;
}

/* 金色按鈕樣式 */
.btn-action {
    background: var(--button-gradient);
    color: #332200;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.btn-action:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(245, 185, 33, 0.4);
    color: #000;
}
.btn-action i {
    margin-right: 10px;
}

/* 虛線提示框 (第三區塊) */
.instruction-box {
    border: 2px dashed #555;
    border-radius: 5px;
    padding: 10px;
    display: inline-block;
    margin-top: 10px;
    background-color: #1a1a1a;
    color: #fff;
    font-weight: 500;
}
.instruction-box i {
    margin-right: 5px;
    color: #aaa;
}