.my-trophy-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border: 2px solid #c00;
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateX(120%);
  transition: all 0.4s ease;
  z-index: 9999;  /* ? ??????? */
  font-size: 15px;

  /* ?? ??????????? */
  max-width: 600px;
  width: auto; /* ?????????? */
  white-space: nowrap; /* ?????????? */
}

/* ? ??????????????? */
@media (max-width: 480px) {
  .my-trophy-popup {
    max-width: calc(100% - 24px);
    white-space: normal; /* ?????????OK */
  }
}


/* ??????????? | ????? */
.my-trophy-popup-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ?????????????????? */
.mtp-icon-wrap {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ?????? */
.mtp-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* ?????????????? */
.my-trophy-popup-text {
  flex: 1 1 auto;
  min-width: 0;
}

/* ??????? */
.mtp-title {
  font-weight: 700;
  color: #c00;
  font-size: 15px;
  margin-bottom: 4px;
}
.mtp-desc {
  font-size: 13px;
  color: #333;
  line-height: 1.3;
}

/* ????????? */
.my-trophy-popup.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ????????? */
@media (max-width: 480px) {
  .my-trophy-popup { max-width: calc(100% - 24px); right: 12px; bottom: 12px; padding: 10px; }
  .mtp-icon-wrap { width:48px; height:48px; }
  .mtp-title { font-size: 14px; }
  .mtp-desc { font-size: 12px; }
}


/* ============================= */
/* ? ?????????locked??????? */
/* ============================= */
.trophy-item.locked {
  border-color: #bbb !important; /* ???? */
  opacity: 0.7;
}

.trophy-item.locked .trophy-icon {
  filter: grayscale(100%) brightness(0.8) !important; /* ???????? */
  opacity: 0.6;
}

.trophy-item.locked .trophy-name,
.trophy-item.locked .trophy-desc {
  color: #777 !important; /* ??????? */
}


/* ? ??????????????????? */
.exclusive-popup {
  background: linear-gradient(135deg, #fff7cc, #ffe89a);
  border-color: #ffcc00;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
  animation: pulse-glow 1.5s ease-in-out infinite;
}
.exclusive-popup .mtp-title {
  color: #b8860b;
}
.exclusive-popup .mtp-icon-img {
  border: 2px solid #ffcc00;
}

/* ? ???????? */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 204, 0, 0.6); }
  50% { box-shadow: 0 0 40px rgba(255, 204, 0, 1); }
}


.trophy-subtext {
  color: #000 !important;       /* ?? */
  font-weight: normal !important; /* ?????? */
}



