/**
 * Verified Adventure Display Styles
 * 
 * 우상단에 현재 인증된 원정대을 표시하는 UI 스타일
 */

.verified-adventure-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  animation: slideInRight 0.3s ease-out;
}

.verified-adventure-content {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.verified-adventure-content:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.verified-adventure-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  flex-shrink: 0;
}

.verified-adventure-icon svg {
  color: white;
}

.verified-adventure-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.verified-adventure-label {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.verified-adventure-name {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.verified-adventure-unverify-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  padding: 0;
  margin-left: 4px;
  opacity: 1;
  visibility: visible;
}

.verified-adventure-unverify-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.verified-adventure-unverify-btn:active {
  transform: scale(0.95);
  background: rgba(255, 255, 255, 0.5);
}

.verified-adventure-unverify-btn svg {
  color: white;
  fill: none;
  stroke: white;
  stroke-width: 2.5;
  width: 14px;
  height: 14px;
  display: block;
}

/* 알림 메시지 */
.verified-adventure-notification {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 10000;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  animation: slideInRight 0.3s ease-out;
  transition: opacity 0.3s ease;
}

.verified-adventure-notification.fade-out {
  opacity: 0;
}

.verified-adventure-notification-success {
  background: #10b981;
  color: white;
}

.verified-adventure-notification-error {
  background: #ef4444;
  color: white;
}

.verified-adventure-notification-info {
  background: #3b82f6;
  color: white;
}

/* 애니메이션 */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .verified-adventure-container {
    bottom: 10px;
    right: 10px;
  }

  .verified-adventure-content {
    padding: 10px 12px;
    gap: 10px;
  }

  .verified-adventure-icon {
    width: 28px;
    height: 28px;
  }

  .verified-adventure-icon svg {
    width: 16px;
    height: 16px;
  }

  .verified-adventure-label {
    font-size: 10px;
  }

  .verified-adventure-name {
    font-size: 13px;
    max-width: 150px;
  }

  .verified-adventure-unverify-btn {
    width: 24px;
    height: 24px;
  }

  .verified-adventure-unverify-btn svg {
    width: 14px;
    height: 14px;
  }

  .verified-adventure-notification {
    bottom: 60px;
    right: 10px;
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* 다크 모드 지원 */
@media (prefers-color-scheme: dark) {
  .verified-adventure-content {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .verified-adventure-content:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  }
}
