.error-container {
			text-align: center;
			padding: 3rem 1rem;
			margin: 2rem auto;
			max-width: 600px;
			background: rgba(255, 255, 255, 0.1);
			border-radius: 12px;
			backdrop-filter: blur(10px);
			box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
		}
		
		.error-icon {
			font-size: 4rem;
			color: #fd79a8;
			margin-bottom: 1.5rem;
		}
		
		.error-title {
			font-size: 2.2rem;
			color: white;
			margin-bottom: 1rem;
			font-weight: 600;
		}
		
		.error-message {
			font-size: 1.1rem;
			margin-bottom: 2rem;
			line-height: 1.6;
			opacity: 0.9;
		}
		
		.error-btn {
			display: inline-block;
			background: linear-gradient(135deg, #6c5ce7, #a29bfe);
			color: white;
			padding: 12px 28px;
			border-radius: 30px;
			text-decoration: none;
			font-weight: 600;
			transition: all 0.3s ease;
			box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
		}
		
		.error-btn:hover {
			transform: translateY(-3px);
			box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
			background: linear-gradient(135deg, #a29bfe, #6c5ce7);
		}
		
		.error-links {
			margin-top: 1.5rem;
		}
		
		.error-links a {
			color: #a29bfe;
			text-decoration: none;
			transition: color 0.3s ease;
		}
		
		.error-links a:hover {
			color: #fd79a8;
			text-decoration: underline;
		}