.landmark-card {
  border-radius: 12px;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.landmark-image-container {
  position: relative;
  height: 200px;
}

.landmark-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landmark-countdown-timer {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: #ef4444; /* red */
  color: white;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 10;
}

.landmark-card-content {
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
  color: white;
  position: relative;
  margin-top: -80px;
}

.landmark-title {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.landmark-location {
  font-size: 14px;
  color: #ddd;
  margin: 4px 0 12px;
}

.landmark-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.landmark-label {
  font-size: 12px;
  color: #bbb;
  margin: 0;
}

.landmark-value {
  font-size: 16px;
  font-weight: bold;
  color: white;
  margin: 0;
}

.landmark-increase-tag {
  background-color: #10b981; /* green */
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 16px;
  display: inline-block;
}

.landmark-explore-btn {
  width: 100%;
  padding: 12px;
  background-color: #f97316; /* orange */
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  margin-top: 8px;
}

.landmark-explore-btn:hover {
  background-color: #ea580c;
}
