body {
  font-family: "Inter", sans-serif;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}
.col {
  flex: none;
}
.socialbtn:hover {
  transform: translate(0px, -3px);
  animation-name: headsup;
  animation-duration: 0.3s;
}
.footer-github:hover { color: #ffffff; }
.footer-telegram:hover { color: #0088cc; }
.footer-email:hover { color: #ea4335; }
.footer-kick:hover { color: #53fc18; }
.footer-tiktok:hover { color: #25f4ee; }
.footer-youtube:hover { color: #ff0000; }
.footer-discord:hover { color: #5865f2; }
.footer-instagram:hover { color: #e4405f; }
.github { color: #ffffff; }
.twitter { color: #1DA1F2; }
.discord { color: #5865F2; }
.linkedin { color: #0077b5; }
.twitch { color: #9146FF; }
.instagram { color: #E4405F; }
.github:hover { color: #ebebeb; }
.twitter:hover { color: #1a91da; }
.discord:hover { color: #4752c4; }
.linkedin:hover { color: #006396; }
.twitch:hover { color: #7b3bd6; }
.instagram:hover { color: #d63b56; }
img {
  pointer-events: none;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #0a0f16;
}
::-webkit-scrollbar-thumb {
  background: #0e141d;
}
::-webkit-scrollbar-thumb:hover {
  background: #0e141d;
}
.wave {
  animation-name: wave-animation;
  animation-duration: 2.5s;
  animation-iteration-count: infinite;
  transform-origin: 70% 70%;
  display: inline-block;
}
@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.rainbow-text:hover {
  background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass {
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border-radius: 10px;
}

.preloader {
  background: #0a0f16;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.disappear {
  animation: vanish 0.4s forwards;
}

@keyframes vanish {
  100% {
    opacity: 0%;
    visibility: hidden;
  }
}

.preloader-logo {
  width: 96px;
  height: 96px;
  animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

/* Modal styles */
.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

#bioModal {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-content {
  max-height: 90vh;
  overflow-y: auto;
  margin: 1rem;
  width: calc(100% - 2rem);
  max-width: 600px;
}

@media (max-width: 640px) {
  .modal-content {
    margin: 0.5rem;
    width: calc(100% - 1rem);
  }
}
