:root {
	--primary: #0d6efd;
	--secondary: #7c3aed;
	--text-dark: #0f172a;
	--text-body: #334155;
	--text-muted: #64748b;
}

body { font-family: "Helvetica", Arial, sans-serif; color: var(--text-body); background: #fff; overflow-x: hidden; }

.mesh-gradient-bg {
	background: 
		radial-gradient(at 0% 0%, rgba(79, 70, 229, 0.1) 0px, transparent 40%),
		radial-gradient(at 100% 0%, rgba(244, 63, 94, 0.07) 0px, transparent 40%),
		radial-gradient(at 50% 50%, rgba(124, 58, 237, 0.05) 0px, transparent 50%);
	background-attachment: fixed;
}

.navbar { background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.05); }
.navbar-brand { font-weight: 800; color: var(--primary) !important; }

.download-card {
	background: #ffffff;
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: 28px;
	padding: 3.5rem 2rem;
	transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	text-align: center;
	height: 100%;
}
.download-card:hover { transform: translateY(-12px); box-shadow: 0 30px 60px rgba(79, 70, 229, 0.12); border-color: var(--primary); }
.os-icon { font-size: 3.5rem; margin-bottom: 1.5rem; color: var(--primary); }

.footer-custom { padding: 60px 0; background: #fff; border-top: 1px solid #f1f5f9; }
.footer-logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); display: block; margin-bottom: 4px; }
.footer-copyright { font-size: 0.875rem; color: var(--text-muted); }
.footer-link { text-decoration: none; color: var(--text-muted); font-size: 0.875rem; margin-left: 1.5rem; transition: 0.3s; }
.footer-link:hover { color: var(--primary); }

.py-100 { padding-top: 100px; padding-bottom: 100px; }

@media (max-width: 768px) {
	.footer-link { margin: 0 0.75rem; }
	.footer-links-container { margin-top: 1.5rem; text-align: center !important; }
}