@import url('https://fonts.googleapis.com/css?family=Jura');

* {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
body {
	margin:0;
	overflow:hidden;
	font-family: 'Jura', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
}
/* Legacy HUD elements - keeping for backward compatibility */
.hidden {
	display: none;
}
#loadingScreen{
	position: fixed;
	height: 100%;
	width: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 3500;
	opacity: 1;
	transition: 0.5s opacity;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	flex-direction: column;
}
#loadingScreen.active {
	display: flex;
}
#loadingScreen.fade-out {
	opacity: 0;
	pointer-events: none;
}
.loading-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}
.loading-logo {
	font-family: 'Orbitron', sans-serif;
	font-size: 72px;
	font-weight: 900;
	color: #4dabf7;
	text-shadow: 0 0 30px rgba(77, 171, 247, 0.8);
	letter-spacing: 12px;
	animation: glow-pulse 2s ease-in-out infinite;
}
@keyframes glow-pulse {
	0%, 100% { text-shadow: 0 0 20px rgba(77, 171, 247, 0.5); }
	50% { text-shadow: 0 0 40px rgba(77, 171, 247, 1); }
}
.spinner {
	margin: 100px auto;
	width: 50px;
	height: 40px;
	text-align: center;
	font-size: 10px;
}
.spinner > div {
	background-color: #ee0808;
	height: 100%;
	width: 6px;
	display: inline-block;
	-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
	animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.spinner .rect2 {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s;
}
.spinner .rect3 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}
.spinner .rect4 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}
.spinner .rect5 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
	0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
	20% { -webkit-transform: scaleY(1.0) }
}
@keyframes sk-stretchdelay {
	0%, 40%, 100% {
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}	20% {
		transform: scaleY(1.0);
		-webkit-transform: scaleY(1.0);
	}
}
#startScreen {
	align-items: center;
	justify-content: center;
	z-index: 3000;
	position: fixed;
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
	font-size: 12px;
	text-align: center;
	top: 0;
	left: 0;
	pointer-events: auto;
}

.logo {
	font-family: 'Orbitron', sans-serif;
	font-size: 96px;
	font-weight: 900;
	color: #4dabf7;
	text-shadow: 0 0 40px rgba(77, 171, 247, 0.8);
	letter-spacing: 20px;
	margin-bottom: 60px;
	animation: logo-pulse 3s ease-in-out infinite;
}

@keyframes logo-pulse {
	0%, 100% { 
		transform: scale(1);
		text-shadow: 0 0 30px rgba(77, 171, 247, 0.6); 
	}
	50% { 
		transform: scale(1.05);
		text-shadow: 0 0 60px rgba(77, 171, 247, 1); 
	}
}

button, .breach-button {
	background: linear-gradient(135deg, rgba(77, 171, 247, 0.3), rgba(77, 171, 247, 0.1));
	border: 2px solid rgba(77, 171, 247, 0.6);
	color: #ffffff;
	cursor: pointer;
	box-shadow: 0 0 20px rgba(77, 171, 247, 0.3);
	display: inline-block;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: auto;
    padding: 20px 60px;
    font-size: 24px;
    line-height: 1.5;
    border-radius: 8px;
	transition: all 0.3s ease;
	font-family: 'Orbitron', sans-serif;
	text-transform: uppercase;
	letter-spacing: 4px;
	pointer-events: auto;
	position: relative;
	z-index: 3100;
}

button:hover, .breach-button:hover {
	background: linear-gradient(135deg, rgba(77, 171, 247, 0.5), rgba(77, 171, 247, 0.2));
	border-color: #4dabf7;
	box-shadow: 0 0 40px rgba(77, 171, 247, 0.6);
	transform: scale(1.05);
	text-decoration: none;
}

button:focus, .breach-button:focus {
	outline:0;
}