#fw-section-footer {

/* Make the YouTube logo larger */
.footer svg {
  width: 50px !important;
  height: 50px !important;
  filter: drop-shadow(0 0 10px #00aaff) drop-shadow(0 0 20px #00aaff);
  transition: transform 0.3s ease;
}

.footer svg:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px #00aaff) drop-shadow(0 0 30px #00aaff);
}

/* Add glowing text under the YouTube logo */
.footer::after {
  content: "Visit Our Channel";
  display: block;
  margin-top: 10px;
  text-align: center;
  font-family: 'Monument Extended', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #0000ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 0 10px #00aaff, 0 0 20px #00aaff, 0 0 40px #00aaff;
  animation: glowPulse 2.5s infinite alternate;
}

/* Glowing pulse effect */
@keyframes glowPulse {
  from {
    text-shadow: 0 0 5px #00aaff, 0 0 10px #00aaff;
  }
  to {
    text-shadow: 0 0 15px #00aaff, 0 0 40px #00aaff, 0 0 60px #00aaff;
  }
}

}