@import url(./base.css);

/* Main */
main {
	min-height: calc(100vh - 200px);
	padding: 4rem 2rem;
	background: #1a1a1a;
}

.legal-content {
	max-width: 900px;
	margin: 0 auto;
	background: rgba(0, 0, 0, 0.5);
	padding: 3rem;
	border-radius: 12px;
	border: 2px solid rgba(0, 255, 65, 0.2);
}

.legal-content article {
	margin-bottom: 2.5rem;
}

.legal-content h2 {
	color: #00ff41;
	font-size: 1.8rem;
	margin-bottom: 1rem;
	text-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.legal-content p {
	color: #e0e0e0;
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.legal-content ul {
	color: #e0e0e0;
	font-size: 1.1rem;
	line-height: 1.8;
	margin-left: 2rem;
}

.legal-content a {
	color: #00ff41;
	text-decoration: none;
	transition: all 0.3s ease;
	border-bottom: 1px solid transparent;
}

.legal-content a:hover {
	border-bottom-color: #00ff41;
	text-shadow: 0 0 8px rgba(0, 255, 65, 0.5);
}

.legal-content strong {
	color: #fff;
	font-weight: 600;
}

.last-update {
	text-align: center;
	font-style: italic;
	color: #888;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(0, 255, 65, 0.2);
}

/* Responsive design */
@media (max-width: 1200px) {
	header .page-title {
		font-size: 2.5rem;
	}
	
	.legal-content {
		padding: 2rem;
	}
}

@media (max-width: 768px) {
	header {
		padding: 1.5rem 2rem;
		flex-direction: column;
		gap: 1rem;
	}
	
	header .page-title {
		position: static;
		transform: none;
		font-size: 2rem;
	}
	
	.legal-content {
		padding: 1.5rem;
	}
	
	.legal-content h2 {
		font-size: 1.5rem;
	}
	
	.legal-content p,
	.legal-content ul {
		font-size: 1rem;
	}
}
