/* ==========================================================================
   WeChat Popup Styles - Minimal Version
   ========================================================================== */

/* Modal overlay - hidden by default */
.wechat-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;  /* Hidden by default - THIS IS THE KEY FIX */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Show state - displayed when 'show' class is added */
.wechat-modal.show {
  display: flex;  /* Show modal using flex layout */
}

/* Modal content area */
.modal-content {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Close button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  padding: 0;
  line-height: 1;
}

.close-btn:hover {
  color: #333;
}

/* Modal title */
.modal-content h3 {
  margin: 0 0 20px 0;
}

/* QR code image */
.modal-content img {
  width: 220px;
  height: 220px;
  margin: 20px auto;
  display: block;
}

/* Text paragraphs */
.modal-content p {
  margin: 10px 0;
}

/* Account username */
.modal-content .username {
  font-weight: bold;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .modal-content {
    width: 95%;
    padding: 30px 20px;
  }
  
  .modal-content img {
    width: 180px;
    height: 180px;
  }
}
