/* Mob Drop Modal Improvements */

/* Seçilen Mob Header */
.mob-selected-header {
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  border: 2px solid #ffd700;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.mob-selected-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700, #ff6b6b, #ffd700);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.mob-selected-info {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-selected-details h4 {
  color: #ffd700;
  font-size: 1.6em;
  font-weight: 700;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  letter-spacing: 0.5px;
}

.mob-selected-details p {
  color: #ccc;
  font-size: 1.1em;
  margin: 0;
  font-weight: 500;
}

/* Geri Dön Butonları */
.chest-back-btn,
.mob-back-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ccc;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9em;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10;
}

.chest-back-btn:hover,
.mob-back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Sabit Geri Dön Butonu */
.mob-detail-header button:hover,
.chest-detail-header button:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .mob-selected-details h4 {
    font-size: 1.4em;
  }
  
  .chest-back-btn,
  .mob-back-btn {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    margin-bottom: 15px;
  }
  
  .mob-detail-header,
  .chest-detail-header {
    flex-direction: column !important;
    gap: 15px !important;
    text-align: center !important;
  }
  
  .mob-detail-header button,
  .chest-detail-header button {
    width: 100% !important;
  }
}
