

.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #111;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;

}

/* Touch cihazlar için glow animasyonunu kalıcı yap */
@media (hover: none) and (pointer: coarse) {
  .glow-on-hover:before {
    opacity: 1;
  }
}


@media (hover: none) and (pointer: coarse) {
  .glow-on-hover {
    color: #00ffd5;
  }
}


.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
    
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}




.neon-text {
    font-size: 4rem;
    color: #fff;
    text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    animation: glow 1.5s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px #ff005e, 0 0 10px #ff005e, 0 0 20px #ff005e, 0 0 40px #ff005e, 0 0 80px #ff005e;
    }
    100% {
        text-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff, 0 0 40px #00d4ff, 0 0 80px #00d4ff, 0 0 160px #00d4ff;
    }
}


/* Bu kodları mevcut CSS dosyanın en altına ekle */
@media (max-width: 768px) {
  
  header img {
    max-width: 140px; /* Banner logo küçültüldü */
  }

  .link-box {
    padding: 15px;
  }

  .link-box img {
    max-width: 90px; /* Kutu içindeki logolar küçültüldü */
    margin-bottom: 8px;
  }

  .link-box a {
    font-size: 0.9rem; /* Link yazı boyutu */
  }

  .link-box p {
    font-size: 0.9rem;
  }

  .glow-on-hover {
    width: 90%;
    height: 40px;
    font-size: 0.9rem;
  }

  .neon-text {
    font-size: 2rem; /* Neon yazılar küçültüldü */
  }

  footer img {
    max-width: 90px;
  }

  footer span {
    font-size: 0.85rem;
  }

  body {
    background-size: cover;
    background-position: center;
  }
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.footer-item {
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.footer-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-icon img {
  max-width: 100px;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.footer-icon span {
  margin-top: 8px;
  font-weight: bold;
  font-size: 0.9rem;
  color: #fff;
}

/* Hover büyütme efekti */
.footer-icon img:hover {
  transform: scale(1.05);
}

/* Mobil uyumlu versiyon */
@media (max-width: 768px) {
  .footer-links {
    gap: 20px;
  }

  .footer-icon img {
    max-width: 70px;
  }

  .footer-icon span {
    font-size: 0.8rem;
  }
}
