.dp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.dp-card {
  width: 92%;
  max-width: 460px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  border-radius: 18px;
  padding: 30px;
  color: #fff;
  text-align: center;
}

.dp-badge {
  background: #ff3d00;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 10px;
}

.dp-highlight {
  background: rgba(255,255,255,0.15);
  padding: 12px;
  border-left: 4px solid #ff5252;
  border-radius: 8px;
  margin: 18px 0;
}

.dp-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.dp-btn {
  flex: 1;
  padding: 12px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.dp-btn.enter {
  background: #00c853;
}

.dp-btn.leave {
  background: #d50000;
  color: #fff;
}
