.tempo-tempo-popup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  max-width: 320px;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.tempo-tempo-popup__inner {
  position: relative;
  background: #0b1120;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.4);
}

.tempo-tempo-popup__image {
  display: block;
  width: 100%;
  height: auto;
}

.tempo-tempo-popup__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.75);
  color: #e5e7eb;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.tempo-tempo-popup__close:hover {
  background: rgba(15, 23, 42, 0.95);
}

@media (max-width: 600px) {
  .tempo-tempo-popup {
    right: 12px;
    bottom: 12px;
    max-width: 260px;
  }
}