@import url('https://fonts.googleapis.com/css?family=Archivo+Black');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Archivo Black', sans-serif;
	background-color: #2c2c2c;
	background: radial-gradient(ellipse at center, #29382c 0%, #0c100d 100%);
	color: #fff;
}

html,
body {
	height: 100%;
}

.main-wrapper {
	position: relative;
	padding: 0;
	min-height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.container {
	position: relative;
	text-align: center;
	padding: 2rem;
	z-index: 20;
}

.logo {
	font-size: clamp(2rem, 8vw, 4rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 1rem;
	background: linear-gradient(90deg, #00d4ff 0%, #00ff88 50%, #00d4ff 100%);
	background-size: 200% 100%;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	animation: throb 3s ease-in-out infinite;
}

@keyframes throb {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.tagline {
	font-size: clamp(1rem, 3vw, 1.25rem);
	color: #a0a0a0;
	margin-bottom: 2rem;
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-weight: 400;
}

.cursor {
	display: inline-block;
	width: 0.6em;
	height: 1.1em;
	background: #4a90a4;
	vertical-align: text-bottom;
	margin-left: 2px;
	animation: blink 1s step-end infinite;
}

.status {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 9999px;
	font-size: 0.875rem;
	color: #888;
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	font-weight: 400;
}

.status::before {
	content: '';
	width: 8px;
	height: 8px;
	background: #00ff88;
	border-radius: 50%;
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0; }
}

.noise-wrapper {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	overflow: hidden;
	z-index: 10;
}

.noise-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
}

.noise {
	position: absolute;
	top: -500px;
	right: -500px;
	bottom: -500px;
	left: -500px;
	background: transparent url(noise.png) 0 0;
	background-size: 320px 320px;
	opacity: .35;
	animation: noise 1s steps(8,end) infinite both;
}

@keyframes noise {
	0% { transform: translateX(0px,0px); }
	10% { transform: translate(-100px, 100px); }
	20% { transform: translate(150px, -100px); }
	30% { transform: translate(-100px,100px); }
	40% { transform: translate(100px, -150px); }
	50% { transform: translate(-100px, 200px); }
	60% { transform: translate(-200px, -100px); }
	70% { transform: translateY(50px, 100px); }
	80% { transform: translate(100px, -150px); }
	90% { transform: translate(0px, 200px); }
	100% { transform: translate(-100px, 100px); }
}
