* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: #0a0a0a;
	color: #fff;
	overflow-x: hidden;
}

.accent-primary {
	background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.accent-button {
	background: linear-gradient(135deg, #2563eb, #3b82f6);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accent-button:hover {
	background: linear-gradient(135deg, #1d4ed8, #2563eb);
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.gradient-text {
	background: linear-gradient(135deg, #2563eb, #3b82f6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.glass-card {
	background: rgba(17, 17, 17, 0.7);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.animated-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background:
		radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
		radial-gradient(circle at 40% 80%, rgba(239, 68, 68, 0.05) 0%, transparent 50%);
	animation: bgMove 20s ease-in-out infinite alternate;
}

.particles {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: -1;
}

.particle {
	position: absolute;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	animation: float 15s infinite linear;
}

@keyframes float {
	0% {
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		transform: translateY(-100px) rotate(360deg);
		opacity: 0;
	}
}

.legal-content {
	max-width: 4xl;
	margin: 0 auto;
	padding: 2rem;
}

.legal-content h1 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	background: linear-gradient(135deg, #2563eb, #3b82f6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.legal-content h2 {
	font-size: 1.875rem;
	font-weight: 600;
	margin-top: 2rem;
	margin-bottom: 1rem;
}

.legal-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}

.legal-content p {
	margin-bottom: 1rem;
	line-height: 1.6;
	color: #d1d5db;
}

.legal-content ul {
	margin-bottom: 1rem;
	padding-left: 1.5rem;
	color: #d1d5db;
}

.legal-content li {
	margin-bottom: 0.5rem;
}

.legal-content a {
	color: #3b82f6;
	text-decoration: underline;
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	background: rgba(17, 17, 17, 0.95);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	z-index: 40;
	padding: 1rem 0;
}

.mobile-menu.active {
	display: block;
}

.mobile-menu a {
	display: block;
	padding: 0.75rem 1.5rem;
	color: #fff;
	transition: all 0.3s ease;
}

.mobile-menu a:hover {
	color: #3b82f6;
	background: rgba(59, 130, 246, 0.1);
}

@media (max-width: 768px) {
	.legal-content {
		padding: 1rem;
	}

	.legal-content h1 {
		font-size: 2rem;
	}

	.legal-content h2 {
		font-size: 1.5rem;
	}

	.legal-content h3 {
		font-size: 1.25rem;
	}

}
