/* === Sentinel Standalone Layer === */

.sentinel-box {
  position: absolute !important;
  top: 300px !important;
  right: 95px !important;

  width: 240px !important;   /* controls total block width */
  padding: 10px !important;
  text-align: center !important;

  z-index: 999 !important;
}

.sentinel-text {
  margin: 0 0 8px 0 !important;
  font-family: 'Permanent Marker', cursive !important;
  font-size: 0.85rem !important;
  line-height: 1.3 !important;
  color: #ffffff !important;

  text-shadow:
    0 0 5px #00ffff,
    0 0 10px #ff00ff !important;
}

.sentinel-image {
  display: block !important;

  width: 180px !important;   /* 🔥 HARD LIMIT SIZE */
  height: auto !important;

  margin: 0 auto !important;

  border-radius: 10px !important;

  box-shadow:
    0 0 8px #00ffff,
    0 0 16px #00ffff,
    0 0 24px #ff00ff !important;

  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
}

.sentinel-image:hover {
  transform: scale(1.03) !important;
  box-shadow:
    0 0 12px #00ffff,
    0 0 24px #ff00ff,
    0 0 36px #ff00ff !important;
}
