.maps-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
}

.map-card{
  border:1px solid #333;
  background:#111;
  border-radius:12px;
  overflow:hidden;
}

.map-thumb img{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}

.map-info{
  padding:12px;
}

.map-title{
  font-weight:700;
  margin-bottom:6px;
}

.map-desc{
  font-size:13px;
  color:#bbb;
  margin-bottom:10px;
}

.map-meta{
  font-size:12px;
  color:#aaa;
  margin-bottom:10px;
}

.map-form button{
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid #444;
  background:#1b1b1b;
  color:#fff;
  cursor:pointer;
}

.map-card.locked{
  opacity:.65;
}

.map-locked{
  padding:10px 12px;
  border-radius:10px;
  border:1px dashed #444;
  color:#bbb;
  text-align:center;
}

.map-hint{
  font-size: 12px;
  color: #aaa;
}

.travel-box{
  margin:15px 0;
  padding:12px;
  border:1px solid #444;
  background:#141414;
  border-radius:10px;
  text-align:center;
  font-weight:600;
}

.travel-box button{
  margin-top:8px;
  padding:8px 12px;
  border-radius:10px;
  border:1px solid #444;
  background:#1b1b1b;
  color:#fff;
  cursor:pointer;
}

.travel-box-top {
  text-align: center;
}

.travel-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.travel-sub {
  font-size: 13px;
  color: #b8b8b8;
  line-height: 1.5;
  margin-bottom: 8px;
}

.travel-remaining {
  font-size: 15px;
  font-weight: 700;
}

.travel-progress-wrap {
  margin-top: 14px;
}

.travel-progress-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.travel-progress-fill {
  height: 100%;
  width: 35%;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8a14a, #f0c46b, #d8a14a);
}

.travel-progress-animated {
  animation: travelPulse 1.6s linear infinite;
  background-size: 200% 100%;
}

@keyframes travelPulse {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.map-meta-mount {
  color: #d9c18c;
}

.map-meta-mount-name {
  color: #9f9f9f;
  font-size: 12px;
  margin-left: 4px;
}

.map-card-target {
  box-shadow: 0 0 0 1px rgba(216, 161, 74, 0.45);
}

.map-locked-target {
  color: #d9c18c;
  border-color: rgba(216, 161, 74, 0.30);
  background: rgba(216, 161, 74, 0.08);
  font-weight: 700;
}

.map-locked-travel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.travel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8a14a;
  box-shadow: 0 0 10px rgba(216, 161, 74, 0.8);
  animation: travelDotPulse 1s ease-in-out infinite;
}

@keyframes travelDotPulse {
  0%, 100% {
    transform: scale(0.85);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}
