	:where([class^="ri-"])::before { content: "\f3c2"; }
	  body {
	  font-family: 'Inter', sans-serif;
	  background-color: #f9f9f9;
	  color: #1A1A1A;
	  }
	  @media (max-width: 640px) {
		#fake-visitor-counter {
		  font-size: 12px;
		  padding: 6px 10px;
		}
	  }


  @keyframes zoomInOut {
	0%   { transform: scale(1.1); }
	50%  { transform: scale(1.25); }
	100% { transform: scale(1.1); }
  }

  .animate-zoomInOut {
	animation: zoomInOut 25s ease-in-out infinite;
	transition: transform 5s ease-in-out;
  }

	  .badge {
	  position: absolute;
	  top: -10px;
	  left: -10px;
	  padding: 4px 8px;
	  border-radius: 12px;
	  font-size: 10px;
	  font-weight: 600;
	  z-index: 10;
	  }
	  .card {
	  transition: transform 0.3s ease, box-shadow 0.3s ease;
	  }
	  .card:hover {
	  transform: translateY(-5px) scale(1.02);
	  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	  }
	  .btn-hover:hover {
	  transform: scale(1.05);
	  filter: brightness(1.15);
	  }
	  input:focus, textarea:focus {
	  outline: none;
	  border-color: #00C853;
	  }
	  .content-section {
	  padding-top: 60px;
	  padding-bottom: 70px;
	  }