* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background: #0a0a0a;
	color: #ffffff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

body::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(82, 189, 57, 0.08) 0%,
		transparent 60%
	);
	animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.8;
	}
}

.container {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 2rem;
	width: 100%;
	max-width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.title-container {
	display: flex;
	align-items: center;
	justify-content: center;
	animation: fadeInUp 1s ease-out;
}

.newsletter-container {
	margin-top: 3rem;
	animation: fadeInUp 1s ease-out 0.3s both;
	max-width: 500px;
	width: 100%;
}

.newsletter-text {
	font-size: clamp(1rem, 2vw, 1.2rem);
	color: #888;
	margin-bottom: 1.5rem;
	font-weight: 300;
}

.newsletter-form {
	display: flex;
	gap: 0.5rem;
	width: 100%;
}

.email-input {
	flex: 1;
	padding: 1rem 1.5rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(82, 189, 57, 0.2);
	border-radius: 8px;
	color: #ffffff;
	font-size: 1rem;
	outline: none;
	transition: all 0.3s ease;
}

.email-input::placeholder {
	color: #666;
}

.email-input:focus {
	border-color: rgba(82, 189, 57, 0.5);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 0 20px rgba(82, 189, 57, 0.1);
}

.subscribe-btn {
	padding: 1rem 2rem;
	background: rgba(6, 12, 4, 0.445);
	border: 1px solid rgba(82, 189, 57, 0.3);
	border-radius: 8px;
	color: #52bd39;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.subscribe-btn:hover {
	background: rgba(82, 189, 57, 0.25);
	border-color: rgba(82, 189, 57, 0.5);
	box-shadow: 0 0 20px rgba(82, 189, 57, 0.2);
	transform: translateY(-2px);
}

.subscribe-btn:active {
	transform: translateY(0);
}

.message {
	margin-top: 1rem;
	font-size: 0.9rem;
	min-height: 1.5rem;
	transition: all 0.3s ease;
}

.message.success {
	color: #52bd39;
}

.message.error {
	color: #ff6b6b;
}

.title {
	font-size: clamp(3rem, 10vw, 6rem);
	font-weight: 700;
	margin: 0;
	color: #ffffff;
	letter-spacing: 2px;
}

.dots {
	display: inline-block;
	margin-left: 0.2em;
	white-space: nowrap;
}

.dot {
	width: 0.12em;
	height: 0.12em;
	border-radius: 50%;
	background: #52bd39;
	animation: pulse 1.5s ease-in-out infinite;
	opacity: 0.8;
	display: inline-block;
	margin: 0 0.08em;
	vertical-align: middle;
	position: relative;
	top: 0.17em;
}

.dot:nth-child(2) {
	animation-delay: 0.2s;
}

.dot:nth-child(3) {
	animation-delay: 0.4s;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 0.8;
	}
	50% {
		transform: scale(1.2);
		opacity: 0.5;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.footer {
	padding: 2rem 0;
	width: 100%;
	animation: fadeIn 1s ease-out 1s both;
}

.footer p {
	font-size: 0.9rem;
	color: #333;
	font-weight: 300;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Particles Canvas */
#particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 1.5rem;
	}

	.title {
		letter-spacing: 1px;
	}

	.dot {
		width: 0.1em;
		height: 0.1em;
	}

	.newsletter-container {
		margin-top: 2rem;
		padding: 0 1rem;
	}

	.newsletter-form {
		flex-direction: column;
	}

	.subscribe-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 1rem;
	}

	.newsletter-container {
		margin-top: 1.5rem;
	}

	.email-input,
	.subscribe-btn {
		padding: 0.875rem 1.25rem;
		font-size: 0.95rem;
	}
}
