#ocoy-popup-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #F59946;
  color: white;
  font-size: 24px;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  animation: ocoy-zoom 0.5s infinite alternate; /* Add this line */
  display: flex;
  flex-direction: column;
  align-items: center;
}

@keyframes ocoy-zoom {
  0% { transform: scale(1);}
  100% { transform: scale(1.15);}
}

#ocoy-popup-modal {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 350px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.25);
  z-index: 10000;
  overflow: hidden;
  animation: fadeIn 0.4s ease-in-out;
}

.ocoy-popup-content {
  padding: 15px;
  font-family: sans-serif;
}

.ocoy-popup-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

#ocoy-popup-close {
  float: right;
  font-size: 18px;
  cursor: pointer;
  color: #F59946;
}

.ocoy-register-btn {
  display: block;
  margin: 10px 0;
  width: 150px;
  padding: 8px 15px;
  background: #1e88e5;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
    color: white;
    background: #F59946;
    margin: 0 auto;
}

a.ocoy-register-btn {
    background: darkcyan;
    color: white;
    text-decoration: none;
    text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
