.login-container {
	background: rgba(139, 69, 172, 0.25);
	backdrop-filter: blur(20px);
	border: 3px solid rgba(255, 255, 255, 0.2);
	border-radius: 32px;
	padding: 48px 40px;
	width: 100%;
	max-width: 440px;
	box-shadow: 
		0 20px 60px rgba(0, 0, 0, 0.3),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 1;
}

.login-game-icons {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	font-size: 48px;
	animation: float 3s ease-in-out infinite;
}

.login-logo {
	font-size: 36px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 8px;
	color: #ffffff;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
	letter-spacing: -1px;
}

.login-logo-part {
	display: inline-block;
}

.login-logo-part:nth-child(2) {
	opacity: 0.85;
	font-weight: 800;
}

.login-logo-part:nth-child(3) {
	opacity: 0.7;
	font-weight: 700;
}

.login-subtitle {
	background: rgba(255, 255, 255, 0.95);
	color: #7b1fa2;
	text-align: center;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.promo-section {
	text-align: center;
	color: #ffffff;
	margin-bottom: 32px;
	font-size: 15px;
	line-height: 1.6;
}

.promo-section .free-badge {
	display: inline-block;
	background: #ffd700;
	color: #000000;
	padding: 4px 12px;
	border-radius: 6px;
	font-weight: 900;
	font-size: 14px;
	margin: 0 4px;
	box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.promo-section .prize-badge {
	display: inline-block;
	background: #ff9800;
	color: #000000;
	padding: 8px 20px;
	border-radius: 20px;
	font-weight: 900;
	font-size: 13px;
	margin-top: 12px;
	box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.button-primary {
	width: 100%;
	padding: 18px;
	background: #10b981;
	border: none;
	border-radius: 16px;
	color: #ffffff;
	font-size: 18px;
	font-weight: 900;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 24px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.button-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
	background: #059669;
}

.button-primary:active {
	transform: translateY(-1px);
}

.button-secondary {
	width: 100%;
	padding: 18px;
	background: #ffd700;
	border: 3px solid #ffd700;
	border-radius: 16px;
	color: #000000;
	font-size: 18px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 16px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.button-secondary:hover {
	background: #ffffff;
	border-color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(255, 215, 0, 0.5);
}

.divider {
	text-align: center;
	margin: 24px 0 16px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	font-weight: 600;
}

.register-section {
	text-align: center;
	margin-top: 10px;
}

.register-text {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	font-weight: 600;
}

.register-link {
	color: #ffd700;
	text-decoration: none;
	font-weight: 800;
	margin-left: 6px;
	transition: all 0.3s ease;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.register-link:hover {
	color: #ffffff;
	text-decoration: underline;
}

.real-link {
	color: #000000;
	text-decoration: none;
	font-weight: 800;
	margin-left: 6px;
	transition: all 0.3s ease;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.real-link:hover {
	color: #ffffff;
	text-decoration: underline;
}

@media (max-width: 480px) {
	.login-container {
		padding: 36px 28px;
		margin: 20px;
	}

	.login-logo {
		font-size: 32px;
	}

	.login-game-icons {
		font-size: 40px;
	}
}