#lwc-wheel-wrapper {
  text-align: center;
  margin: 40px auto;
}

#lwc-spin-btn {
  margin-top: 20px;
  padding: 14px 28px;
  font-size: 16px;
  background: #e11d48;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}

#lwc-spin-btn:hover {
  transform: scale(1.05);
}
#lwc-wheel-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
  margin: auto;
}

/* CANVAS */
#lwc-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* NÚT TRÒN GIỮA */
#spin {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;

  background-image: url('https://vongquaymayman.co/wp-content/themes/twentytwentythree-child/assets/buttons/christmas-5.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  box-shadow: 0 0 0 6px #fff;
}

/* MŨI TÊN */
#spin:after {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-bottom-color: #fff;
  border-top: none;
}


/* ===== OVERLAY ===== */
#lwc-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9998;
  display: none;
}

/* ===== POPUP ===== */
#lwc-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  background: #fff;
  padding: 30px 25px;
  width: 90%;
  max-width: 360px;
  border-radius: 18px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 15px 40px rgba(0,0,0,.25);
  animation: lwc-popup-in .4s ease forwards;
    display: none; /* 👈 THÊM */

}

#lwc-popup.show {
  display: block;
}
/* ICON */
.lwc-popup-icon {
  font-size: 50px;
  margin-bottom: 10px;
}

/* TITLE */
#lwc-popup h3 {
  margin: 10px 0;
  font-size: 22px;
  color: #c81d11;
}

/* TEXT */
#lwc-popup-text {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* BUTTON */
#lwc-popup-close {
  background: #c81d11;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
}

/* ANIMATION */
@keyframes lwc-popup-in {
  from {
    opacity: 0;
    transform: translate(-50%, -60%) scale(.6);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
