* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
background-color: #304E7F;
  color: #ffffff;
  font-family: 'Special Gothic Expanded One', sans-serif;
  overflow: hidden;
}


.yazi-ortalama {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.loading-yazi {
  position: relative;
  font-size: 3.5rem;
  font-weight: bold;
 background: linear-gradient(90deg, #8fd3fe, #b3ecff, #ffffff);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease infinite;
}


.kose-logo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.kose-logo img {
  width: 35px;
  height: auto;
  display: block;
}

.altkose-text {
  font-size: 0.7rem;
 color: #b3ecff;
}


.kare-ler {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 0;
}

.kar {
  position: absolute;
  width: 150px;
  height: 150px;
background: linear-gradient(135deg, #6ca6c1, #a0d8ef);
  opacity: 0.66;
  filter: blur(56px);
  border-radius: 25px;
  transition: top 4s ease, left 4s ease, transform 4s ease;
}


.kar:nth-child(1) { top: 5%; left: 10%; }
.kar:nth-child(2) { top: 15%; left: 80%; }
.kar:nth-child(3) { top: 25%; left: 30%; }
.kar:nth-child(4) { top: 35%; left: 60%; }
.kar:nth-child(5) { top: 45%; left: 20%; }
.kar:nth-child(6) { top: 55%; left: 70%; }
.kar:nth-child(7) { top: 65%; left: 40%; }
.kar:nth-child(8) { top: 75%; left: 90%; }
.kar:nth-child(9) { top: 85%; left: 15%; }
.kar:nth-child(10) { top: 95%; left: 50%; }
.kar:nth-child(11) { top: 10%; left: 55%; }
.kar:nth-child(12) { top: 20%; left: 25%; }
.kar:nth-child(13) { top: 30%; left: 75%; }
.kar:nth-child(14) { top: 40%; left: 5%; }
.kar:nth-child(15) { top: 50%; left: 95%; }
.kar:nth-child(16) { top: 60%; left: 35%; }
.kar:nth-child(17) { top: 70%; left: 65%; }
.kar:nth-child(18) { top: 70%; left: 63%; }
.kar:nth-child(19) { top: 73%; left: 61%; }
.kar:nth-child(20) { top: 75%; left: 63%; }


@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


@media (max-width: 768px) {
  .loading-yazi {
    font-size: 2rem;
  }

  .kose-logo {
    flex-direction: row;
    align-items: center;
    bottom: 10px;
    left: 10px;
    gap: 8px;
flex-wrap: nowrap;
  }

  .kose-logo img {
    width: 24px;
  }

  .altkose-text {
    font-size: 0.5rem;
  }

