body {
  background-color: #000;
  color: #fff;
}

.footer {
  padding: 5px;
  background-color: #111;
}

.footer a {
  color: #0ff;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer .social-icons {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer .social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  font-size: 3rem;
  border-radius: 50%;
  color: var(--main-color);
  width: 60px;
  height: 60px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  margin: 0 10px;
}

.footer .social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.footer .social-icons a:hover::before {
  left: 100%;
}

.footer .social-icons a:hover {
  color: white;
  border-color: var(--main-color);
  box-shadow: 0 0 30px rgba(0, 255, 238, 0.5);
  transform: translateY(-5px) scale(1.1);
}

.footer .bottom-text {
  font-size: 15px;
  margin-bottom: 20px;
}

.footer .footer_click {
  color: white;
  font-weight: bold;
  font-size: 20px;
  display: inline-block;
  margin: 0 10px;
}

.footer .footer_click:hover {
  color: #00ffee;
}

@media (max-width: 768px) {
  .footer .social-icons a {
      font-size: 3rem; /* Smaller font size on mobile */
  }

  .footer .footer_click {
      font-size: 14px; /* Smaller font size on mobile */
      margin: 5px 10px; /* Adjusted margin for mobile */
  }

  .footer .bottom-text {
      font-size: 13px; /* Smaller font size on mobile */
      margin-bottom: 10px; /* Adjusted margin-bottom for mobile */
  }
}
