.invite-btn {
	--discord-color: #5865f2;
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	left: 45%;
	background: radial-gradient(circle at 20% 20%, rgba(88, 101, 242, 0.25) 0%, rgba(15, 23, 42, 0) 70%);
	background-color: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(148, 163, 184, 0.2);
	border-radius: 0.8rem;
	padding: 0.9rem 1.2rem;
	color: white;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	box-shadow: 0 18px 40px -8px rgba(88, 101, 242, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8) inset;
	transition: box-shadow 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.invite-btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 20%;
	width: 60%;
	height: 40%;
	background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 70%);
	opacity: 0.4;
	border-radius: 1rem;
	pointer-events: none;
	filter: blur(12px);
}

.invite-btn::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: radial-gradient(circle at 0% 0%, rgba(88, 101, 242, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 0;
	transition: opacity 0.18s ease;
}

.invite-btn:hover::after {
	opacity: 1;
}

.invite-btn:hover {
	transform: translateY(-2px) scale(1.02);
	border-color: rgba(255, 255, 255, 0.4);
	box-shadow: 0 22px 50px -6px rgba(88, 101, 242, 0.8), 0 4px 8px rgba(0, 0, 0, 0.9) inset;
}

.discord-icon {
	width: 1.4rem;
	height: 1.4rem;
	flex-shrink: 0;
	background: radial-gradient(circle at 30% 30%, #fff 0%, #c7caff 60%, #8a8fff 100%);
	border-radius: 0.4rem;
	position: relative;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
}

.discord-icon::before,
.discord-icon::after {
	content: "";
	position: absolute;
	background: #2b2f75;
	border-radius: 999px;
}

.discord-icon::before {
	width: 70%;
	height: 55%;
	left: 15%;
	top: 22%;
	box-shadow: 0 0 0 2px #2b2f75, 0 4px 6px rgba(0, 0, 0, 0.4);
	border-radius: 40% 40% 55% 55%;
}

.discord-icon::after {
	width: 4px;
	height: 4px;
	left: 32%;
	top: 40%;
	box-shadow: 8px 0 0 0 #fff, 0 0 4px 0 rgba(255, 255, 255, 0.4), 8px 0 4px 0 rgba(255, 255, 255, 0.4);
	background: #fff;
}

.btn-texts {
	display: flex;
	flex-direction: column;
	text-align: left;
}

.btn-top {
	font-size: 0.7rem;
	line-height: 1;
	color: rgb(203, 213, 225);
	font-weight: 400;
}

.btn-bottom {
	display: inline-flex;
	align-items: baseline;
	gap: .4rem;
	font-weight: 600;
	color: #fff;
}

.arrow {
	font-size: 0.9rem;
	line-height: 1;
	color: var(--discord-color);
	text-shadow: 0 0 8px rgba(88, 101, 242, 0.8);
	font-weight: 500;
}