#magic-hat-wrapper {
  position: fixed;
  top: 50%; 
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: rgba(255,255,255,0.9);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.magic-hat {
  cursor: pointer;
  transition: transform 0.2s;
}

.magic-hat:hover {
  transform: scale(1.2);
}

#magic-hat-popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

#magic-hat-popup .popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#magic-hat-popup h2 {
  margin-bottom: 15px;
}

#magic-hat-popup .promo-code {
  font-size: 22px;
  font-weight: bold;
  color: purple;
  margin: 15px 0;
}

#magic-hat-popup button {
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  background: purple;
  color: white;
  cursor: pointer;
}
#magic-hat-popup button:hover {
  background: darkviolet;
}
