.register-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;
}

h1 {
	color: #ffffff;
	font-size: 24px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 16px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

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

.register-logo {
	font-size: 28px;
	font-weight: 900;
	text-align: center;
	margin-bottom: 6px;
	text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
	letter-spacing: -1px;
}

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

.register-button {
	width: 100%;
	padding: 14px;
	background: #ffd700;
	border: none;
	border-radius: 12px;
	color: #000000;
	font-size: 16px;
	font-weight: 900;
	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);
}

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

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

.login-section {
	text-align: center;
	margin-top: 16px;
}

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

.login-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);
}

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

@media (max-width: 480px) {
	.register-container {
		padding: 20px 24px;
		margin: 10px;
	}

	.register-logo {
		font-size: 26px;
	}

	.register-game-icons {
		font-size: 28px;
	}

	h1 {
		font-size: 22px;
	}
}