/* --- Option 1: Modern Gradient --- */
.simple-button {
	border: none;
	background: none;
	padding: 0;
	cursor: pointer;
	display: inline-block;
	transition: transform 0.2s ease-out;
}

.simple-button a {
	display: inline-block;
	background-image: linear-gradient(45deg, #2879fe, #54a0ff);
	color: white;
	font-family: sans-serif;
	font-weight: bold;
	text-decoration: none;
	transition: background-image 0.3s ease;
}

.simple-button:hover {
	transform: scale(1.05);
}

.simple-button:hover a {
	background-image: linear-gradient(45deg, #1e63d1, #3a8ef0);
}

.simple-button:active {
	transform: scale(0.98);
}

.simple-button:active a {
	background-image: linear-gradient(45deg, #164b9e, #2a75d1);
}

.simple-button:focus {
	outline: none;
}
.simple-button:focus-visible a {
	outline: 3px solid #70b5ff;
	outline-offset: 2px;
}

.simple-button a {
	display: inline-block;
	background-color: #ff6347;
	color: white;
	font-family: 'Arial', sans-serif;
	font-weight: bold;
	text-decoration: none;
	transition: all 0.1s ease-in-out;
}

.simple-button:hover a {
	background-color: #ff7f68;
	animation: bounce 0.5s ease infinite alternate;
}

.simple-button:active a {
	transform: translateY(3px);
	background-color: #e0523b;
	animation: none;
}

@keyframes bounce {
from {
	transform: translateY(0);
}
to {
	transform: translateY(-4px);
}
}

.simple-button-animated-gradient a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: white;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	text-decoration: none;
	background-size: 200% 100%;
	background-image: linear-gradient(90deg, #11998e, #38ef7d, #11998e);
	transition: background-position 0.5s ease, transform 0.2s ease;
}

.simple-button-animated-gradient:hover a {
	background-position: -100% 0;
	transform: translateY(-2px);
}

.simple-button-animated-gradient:active a {
	transform: translateY(1px);
	background-position: -100% 0;
}

.simple-button-animated-gradient a .fa-download {
	transition: transform 0.3s ease-out;
}

.simple-button-animated-gradient:hover a .fa-download {
	transform: scale(1.1) rotate(5deg);
}

.simple-button:focus {
	outline: none;
}
.simple-button-animated-gradient:focus-visible a {
	outline: 3px solid #6ffabd;
	outline-offset: 2px;
}