.links-list {
	list-style: none;
	max-width: 360px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.links-list li {
	margin: 1rem 0;
	background: rgba(255, 122, 0, 0.1);
	border: 1.5px solid #ff7a00;
	border-radius: 8px;
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 0 6px rgba(255, 122, 0, 0.2);
}

.links-list li:hover {
	background-color: rgba(255, 122, 0, 0.25);
	box-shadow: 0 0 12px rgba(255, 122, 0, 0.6);
}

.links-list a {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: #ffddb4;
	font-family: 'Share Tech Mono', monospace;
	font-size: 1.3rem;
	padding: 1rem 1.5rem;
	gap: 1rem;
	transition: color 0.3s ease;
}

.links-list a:hover {
	color: #ff9500;
	text-shadow: 0 0 6px #ff9500;
}

.links-list a .icon {
	font-size: 1.8rem;
	min-width: 24px;
	text-align: center;
	color: #ff7a00;
	transition: color 0.3s ease;
}

.links-list li:hover .icon {
	color: #ffb347;
}