/* Font ve genel sıfırlama */
body {
  margin: 0;
  padding: 0;
  font-family: 'Press Start 2P', monospace;
  background-color: #000;
  color: #f2f2f2;
  overflow: hidden;
  position: relative;
}

/* Arka plan görseli */
.background {
  background-image: url("https://karakutuna.neocities.org/images/resim_2025-08-03_054042251.png"); /* kendi bilgisayarındaki koyu turuncu fotoğraf */
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: -1;
  filter: brightness(0.6);
}

/* Logo */
.logo {
  text-align: center;
  font-size: 20px;
  color: #ff9d00;
  margin-top: 30px;
}

/* Açıklama */
.description {
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
  color: #d6d6d6;
}

/* Karakter */
.character {
  display: block;
  margin: 30px auto 20px;
  max-height: 50vh;
  height: auto;
}

/* Navigasyon ikonları */
.navigation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.nav-icon {
  width: 12vw;
  max-width: 200px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 2px solid #ff9d00;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.nav-icon:hover {
  transform: scale(1.1);
  cursor: pointer;
}

}
