* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: #0a0e13;
	color: #fed9b1;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 40px 20px;
}

/* Background Image with Overlay */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0.3;
	z-index: -2;
	/* Background image set via JavaScript */
}

body::after {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(10, 14, 19, 0.7), rgba(10, 14, 19, 0.95));
	z-index: -1;
}

/* Main Container */
.splash-container {
	text-align: center;
	padding: 40px;
	max-width: 600px;
	width: 100%;
}

/* Logo */
.logo {
	font-size: 72px;
	font-weight: 900;
	color: #fed9b1;
	letter-spacing: 0.1em;
	margin-bottom: 60px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Warning Text */
.warning-text {
	margin-bottom: 40px;
}

.warning-title {
	font-size: 18px;
	font-weight: 700;
	color: #fed9b1;
	margin-bottom: 20px;
	letter-spacing: 0.05em;
}

.warning-description {
	font-size: 16px;
	font-weight: 500;
	color: #fed9b1;
	line-height: 1.6;
	opacity: 0.9;
}

/* Divider Line */
.divider {
	width: 100%;
	height: 1px;
	background: #fed9b1;
	opacity: 0.3;
	margin: 40px 0;
}

/* Button Container */
.button-container {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 40px;
}

.button-row {
	display: flex;
	gap: 20px;
	justify-content: center;
}

/* Buttons */
.btn {
	background: transparent;
	border: 2px solid #fed9b1;
	color: #fed9b1;
	padding: 16px 48px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 8px;
	min-width: 180px;
	text-decoration: none;
	display: inline-block;
}

.btn:hover {
	background: #fed9b1;
	color: #0a0e13;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(254, 217, 177, 0.3);
}

.btn-exit {
	border-color: #ff6b6b;
	color: #ff6b6b;
}

.btn-exit:hover {
	background: #ff6b6b;
	color: white;
}

.btn-enter {
	border-color: #fed9b1;
	color: #fed9b1;
}

.btn-enter:hover {
	background: #fed9b1;
	color: #0a0e13;
}

.btn-login {
	border-color: #fed9b1;
	color: #fed9b1;
}

.btn-login:hover {
	background: #fed9b1;
	color: #0a0e13;
}

/* Bottom Divider */
.divider-bottom {
	width: 100%;
	height: 1px;
	background: #fed9b1;
	opacity: 0.3;
	margin: 40px 0 30px;
}

/* Compliance Link */
.compliance-link {
	display: inline-block;
	padding: 12px 32px;
	border: 1px solid #fed9b1;
	border-radius: 50px;
	color: #fed9b1;
	text-decoration: none;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
	opacity: 0.7;
}

.compliance-link:hover {
	opacity: 1;
	background: rgba(254, 217, 177, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.logo {
		font-size: 48px;
		margin-bottom: 40px;
	}

	.warning-title {
		font-size: 16px;
	}

	.warning-description {
		font-size: 14px;
	}

	.button-row {
		flex-direction: column;
	}

	.btn {
		width: 100%;
		min-width: auto;
	}

	.splash-container {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.logo {
		font-size: 36px;
	}

	.btn {
		padding: 14px 32px;
		font-size: 14px;
	}
}