#welcome-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #08080a;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 1;
	transition: opacity 1.2s ease-out;
	cursor: pointer;
	overflow: hidden;
}

#welcome-screen::before,
#welcome-screen::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.15;
	pointer-events: none;
	animation: float-welcome 20s ease-in-out infinite;
}

#welcome-screen::before {
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(255, 255, 255, 0.4),
		transparent
	);
	top: -100px;
	left: -100px;
}

#welcome-screen::after {
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(200, 200, 200, 0.4),
		transparent
	);
	bottom: -100px;
	right: -100px;
	animation-delay: -10s;
}

@keyframes float-welcome {
	0%,
	100% {
		transform: translate(0, 0) scale(1);
	}
	33% {
		transform: translate(50px, -50px) scale(1.1);
	}
	66% {
		transform: translate(-50px, 50px) scale(0.9);
	}
}

#welcome-screen.fade-out {
	opacity: 0;
	pointer-events: none;
}

.welcome-content {
	text-align: center;
	position: relative;
	z-index: 2;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.welcome-text {
	font-size: 24px;
	color: rgba(255, 255, 255, 0.8);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	margin: 0;
	transition: color 0.3s ease;
	position: relative;
	z-index: 2;
	line-height: 1.6;
}

.welcome-link {
	color: #fff;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
	position: relative;
}

@media (max-width: 768px) {
	.welcome-content {
		padding: 32px 24px;
		margin: 20px;
	}
	.welcome-text {
		font-size: 18px;
	}
}