/*
 * Game Mode · Unlock Markers (styles)
 *
 * Companion to site-unlock-mark.js. Loaded on the main guangliliu.com
 * site to decorate work grid items the viewer has reached via Game Mode.
 *
 * Three variants (all painted by site-unlock-mark.js):
 *   .gm-unlocked                · ⬢ public-unlock (all four routes)
 *   .gm-censored-seen           · ◇ SELF_CENSORED taunt shown
 *   .gm-predicament-assembled   · ◈ SELF_CENSORED assembled in Predicament
 *
 * Deploy to /media/scripts/site-unlock-mark.css?v=gmYYYYMMDD and reference
 * from home.txt.
 */

/* ===== ⬢ Public unlock · solid blue dot ===== */
.gm-unlocked {
  position: relative;
}

.gm-unlocked::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0066ff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9);
  z-index: 3;
  pointer-events: none;
  animation: gmUnlockedPulse 2.8s ease-in-out infinite;
}

@keyframes gmUnlockedPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1.0;  transform: scale(1.15); }
}

.gm-unlocked:hover {
  outline: 1px solid rgba(0, 102, 255, 0.4);
  outline-offset: 4px;
}

/* ===== ◇ Self-censored seen · hollow gray diamond ===== */
.gm-censored-seen {
  position: relative;
}

.gm-censored-seen::after {
  content: "◇";
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 14px;
  color: #8a8276;
  z-index: 3;
  pointer-events: none;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

.gm-censored-seen:hover {
  outline: 1px solid rgba(138, 130, 118, 0.4);
  outline-offset: 4px;
}

/* ===== ◈ Predicament-assembled · filled diamond w/ warm tint ===== */
.gm-predicament-assembled {
  position: relative;
}

.gm-predicament-assembled::after {
  content: "◈";
  position: absolute;
  top: 4px;
  right: 8px;
  font-size: 14px;
  color: #b8a978;
  z-index: 3;
  pointer-events: none;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.7);
}

.gm-predicament-assembled:hover {
  outline: 1px solid rgba(184, 169, 120, 0.55);
  outline-offset: 4px;
}
