:root {
	--color-primary: #0A387A;
	--color-accent: #E63946;
	--color-bg: #0C1A2F;
	--color-panel: #1A2F4F;
	--color-text: #E9F2F9;
	--color-display: #00FF87;
	--font-main: 'Courier New', monospace;
}

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

body {
	font-family: var(--font-main);
	background-color: var(--color-bg);
	color: var(--color-text);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-image:
		radial-gradient(circle at 10% 20%, rgba(10, 56, 122, 0.2) 0%, transparent 20%),
		radial-gradient(circle at 90% 80%, rgba(230, 57, 70, 0.15) 0%, transparent 20%);
	line-height: 1.6;
	padding: 20px;
	text-align: center;
}

.retro-border {
	border: 2px solid var(--color-accent);
	position: relative;
	padding: 2px;
}

.retro-border::before,
.retro-border::after {
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	border: 2px solid var(--color-accent);
}

.retro-border::before {
	top: -6px;
	left: -6px;
	border-right: none;
	border-bottom: none;
}

.retro-border::after {
	bottom: -6px;
	right: -6px;
	border-left: none;
	border-top: none;
}

.container {
	max-width: 700px;
	width: 100%;
	background-color: rgba(26, 47, 79, 0.8);
	padding: 40px;
	position: relative;
	overflow: hidden;
}

.logo {
	font-size: 3.5rem;
	margin-bottom: 30px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-accent);
	text-shadow: 0 0 10px rgba(230, 57, 70, 0.4);
	position: relative;
}

.logo::after {
	content: "↓";
	position: absolute;
	bottom: -25px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 2rem;
	color: var(--color-display);
	animation: pulse 2s infinite;
}

.status {
	font-size: 1.8rem;
	margin-bottom: 30px;
	color: var(--color-display);
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: bold;
}

.domain-display {
	background-color: rgba(0, 0, 0, 0.7);
	color: var(--color-display);
	font-family: monospace;
	padding: 15px;
	margin: 20px 0;
	border: 1px dashed var(--color-display);
	font-size: 1.2rem;
	letter-spacing: 1px;
}

.description {
	margin: 25px 0;
	font-size: 1.1rem;
	opacity: 0.9;
}

.features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin: 30px 0;
}

.feature {
	flex: 1;
	min-width: 150px;
	padding: 15px;
	background-color: rgba(10, 56, 122, 0.3);
	border: 1px solid rgba(230, 57, 70, 0.3);
}

.feature-title {
	color: var(--color-accent);
	margin-bottom: 8px;
	font-weight: bold;
}

.coming-soon {
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid rgba(230, 57, 70, 0.3);
	font-style: italic;
	opacity: 0.8;
}

.glitch-line {
	position: absolute;
	height: 1px;
	width: 100%;
	background-color: var(--color-display);
	opacity: 0.1;
	animation: glitch 8s infinite;
}

.su-stars {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Ccircle cx='20' cy='30' r='1' fill='white' opacity='0.8'/%3E%3Ccircle cx='80' cy='40' r='1.2' fill='white' opacity='0.6'/%3E%3Ccircle cx='45' cy='70' r='0.8' fill='white' opacity='0.9'/%3E%3C/svg%3E") !important;
}

@keyframes pulse {
	0% {
		opacity: 0.4;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0.4;
	}
}

@keyframes glitch {
	0% {
		top: 10%;
	}

	25% {
		top: 40%;
	}

	50% {
		top: 75%;
	}

	75% {
		top: 30%;
	}

	100% {
		top: 90%;
	}
}

@media (max-width: 600px) {
	.container {
		padding: 25px;
	}

	.logo {
		font-size: 2.5rem;
	}

	.status {
		font-size: 1.4rem;
	}
}