.content-locked {
	filter: blur(6px);
	pointer-events: none;
	user-select: none;
  }
  
  /* A single page overlay rather than multiple section overlays */
  .page-lock-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1000;
	display: flex; /* Changed from 'none' to 'flex' to make it visible by default */
	justify-content: center;
	align-items: center;
	pointer-events: auto;
  }
  
  .login-prompt {
	background-color: white;
	padding: 2.5rem;
	border-radius: 12px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	text-align: center;
	max-width: 90%;
	width: 420px;
	/* NO blur on the login prompt */
	filter: none;
	/* Make sure it's clickable */
	pointer-events: auto;
	user-select: auto;
  }
  
  .login-prompt h3 {
	font-size: 1.5rem;
	font-weight: 600;
	color: #1a202c;
	margin-bottom: 1.2rem;
  }
  
  .login-prompt p {
	color: #4a5568;
	margin-bottom: 1.8rem;
	font-size: 1.05rem;
  }
  
  .login-btn {
	display: inline-block;
	background: linear-gradient(to right, #800020, #daa520);
	color: white;
	font-weight: 600;
	padding: 0.9rem 2.5rem;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.3s ease;
  }
  
  .login-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
  }
  
  .signup-text {
	margin-top: 1.2rem;
	font-size: 0.95rem;
  }
  
  .signup-text a {
	color: #800020;
	font-weight: 600;
	text-decoration: none;
  }
  
  .signup-text a:hover {
	text-decoration: underline;
  }







  