.w2d-explorer {
  position: relative;
  width: 100%;
  height: min(100vh, 900px);
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(10, 12, 16, 1);
}

/* Map container */
.w2d-explorer__map {
  position: absolute;
  inset: 0;
}

/* This is where Google Maps renders */
.w2d-explorer__mapInner {
  position: absolute;
  inset: 0;
}

/* While dragging sheet, prevent map from stealing gestures */
.w2d-explorer.is-sheet-dragging .w2d-explorer__mapInner {
  pointer-events: none;
}

.w2d-explorer__mapLabel {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  pointer-events: none; /* label shouldn't block map taps */
}

.w2d-explorer__mapTitle {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.w2d-explorer__mapSub {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(255,255,255,.75);
  line-height: 1.35;
}

.w2d-explorer__mockControls {
  position: absolute;
  left: 14px;
  right: 14px;
  top: 92px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  pointer-events: auto;
}

.w2d-btn {
  appearance: none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.30);
  color: rgba(255,255,255,.92);
  border-radius: 999px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.w2d-btn--primary {
  border-color: rgba(255,255,255,.22);
  background: rgba(90, 130, 255, .25);
}

/* Event cards */
.w2d-eventsList {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.w2d-eventCard {
  width: 100%;
  text-align: left;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  border-radius: 16px;
  padding: 12px;
  color: rgba(255,255,255,.92);
  cursor: pointer;
}

.w2d-eventCard.is-active {
  border-color: rgba(255,255,255,.28);
  background: rgba(90, 130, 255, .18);
}

.w2d-eventCard__title {
  font-size: 14px;
  font-weight: 750;
  margin-bottom: 6px;
}

.w2d-eventCard__meta {
  font-size: 12px;
  color: rgba(255,255,255,.72);
  display: flex;
  align-items: center;
  gap: 8px;
}

.w2d-dot { opacity: .7; }

.w2d-eventCard__badges {
  margin-top: 10px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.w2d-badge {
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.85);
}