.mts-best-server-section .section-body {
	padding-top: 0;
}

.mts-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 188px;
	border-radius: 8px;
	overflow: hidden;
	background: rgb(35, 38, 48);
	border: 1px solid rgb(58, 62, 76);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mts-card:hover {
	border-color: rgb(251, 71, 75);
	box-shadow: 0 0 0 1px rgba(251, 71, 75, 0.35);
}

.mts-card_cold .mts-card__overlay {
	background: linear-gradient(105deg, rgba(13, 14, 18, 0.92) 0%, rgba(13, 14, 18, 0.5) 48%, transparent 100%);
}

.mts-card__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.mts-card__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.42;
	transition: opacity 0.25s ease;
}

.mts-card:hover .mts-card__bg-img {
	opacity: 0.52;
}

.mts-card__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.mts-card__inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 16px 52px 14px 16px;
	min-height: 188px;
}

.mts-card__title {
	margin: 0 0 12px;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: rgb(232, 181, 3);
	line-height: 1.35;
}

.mts-card__stats {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mts-card__stat {
	display: grid;
	grid-template-columns: minmax(76px, auto) 1fr;
	gap: 8px 10px;
	align-items: start;
	font-size: 0.8125rem;
}

.mts-card__stat-label {
	display: flex;
	align-items: center;
	gap: 6px;
	color: rgb(130, 134, 148);
	font-weight: 600;
	white-space: nowrap;
}

.mts-card__stat-icon {
	width: 14px;
	text-align: center;
	color: rgb(251, 71, 75);
	font-size: 0.75rem;
}

.mts-card__onetwo-logo {
	width: 18px;
	height: 18px;
	object-fit: contain;
	flex-shrink: 0;
}

.mts-card__stat-value {
	color: #fff;
	font-weight: 600;
	word-break: break-word;
}

.mts-card__stat-btn {
	display: inline;
	padding: 0;
	margin: 0;
	border: 0;
	background: none;
	color: rgb(251, 71, 75);
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	text-align: left;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.mts-card__stat-btn:hover {
	color: rgb(253, 145, 147);
}

.mts-card__stat-sep {
	color: rgb(130, 134, 148);
	font-weight: 500;
	text-decoration: none;
}

.mts-card__address {
	font-size: 0.8125rem;
	line-height: 1.4;
}

.mts-card__connect {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 3;
}