.cyber-footer {
  width: 100vw;
  background: linear-gradient(90deg,#171b23 60%,#12141b 100%);
  padding: 44px 0 24px 0;
  margin-top: 80px;
  box-shadow: 0 -7px 42px #20ffe415;
  border-radius: 23px 23px 0 0;
  position: relative;
  z-index: 10;
}

.cyber-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cyber-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-bottom: 2px;
}

.cyber-footer-logo {
  font-family: 'Inter', 'Arial Black', sans-serif;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: .12em;
  text-shadow: 0 0 10px #20ffe47a, 0 0 30px #e6394670;
  font-weight: 900;
}

.cyber-footer-slogan {
  font-size: 1.01rem;
  color: #e63946;
  font-weight: 500;
  letter-spacing: .08em;
  margin-top: -4px;
  text-shadow: 0 0 10px #e6394630;
}

.cyber-footer-links {
  display: flex;
  gap: 38px;
  margin: 0 0 8px 0;
  flex-wrap: wrap;
}

.cyber-footer-links a {
  color: #e7e8ed;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.06rem;
  letter-spacing: .04em;
  transition: color .17s, text-shadow .19s;
  text-shadow: 0 0 9px #181e3a33;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.cyber-footer-links a:hover {
  color: #20ffe4;
  text-shadow: 0 0 16px #20ffe4a7;
  border-bottom: 2px solid #20ffe4;
}

.cyber-footer-copy {
  color: #858b97;
  font-size: 0.97rem;
  display: flex;
  gap: 11px;
  align-items: center;
  text-align: center;
  opacity: 0.77;
}

@media (max-width: 700px) {
  .cyber-footer-inner { max-width: 98vw; gap:16px;}
  .cyber-footer-links { gap: 19px; }
  .cyber-footer-copy { font-size: 0.9rem; }
  .cyber-footer-logo { font-size: 1.07rem; }
}
/* TÜM SAYFA için örnek: */
body {
  scrollbar-width: thin;              /* Firefox için: ince scrollbar */
  scrollbar-color: #20ffe4 #23242e;   /* Renk (kaydırma kolu, arkaplan) */
}

/* Webkit tabanlı tarayıcılar (Chrome, Edge, Opera, Safari) */
body::-webkit-scrollbar {
  width: 9px;
  background: #23242e;
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg,#20ffe4 20%,#e63946 90%);
  border-radius: 10px;
  box-shadow: 0 0 6px #20ffe488;
  border: 2px solid #20202c;
  transition: background .3s;
}
body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(120deg,#e63946 10%,#20ffe4 85%);
  box-shadow: 0 0 12px #e63946cc;
}
body::-webkit-scrollbar-corner {
  background: #23242e;
}
