/* Venue Discovery UI Styles */

.venue-discovery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.venue-discovery-container {
  background: #0a0a0a;
  border: 2px solid #39ff14;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.3);
}

.venue-discovery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #39ff14;
  background: #111;
}

.venue-discovery-header h2 {
  margin: 0;
  color: #39ff14;
  font-family: "Courier New", monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.venue-discovery-content {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
  background: #0a0a0a;
}

.venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.venue-card {
  background: #111;
  border: 1px solid #333;
  padding: 20px;
  transition: all 0.3s;
}

.venue-card:hover {
  border-color: #39ff14;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.venue-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 10px;
}

.venue-header h3 {
  margin: 0;
  color: #39ff14;
  font-size: 1.1rem;
}

.venue-type {
  background: #222;
  color: #88cc88;
  padding: 4px 8px;
  font-size: 0.75rem;
  border-radius: 3px;
  font-family: "Courier New", monospace;
}

.venue-description {
  color: #88cc88;
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.venue-npcs {
  padding-top: 15px;
  border-top: 1px solid #333;
}

.npc-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.npc-list strong {
  color: #39ff14;
  margin-bottom: 8px;
  display: block;
}

.npc-trader-btn {
  width: 100%;
  padding: 10px;
  background: #39ff14;
  color: #000;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  font-family: "Courier New", monospace;
  text-align: left;
  text-transform: uppercase;
}

.npc-trader-btn:hover {
  background: #2ecc71;
  box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.no-npcs {
  color: #555;
  font-style: italic;
  font-size: 0.9rem;
}

.empty-msg {
  text-align: center;
  color: #88cc88;
  padding: 40px;
  font-style: italic;
  font-family: "Courier New", monospace;
}
