.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 50px; /* Increased height */
  width: 100%;
  background: #000; /* Solid black */
  padding: 0 20px; /* Increased padding */
  font-family: 'Orbitron', sans-serif;
  font-weight: 400;
  font-size: 1.2rem; /* Increased font size */
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none; /* Ensure no borders */
  outline: none; /* Remove any focus outlines */
}

.footer-content {
  display: flex;
  width: 100%;
  align-items: center;
  border: none; /* Ensure no borders for this container */
}

.left-content {
  position: absolute;
  left: 20px; /* Adjusted for larger padding */
  border: none; /* Remove any borders */
}

.left-content p {
  margin: 0;
  font-size: 1.2rem; /* Increased font size */
  color: #d3d4d8;
  text-align: left;
  border: none; /* Remove any borders */
}

.footer-content p:hover {
  color: #fc0;
  transition: color 0.3s ease-in-out;
  border: none; /* Ensure no hover border */
}

.fixed-footer #visitorCount {
  font-size: 1.2rem; /* Increased font size */
  color: #ffcc00;
  text-transform: uppercase;
  border: none; /* Remove any borders */
}
