﻿

a:link, a:visited {
	color: #1d4ed8; /* 經典湛藍 (兼顧視覺明亮與白底高對比可讀性) */
	text-decoration: none;
	font-weight: 600;
	padding: 2px 6px;
	margin: 0 -2px;
	border-radius: 4px;
	background-color: transparent;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
	color: #2563eb; /* 鮮明天藍 (Hover 時更為耀眼) */
	background-color: rgba(37, 99, 235, 0.1); /* 淡藍透明背景高亮 */
}

a:active {
	color: #1e40af; /* 深沉靛藍 (點擊時的反饋感) */
	background-color: rgba(30, 64, 175, 0.2);
}


.powered-by,
.powered-by * {
	background: none !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	.powered-by, .powered-by *

{
	background: none !important;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
}

.powered-by {
	/* 關鍵 1：強制佔滿 100% 寬度，直接擠到下一行 */
	flex-basis: 100%;
	width: 100%;
	/* 關鍵 2：與第一行的選單/標題拉開間距 */
	margin-top: 12px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 0.75rem;
	color: #6b7280;
	/* 控制換行後的對齊方式 */
	display: flex;
	justify-content: flex-end; /* 靠右對齊 (若要靠左可改為 flex-start) */
	align-items: center;
	gap: 0.35rem;
}

/* 針對連結設定防護 */
.powered-by a,
.powered-by a:visited {
	color: #ffc300 !important; /* 配合 Header 的亮黃色 */
	font-weight: 600;
	text-decoration: none !important;
	transition: color 0.2s ease-in-out;
}

/* 強制清除全域 a::after 底線對此連結的干擾 */
.powered-by a::after,
.powered-by a:hover::after {
	display: none !important;
	content: none !important;
}

.powered-by a:hover {
	color: #ffffff !important; /* 滑鼠懸停時高亮為白色 */
}

.powered-by a:active {
	color: #e2e8f0 !important;
}
