/* Genel stil ayarları */
body {
  background-color: white;
  font-family: "Quicksand", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

h1 {
  margin: 0;
  color: #bdc3c7;
  text-align: center;
  font-size: 40px;
  letter-spacing: -2px;
}

h1:after {
  display: inline-block;
  content: "";
  width: 12px;
  height: 12px;
  background-color: #1DC8FE;
  border-radius: 100%;
  margin-left: 5px;
  vertical-align: middle;
}

#terminal {
  min-height: 200px;
  max-width: 90%;
  margin: 20px auto;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 3px;
  background: #1D1F21;
  box-shadow: 0px 13px 17px -6px rgba(0, 0, 0, 0.38);
}

#terminal:hover {
  transform: translate3d(0, -10px, 0);
  box-shadow: 0px 38px 90px -38px rgba(0, 0, 0, 0.45);
}

.terminal-window {
  text-align: left;
  border-radius: 4px;
  font-size: 13px;
}

.terminal-bar {
  background: #252525;
  height: 35px;
  line-height: 36px;
  padding-left: 4px;
  padding-top: 1px;
}

.terminal-bar .circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid;
}

.terminal-bar .circle.circle-red {
  background: #FF0040;
  border-color: #d73031;
  margin: 0 2px;
}

.terminal-bar .circle.circle-orange {
  background: #FFCF00;
  border-color: #d7911e;
  margin: 0 2px;
}

.terminal-bar .circle.circle-green {
  background: #00E567;
  border-color: #23a124;
  margin: 0 2px;
}

.terminal-body {
  padding: 8px;
  color: #fff;
  line-height: 25px;
  font-family: monospace, Quicksand, sans-serif;
}

.command {
  color: #fff;
  font-family: "VT-100", monospace;
  font-size: 1em;
  text-align: justify;
  hyphens: auto;
}

.cursor {
  display: inline-block;
  height: 1.1em;
  margin-top: -4px;
  width: 0.5em;
  vertical-align: middle;
  animation: 1s blink step-end infinite;
}

@keyframes blink {
  from,
  to {
    background: 0 0;
  }
  50% {
    background: var(--blink-color);
  }
}

footer {
  padding: 20px 0;
  text-align: center;
}

footer .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
}

footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1DC8FE;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  text-decoration: none;
  transition: transform 0.3s;
  font-size: 16px;
  height: 50px;
  min-width: 120px;
  outline: none;
  background-color: transparent;
}

footer a:hover,
footer a:focus {
  transform: scale(1.05);
  background-color: transparent;
}

footer .footer-text {
  font-size: 1rem;
  color: #555;
  margin-top: 10px;
}

/* Kediler için stil */
.cat {
  position: fixed;
  top: -50px;
  font-size: 30px;
  animation: fall linear infinite;
  pointer-events: none; /* Kedilere tıklanamaz */
}

/* Düşme animasyonu */
@keyframes fall {
  to {
    transform: translateY(100vh);
  }
}

/* Mobil cihazlar için ayarlar */
@media (max-width: 768px) {
  h1 {
    font-size: 24px;
  }

  h1:after {
    width: 8px;
    height: 8px;
  }

  #terminal {
    min-height: 150px;
  }

  footer .social-links {
    flex-direction: row;
    align-items: center;
    padding: 0 10px;
    width: 100%;
    justify-content: center;
  }

  footer a {
    width: auto;
    min-width: 100px;
    font-size: 14px;
  }
}