.inpage-ad {
  position: fixed;
  bottom: 15px;
  right: 15px;
  max-width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
  font-family: Arial, sans-serif;
  overflow: hidden;
  z-index: 9999;
  animation: slideUp .5s ease-out;
}
.inpage-ad img { width: 100%; display: block; }
.inpage-ad-content { padding: 10px; }
.inpage-ad-title { font-size: 16px; font-weight: bold; margin-bottom: 6px; color: #333; }
.inpage-ad-text { font-size: 14px; color: #555; margin-bottom: 10px; }
.inpage-ad button {
  background: #EB1454;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}
.inpage-ad-close {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-size: 18px;
  color: #888;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
