/* Basic, clean modal styling */
.mizu-gp-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}

.mizu-gp-modal {
  background: #fff;
  max-width: 560px;
  width: calc(100% - 32px);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
  padding: 20px 20px 12px;
  position: relative;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.mizu-gp-body { 
  color: #111; 
  font-size: 15px; 
  line-height: 1.6; 
}

.mizu-gp-close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

.mizu-gp-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.mizu-gp-reset-timer {
  font-size: 13px;
  text-decoration: underline;
  color: #555;
}

@media (prefers-reduced-motion:no-preference) {
  .mizu-gp-modal {
    transition: transform .2s ease, opacity .2s ease;
    transform: translateY(8px);
    opacity: 0;
  }
  .mizu-gp-overlay.mizu-gp-show .mizu-gp-modal {
    transform: translateY(0);
    opacity: 1;
  }
}
