/* Hece Okçusu - Kinesthetic Learning Style */

.game-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 15px;
}

/* Hedef Alanı */
.target-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.target-board {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #f5f5f5;
  box-shadow: var(--shadow-lg), inset 0 0 30px rgba(0, 0, 0, 0.1);
}

.target-ring {
  position: absolute;
  border-radius: 50%;
  border: 4px solid;
}

.ring-outer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-color: #2196f3;
  background: linear-gradient(135deg, #bbdefb 0%, #90caf9 100%);
}

.ring-middle {
  top: 25%;
  left: 25%;
  width: 50%;
  height: 50%;
  border-color: #f44336;
  background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
}

.ring-inner {
  top: 40%;
  left: 40%;
  width: 20%;
  height: 20%;
  border-color: #ffd700;
  background: linear-gradient(135deg, #fff9c4 0%, #ffeb3b 100%);
}

.target-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.target-emoji {
  font-size: 3rem;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* Ok Animasyonu */
.arrows-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.arrow-hit {
  position: absolute;
  font-size: 1.5rem;
  transform-origin: center;
  animation: arrowHit 0.3s ease-out forwards;
  z-index: 10;
}

@keyframes arrowHit {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-45deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.3) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(-45deg);
  }
}

.arrow-miss {
  position: absolute;
  font-size: 1.5rem;
  animation: arrowMiss 0.5s ease-out forwards;
}

@keyframes arrowMiss {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(50px) rotate(45deg);
  }
}

/* Kelime Gösterimi */
.word-display {
  display: flex;
  gap: 8px;
  justify-content: center;
  background: white;
  padding: 15px 25px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.word-slot {
  min-width: 50px;
  height: 45px;
  border: 3px dashed var(--gray-400);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-500);
  transition: all 0.3s ease;
}

.word-slot.filled {
  border-style: solid;
  border-color: var(--success);
  background: var(--success-light);
  color: var(--success);
}

.word-slot.active {
  border-color: var(--primary);
  background: var(--primary-light);
  animation: pulse 1s ease infinite;
}

/* Yay Alanı */
.bow-area {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 25px;
  background: linear-gradient(135deg, #8d6e63 0%, #6d4c41 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.bow-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bow {
  font-size: 3rem;
  transform: scaleX(-1);
}

.selected-arrow {
  min-width: 80px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  border: 2px dashed rgba(255, 255, 255, 0.5);
}

.selected-arrow.loaded {
  border-style: solid;
  border-color: white;
  background: rgba(255, 255, 255, 0.3);
  animation: arrowReady 0.5s ease infinite alternate;
}

@keyframes arrowReady {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-5px);
  }
}

.shoot-btn {
  font-size: 1.1rem;
  padding: 12px 25px;
}

.shoot-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Ok Seçenekleri */
.arrow-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 450px;
}

.arrow-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-lg);
  border: 3px solid transparent;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.2);
}

.arrow-btn::before {
  content: "🏹";
  font-size: 1.2rem;
}

.arrow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 0 rgba(0, 0, 0, 0.2);
}

.arrow-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
}

.arrow-btn.selected {
  border-color: white;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.arrow-btn.used {
  opacity: 0.3;
  pointer-events: none;
}

/* Renk Sınıfları */
.arrow-red {
  background: linear-gradient(135deg, #ff6b6b 0%, #e55a5a 100%);
}
.arrow-orange {
  background: linear-gradient(135deg, #ffa94d 0%, #ff9933 100%);
}
.arrow-yellow {
  background: linear-gradient(135deg, #ffe066 0%, #ffd633 100%);
  color: #333;
}
.arrow-green {
  background: linear-gradient(135deg, #69db7c 0%, #51cf66 100%);
}
.arrow-blue {
  background: linear-gradient(135deg, #74c0fc 0%, #4dabf7 100%);
}
.arrow-purple {
  background: linear-gradient(135deg, #b197fc 0%, #9775fa 100%);
}
.arrow-pink {
  background: linear-gradient(135deg, #f783ac 0%, #f06595 100%);
}
.arrow-magenta {
  background: linear-gradient(135deg, #e64980 0%, #d6336c 100%);
}

/* Responsive */
@media (max-width: 600px) {
  .target-board {
    width: 160px;
    height: 160px;
  }

  .target-emoji {
    font-size: 2.5rem;
  }

  .bow {
    font-size: 2.5rem;
  }

  .selected-arrow {
    min-width: 60px;
    height: 40px;
    font-size: 1.1rem;
  }

  .arrow-btn {
    padding: 10px 14px;
    font-size: 1rem;
  }

  .word-slot {
    min-width: 40px;
    height: 38px;
    font-size: 1rem;
  }
}
