body {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 20px;
  background-color: #3d0fe5;
}







/* ------------------------------------------------------------------------------------ */

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  width: 97%;
  background: #000; /* siyah */
  color: #fff;
  border-radius: 30px;
  align-items: center;
  text-align: center;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-left .logo {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.nav-left .site-desc {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  align-items: center;
   background: linear-gradient(135deg, #5a25d4, #a8edea);
   width: 220px;
  height: 30px;
  border-radius: 50px;
}


.nav-left .site-desc:hover {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  align-items: center;
   background: rgb(18, 18, 143);
   color: yellow;
   width: 220px;
  height: 30px;
  border-radius: 50px;
}



.nav-right a {
  background: linear-gradient(135deg, #5a25d4, #a8edea);
  color: white;
  padding: 10px 16px;
  margin: 0 5px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-right a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
   background: rgb(18, 18, 143);
   color: yellow;
}






/* Hamburger buton */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* Mobil görünüm */
@media (max-width: 768px) {
  .nav-right {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #5a25d4;
    text-align: center;
    margin-top: 10px;
    border-radius: 8px;
  }

  .nav-right a {
    display: block;
    margin: 10px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-right.active {
    display: flex;
  }
}



/* ------------------------------------------------------------------------------------ */










h2 {
      text-align: center;
      color: #fcf9f9;
      background-color: #0f7a9b;
      
    }
 p5 {
      text-align: center;
      background-color: #3d0fe5;
      color: #fbf2f2;
      font-size: 14px;
    }

  p9 {
      text-align: center;
      background-color: #e70a8b;
      color: yellow;
      font-size: 14px;
      font-weight: bolder;
    }

 p6 {
      text-align: center;
      background-color: #3d0fe5;
      color: #c27be6;
      font-weight: bold;
      font-size: 24px;
    }

     p7 {
      text-align: center;
      background-color: #f2f2f5;
      color: #ba0c55;
     
      font-size: 18px;
    }

 h5 {
      text-align: center;
      background-color: #3d0fe5;
      color: #b60f0f;
      font-size: 20px;
    }

    .centered-title span {
      display: inline-block;
      font-size: 30px;
      font-weight: bold;
      animation: bounceLetters 1s infinite;
    }

    .centered-title span:nth-child(1) { animation-delay: 0s; }
    .centered-title span:nth-child(2) { animation-delay: 0.1s; }
    .centered-title span:nth-child(3) { animation-delay: 0.2s; }
    .centered-title span:nth-child(4) { animation-delay: 0.3s; }
    .centered-title span:nth-child(5) { animation-delay: 0.4s; }
    .centered-title span:nth-child(6) { animation-delay: 0.5s; }
    .centered-title span:nth-child(7) { animation-delay: 0.6s; }
    .centered-title span:nth-child(8) { animation-delay: 0.7s; }
    .centered-title span:nth-child(9) { animation-delay: 0.8s; }

 @keyframes bounceLetters {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-15px);
      }
    }

.music-icon-x {
      display: inline-block;
      font-size: 35px;
      color: rgb(110, 30, 30);
      animation: wave-flag 1s infinite ease-in-out;
      transform-origin: left center;
      width: 50px;
      height: auto;
      cursor: pointer;
      vertical-align: middle;
      margin: 0 10px;
    }

    .music-icon-y {
      display: inline-block;
      animation: bounceY 1s infinite ease-in-out;
      font-size: 25px;
      color: rgb(110, 30, 30);
      width: 30px;
      height: auto;
      cursor: pointer;
      vertical-align: middle;
      margin: 0 10px;
    }

    @keyframes wave-flag {
      0% {
        transform: rotate(0deg) skewX(0deg);
      }
      25% {
        transform: rotate(5deg) skewX(5deg);
      }
      50% {
        transform: rotate(0deg) skewX(0deg);
      }
      75% {
        transform: rotate(-5deg) skewX(-5deg);
      }
      100% {
        transform: rotate(0deg) skewX(0deg);
      }
    }

    @keyframes bounceY {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-15px);
      }
    }

#drag-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

#dropzones {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.dropzone {
  border: 2px dashed #592525;
  min-height: 120px;
  width: 200px;
  padding: 10px;
  background: #0e9037;
  border-radius: 10px;
}

.dropzone h3 {
  margin-top: 0;
  background-color: #f0e675;
  padding: 5px;
  border-radius: 6px;
}

#words {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.draggable {
  background: #f3eb4a;
  padding: 8px 12px;
  border: 5px solid #7f126b;
  border-radius: 5px;
  cursor: move;
  user-select: none;
}

.draggable.wrong {
  background: #ffcdd2;
  border: 5px solid #1d0202;
}

#drag-result {
  font-weight: bold;
  margin-top: 20px;
  font-size: 42px;
  color: rgb(191, 149, 236);
}

#fireworks-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
}
footer {
  background: linear-gradient(135deg, #0066cc, #00bfff);
  border-radius: 50px;
  height: 40px;
  width: 97%;

}