.palvelinx-fivem-wrapper {
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.palvelinx-fivem-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 560px;
	border-radius: 1rem;
	overflow: hidden;
	background-image: linear-gradient(135deg, rgba(42, 45, 50, 0.96), rgba(18, 20, 24, 0.96));
	background-size: cover;
	background-position: center;
}

.palvelinx-fivem-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
	-webkit-backdrop-filter: blur(2px) brightness(0.9);
	backdrop-filter: blur(2px) brightness(0.9);
}

.palvelinx-fivem-status {
	position: absolute;
	top: 1rem;
	left: 1rem;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
	font-weight: 700;
	font-size: 0.85rem;
}

.palvelinx-fivem-status-dot {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: #ff5b5b;
}

.palvelinx-fivem-status.is-online .palvelinx-fivem-status-dot {
	background: #43d67a;
}

.palvelinx-fivem-status.is-online .palvelinx-fivem-status-text {
	color: #8ef0b3;
}

.palvelinx-fivem-status.is-offline .palvelinx-fivem-status-text {
	color: #ff9f9f;
}

.palvelinx-fivem-content {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 3.25rem 1.5rem 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #ffffff;
}

.palvelinx-fivem-title {
	margin-bottom: 0.75rem;
	font-weight: 700;
	font-size: clamp(1.55rem, 2.8vw, 2.35rem);
	line-height: 1.2;
	color: #ffffff;
}

.palvelinx-fivem-text {
	max-width: 44rem;
	font-size: clamp(1rem, 1.5vw, 1.1rem);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.92);
}

.palvelinx-fivem-badge {
	margin-top: 1rem;
	margin-bottom: 1.1rem;
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.9rem;
    text-transform: uppercase;
    color: #fff;
	background: linear-gradient(135deg, rgba(149, 21, 149, 0.3) 0%, rgba(149, 21, 149, 0.1) 100%);
	border: 1px solid rgba(229, 31, 229, 0.3);
}

.palvelinx-fivem-buttons {
	margin-top: 1.4rem;
}

.palvelinx-fivem-buttons .btn {
	font-size: 14px;
	padding: 14px 24px;
	border-radius: 8px;
	text-transform: uppercase;
	white-space: nowrap;
	min-width: 104px;
	font-weight: 600;
	letter-spacing: 0.5px;
	position: relative;
	overflow: hidden;
	box-shadow: none;
	text-shadow: none;
	height: auto;
	line-height: 1.2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 200ms ease;
}

.palvelinx-fivem-buttons .btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	transition: left 200ms;
	pointer-events: none;
}

.palvelinx-fivem-buttons .btn:hover::before,
.palvelinx-fivem-buttons .btn:focus::before {
	left: 100%;
}

.palvelinx-fivem-buttons .btn:active {
	transform: translateY(0);
}

.palvelinx-fivem-buttons .btn-primary {
	color: #fff;
	background: linear-gradient(135deg, rgba(149, 21, 149, 0.3) 0%, rgba(149, 21, 149, 0.1) 100%);
	border: 1px solid rgba(229, 31, 229, 0.3);
}

.palvelinx-fivem-buttons .btn-primary::before {
	background: linear-gradient(90deg, transparent, rgba(229, 31, 229, 0.3), transparent);
}

.palvelinx-fivem-buttons .btn-primary:hover,
.palvelinx-fivem-buttons .btn-primary:focus {
	color: #fff;
	background: linear-gradient(135deg, rgba(229, 31, 229, 0.4) 0%, rgba(229, 31, 229, 0.2) 100%);
	border-color: rgba(229, 31, 229, 0.6);
	box-shadow: 0 0 15px rgba(229, 31, 229, 0.2);
	transform: translateY(-2px);
}

.palvelinx-fivem-buttons .btn-outline-light {
	color: #fff;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 100%);
	border: 1px solid rgba(255, 255, 255, 0.45);
}

.palvelinx-fivem-buttons .btn-outline-light::before {
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.palvelinx-fivem-buttons .btn-outline-light:hover,
.palvelinx-fivem-buttons .btn-outline-light:focus {
	color: #fff;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0.14) 100%);
	border-color: rgba(255, 255, 255, 0.75);
	box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.palvelinx-fivem-command {
	margin-top: 1rem;
	padding: 0.35rem 0.8rem;
	border-radius: 0.55rem;
	font-size: 0.9rem;
	font-family: monospace;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
	color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 767.98px) {
	.palvelinx-fivem-wrapper {
		padding-top: 1.5rem;
		padding-bottom: 1.5rem;
	}

	.palvelinx-fivem-hero {
		min-height: 320px;
	}

	.palvelinx-fivem-content {
		padding-top: 3.5rem;
	}
}
