* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #e5e7eb;
	overflow-x: hidden;
	background: #0a0a0a;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #18181b;
	border-bottom-color: #222;
	box-shadow: 0 2px 20px rgba(0,0,0,0.3);
	z-index: 1000;
	padding: 1rem 2rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: #818cf8;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nav-buttons {
	display: flex;
	gap: 1rem;
	align-items: center;
}
.btn {
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
	cursor: pointer;
	border: none;
	font-family: inherit;
	font-size: 0.95rem;
}
.btn-outline {
	color: #818cf8;
	border-color: #818cf8;
}
.btn-outline:hover {
	background: #818cf8;
	color: #fff;
	box-shadow: 0 4px 12px rgba(129, 140, 248, 0.3);
}
.btn-primary {
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
	color: white;
	border: none;
}
.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}
/* Hero Section */
.hero {
	background: linear-gradient(135deg, #18181b 0%, #22223b 100%);
	color: #fff;
	padding: 120px 2rem 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:rgba(255,255,255,0)"/></radialGradient></defs><circle cx="200" cy="300" r="100" fill="url(%23a)"/><circle cx="800" cy="200" r="150" fill="url(%23a)"/><circle cx="600" cy="700" r="120" fill="url(%23a)"/></svg>') no-repeat center center;
	background-size: cover;
	opacity: 0.3;
}
.hero-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.hero h1 {
	font-size: 3.5rem;
	font-weight: 800;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}
.hero p {
	font-size: 1.25rem;
	margin-bottom: 2.5rem;
	opacity: 0.9;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.hero-buttons {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}
.hero .btn {
	padding: 1rem 2rem;
	font-size: 1.1rem;
}
.btn-white {
	background: white;
	color: #4f46e5;
	border: 2px solid white;
}
.btn-white:hover {
	background: transparent;
	color: white;
	border-color: white;
}
/* Features Section */
.features {
	padding: 80px 2rem;
	background: #111;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
}
.section-header {
	text-align: center;
	margin-bottom: 4rem;
}
.section-header h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1rem;
}
.section-header p {
	font-size: 1.1rem;
	color: #a1a1aa;
	max-width: 600px;
	margin: 0 auto;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}
.feature-card {
	background: #18181b;
	padding: 2rem;
	border-radius: 12px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
	border: 1px solid #222;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.feature-card:hover {
	border-color: #818cf8;
	box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.feature-icon {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	font-size: 1.5rem;
	color: white;
}
.feature-card h3 {
	font-size: 1.25rem;
	font-weight: 600;
	color: #fff;
	margin-bottom: 1rem;
}
.feature-card p {
	color: #a1a1aa;
	line-height: 1.6;
}
/* Security Section */
.security {
	padding: 80px 2rem;
	background: #18181b;
}
.security-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.security-text h2 {
	font-size: 2.5rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1.5rem;
}
.security-text p {
	font-size: 1.1rem;
	color: #a1a1aa;
	margin-bottom: 2rem;
	line-height: 1.7;
}
.security-features {
	list-style: none;
}
.security-features li {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	color: #e5e7eb;
}
.security-features i {
	color: #10b981;
	font-size: 1.25rem;
}
.security-visual {
	background: linear-gradient(135deg, #222, #18181b);
	border-radius: 20px;
	padding: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 400px;
	position: relative;
	overflow: hidden;
}
.shield-icon {
	font-size: 8rem;
	color: #818cf8;
	opacity: 0.8;
}
/* Auth Modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(10,10,10,0.98);
	backdrop-filter: blur(5px);
	z-index: 2000;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}
.modal.active {
	display: flex;
}
.modal-content {
	background: #18181b;
	border: 1px solid #222;
	padding: 2rem;
	max-width: 400px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.modal-close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: none;
	border: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: #a1a1aa;
	padding: 0.25rem;
}
.modal-close:hover {
	color: #ef4444;
}
.auth-form h2 {
	font-size: 1.75rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 1.5rem;
	text-align: center;
}
.form-group {
	margin-bottom: 1.5rem;
}
.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	color: #e5e7eb;
	font-weight: 500;
}
.form-group input {
	width: 100%;
	padding: 0.75rem;
	border: 2px solid #222;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
	background: #111;
	color: #fff;
}
.form-group input::placeholder {
	color: #6b7280;
}
.form-group input:focus {
	border-color: #818cf8;
	box-shadow: 0 0 0 3px rgba(129,140,248,0.2);
}
.auth-form .btn {
	width: 100%;
	margin-bottom: 1rem;
}
.auth-switch {
	text-align: center;
	color: #a1a1aa;
}
.auth-switch a {
	color: #818cf8;
	text-decoration: none;
	font-weight: 500;
}

/* Custom Checkbox Styling for Remember Me */
.remember-me-container {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 1.5rem;
	position: relative;
}

.remember-me-container input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	width: 0;
	height: 0;
}

.custom-checkbox {
	position: relative;
	width: 20px;
	height: 20px;
	background: #111;
	border: 2px solid #333;
	border-radius: 4px;
	cursor: pointer;
	transition: all 0.3s ease;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.custom-checkbox::before {
	content: '';
	position: absolute;
	width: 10px;
	height: 6px;
	border-left: 2px solid transparent;
	border-bottom: 2px solid transparent;
	transform: rotate(-45deg) scale(0);
	transition: all 0.2s ease;
	top: 4px;
	left: 4px;
}

.remember-me-container input[type="checkbox"]:checked + .custom-checkbox {
	background: linear-gradient(135deg, #4f46e5, #7c3aed);
	border-color: #7c3aed;
	box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2);
}

.remember-me-container input[type="checkbox"]:checked + .custom-checkbox::before {
	border-left-color: white;
	border-bottom-color: white;
	transform: rotate(-45deg) scale(1);
}

.remember-me-container:hover .custom-checkbox {
	border-color: #818cf8;
	background: #1a1a1a;
}

.remember-me-container input[type="checkbox"]:checked:hover + .custom-checkbox {
	background: linear-gradient(135deg, #5b52e8, #8b42f0);
	border-color: #8b42f0;
}

.remember-me-label {
	color: #e5e7eb;
	font-weight: 400;
	cursor: pointer;
	user-select: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.remember-me-container:hover .remember-me-label {
	color: #fff;
}

.remember-me-container input[type="checkbox"]:focus + .custom-checkbox {
	box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.3);
	outline: none;
}

/* Animation for checkbox */
@keyframes checkmark {
	0% {
		transform: rotate(-45deg) scale(0);
		opacity: 0;
	}
	50% {
		transform: rotate(-45deg) scale(0.8);
		opacity: 1;
	}
	100% {
		transform: rotate(-45deg) scale(1);
		opacity: 1;
	}
}

.remember-me-container input[type="checkbox"]:checked + .custom-checkbox::before {
	animation: checkmark 0.3s ease;
}

/* Responsive design for checkbox */
@media (max-width: 768px) {
	.remember-me-container {
		gap: 10px;
		margin-bottom: 1.25rem;
	}
	
	.custom-checkbox {
		width: 18px;
		height: 18px;
		min-width: 18px;
	}
	
	.custom-checkbox::before {
		width: 8px;
		height: 5px;
		top: 3px;
		left: 3px;
	}
	
	.remember-me-label {
		font-size: 0.9rem;
		line-height: 1.4;
	}
}

@media (max-width: 480px) {
	.remember-me-container {
		gap: 8px;
		flex-wrap: wrap;
	}
	
	.remember-me-label {
		font-size: 0.85rem;
	}
}
.auth-switch a:hover {
	text-decoration: underline;
}
/* Footer */
.footer {
	background: #111;
	color: #e5e7eb;
	padding: 3rem 2rem 1rem;
}
.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}
.footer-section h3 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 1rem;
	color: #fff;
}
.footer-section p,
.footer-section ul {
	color: #a1a1aa;
	line-height: 1.6;
}
.footer-section ul {
	list-style: none;
}
.footer-section ul li {
	margin-bottom: 0.5rem;
}
.footer-section ul li a {
	color: #a1a1aa;
	text-decoration: none;
	transition: color 0.3s ease;
}
.footer-section ul li a:hover {
	color: #fff;
}
.footer-bottom {
	border-top: 1px solid #222;
	margin-top: 2rem;
	padding-top: 2rem;
	text-align: center;
	color: #a1a1aa;
}
/* Responsive Design */
@media (max-width: 768px) {
	.navbar {
		padding: 1rem;
	}
	.hero h1 {
		font-size: 2.5rem;
	}
	.hero p {
		font-size: 1rem;
	}
	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}
	.security-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.features-grid {
		grid-template-columns: 1fr;
	}
	.nav-buttons {
		gap: 0.5rem;
	}
	.btn {
		padding: 0.6rem 1.2rem;
		font-size: 0.9rem;
	}
}
/* Dark Mode Styles */
.dark-mode {
	transition: background-color 0.3s ease, color 0.3s ease;
}
.dark-mode .navbar {
	background: rgba(15, 23, 42, 0.95);
	border-bottom-color: rgba(255, 255, 255, 0.1);
}
.dark-mode .logo {
	color: #818cf8;
}
.dark-mode .btn-outline {
	color: #818cf8;
	border-color: #818cf8;
}
.dark-mode .btn-outline:hover {
	background: #818cf8;
	color: #fff;
	box-shadow: 0 4px 12px rgba(129, 140, 248, 0.3);
}
.dark-mode .hero {
	background: linear-gradient(135deg, #18181b 0%, #22223b 100%);
}
.dark-mode .features {
	background: #111;
}
.dark-mode .section-header h2 {
	color: #fff;
}
.dark-mode .section-header p {
	color: #a1a1aa;
}
.dark-mode .feature-card {
	background: #18181b;
	border-color: #222;
	color: #e5e7eb;
}
.dark-mode .feature-card:hover {
	border-color: #818cf8;
	box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.dark-mode .feature-card h3 {
	color: #fff;
}
.dark-mode .feature-card p {
	color: #a1a1aa;
}
.dark-mode .security {
	background: #18181b;
}
.dark-mode .security-text h2 {
	color: #fff;
}
.dark-mode .security-text p {
	color: #a1a1aa;
}
.dark-mode .security-features li {
	color: #e5e7eb;
}
.dark-mode .security-visual {
	background: linear-gradient(135deg, #222, #18181b);
}
.dark-mode .shield-icon {
	color: #818cf8;
}
.dark-mode .modal {
	background: rgba(10,10,10,0.98);
}
.dark-mode .modal-content {
	background: #18181b;
	border: 1px solid #222;
}
.dark-mode .auth-form h2 {
	color: #fff;
}
.dark-mode .form-group label {
	color: #e5e7eb;
}
.dark-mode .form-group input {
	background: #111;
	border-color: #222;
	color: #fff;
}
.dark-mode .form-group input::placeholder {
	color: #6b7280;
}
.dark-mode .form-group input:focus {
	border-color: #818cf8;
	box-shadow: 0 0 0 3px rgba(129,140,248,0.2);
}
.dark-mode .auth-switch {
	color: #a1a1aa;
}
.dark-mode .auth-switch a {
	color: #818cf8;
}
.dark-mode .modal-close {
	color: #a1a1aa;
}
.dark-mode .modal-close:hover {
	color: #ef4444;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	line-height: 1.6;
	color: #e5e7eb;
	overflow-x: hidden;
	background: #0a0a0a;
}

/* Navigation */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: #18181b;
	border-bottom-color: #222;
	box-shadow: 0 2px 20px rgba(0,0,0,0.3);
	z-index: 1000;
	padding: 1rem 2rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.nav-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	font-size: 1.5rem;
	font-weight: 800;
	color: #818cf8;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.nav-buttons {
	display: flex;
	gap: 1rem;
	align-items: center;
}

