body {
	margin: 0;
	padding: 0;
	font-family: 'Courier New', Courier, monospace;
	background-color: #000;
	color: #00ffff;
	text-align: center;
}
h1, h2 {
	color: #0582D1;
}
a {
	color: #00ffff;
}
.overlay {
	background: rgba(0, 0, 0, 0.75);
	min-height: 100vh;
	padding: 40px 20px;
}
.logo {
	max-width: 90%;
	width: 420px;
	margin: 0 auto 30px;
}
.logo img {
	width: 100%;
	height: auto;
}
h1 {
	font-size: 3.5rem;
	margin: 20px 0;
	text-shadow: 0 0 20px #0582D1;
	letter-spacing: 4px;
}
.description {
	max-width: 800px;
	margin: 0 auto 50px;
	font-size: 1.3rem;
	line-height: 1.6;
	text-shadow: 0 0 10px #00ffff;
	opacity: 0.95;
}
.subscribe {
	margin: 60px 0;
}
.subscribe h2 {
	font-size: 2rem;
	margin-bottom: 30px;
	text-shadow: 0 0 15px #0582D1;
}
.buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: 1000px;
	margin: 0 auto;
}
.btn {
	background: rgba(0, 255, 255, 0.1);
	border: 2px solid #00ffff;
	color: #00ffff;
	padding: 16px 32px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: all 0.3s ease;
	min-width: 220px;
	backdrop-filter: blur(5px);
}
.btn:hover {
	background: rgba(0, 255, 255, 0.25);
	box-shadow: 0 0 30px #00ffff;
	transform: translateY(-3px);
}
.btn i {
	font-size: 1.5rem;
}
.socials {
	margin: 80px 0 40px;
}
.socials h2 {
	font-size: 1.8rem;
	margin-bottom: 30px;
}
.social-links {
	display: flex;
	justify-content: center;
	gap: 40px;
	flex-wrap: wrap;
}
.social-links a {
	color: #00ffff;
	font-size: 3rem;
	transition: all 0.3s ease;
}
.social-links a:hover {
	transform: scale(1.3) translateY(-5px);
	filter: drop-shadow(0 0 20px #00ffff);
}
footer {
	margin-top: 100px;
	padding: 20px;
	opacity: 0.7;
	font-size: 0.9rem;
}
@media (max-width: 768px) {
	h1 { font-size: 2.8rem; }
	.description { font-size: 1.1rem; }
	.btn { font-size: 1rem; min-width: 180px; padding: 14px 24px; }
}