:root {
            --inter-font: 'Segoe UI', 'Microsoft JhengHei', '微軟正黑體', sans-serif;			
            --bg-outer: rgb(2, 2, 12);            
            --bg-inner: rgb(20, 20, 35);            
            --text-cyan: rgb(145, 238, 255);
            --text-yellow: rgb(255, 247, 192);
        }
        body {
            font-family: var(--inter-font);
			background-color: var(--bg-outer) !important; 
            color: var(--text-cyan) !important; 
        }
        
        .text-shadow {
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
.bg-prize{
	background-color:#003366;
	}
.title-prize{
	color:#fff;
}

.top-logo{
	max-width:300px;
}

.indented-paragraph{
	text-indent: 2em;
}

.p_blue{
	color:#003366;
}

.p_color {
    color: #000 !important; 
    
}


.content-card { 
            background-color: var(--bg-inner) !important; 
            border: 2px solid rgba(145, 238, 255, 0.3); /* 亮青色邊框 */
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* 增加陰影深度 */
        }
/* 針對連結與重點文字的 hover 效果 */
        .hover-glow:hover {
            text-shadow: 0 0 8px var(--text-cyan);
            color: var(--text-yellow) !important;
        }

/* 新增的客製化樣式 */
.indent-first-line {
	text-indent: 2em; /* 您可以修改這個值來調整縮排大小 */
}
/* 新增：用於巢狀列表的小寫字母編號 */
.list-lower-alpha {
	list-style-type: lower-alpha;
	margin-left: 1.5rem; /* 增加左邊距，讓列表層次感更明顯 */
}