* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    .hero {
      position: relative;
      width: 100%;
      overflow: hidden;
    }
    .hero img {
      display: block;
      width: 100%;
      height: auto;
      user-select: none;
    }
    .hotspot-wrap {
      position: absolute;
      left: 0;
      top: 0;
      transform: translate(-50%, -50%);
      pointer-events: auto;
      z-index: 6;
    }
    .hotspot {
      width: 27px;
      height: 27px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 2px solid rgba(255,255,255,0.95);
      background: linear-gradient(#0d6efd, #0347ac);
      cursor: pointer;
      box-shadow: 0 6px 18px rgba(0,0,0,0.18);
      position: relative;
      z-index: 7;
      outline: 0;
      padding: 0;
    }
    .hotspot .dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #d33;
      font-weight: 700;
      font-size: 14px;
      line-height: 1;
      z-index: 8;
    }
    .tip {
      position: absolute;
      top: 48px; 
      left: 50%;
      transform: translateX(-50%);
      background: #111;
      color: #fff;
      padding: 6px 8px;
      border-radius: 6px;
      font-size: 12px;
      white-space: nowrap;
      pointer-events: none;
      display: none; 
      z-index: 9;
    }
    .hotspot-wrap:hover .tip {
      display: block;
    }
    .hotspot[data-effect="soft"] {
      animation: softBreathe 2.6s ease-in-out infinite;
      box-shadow: 0 0 8px rgba(255,120,120,0.35);
    }
    @keyframes softBreathe {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.14);
        box-shadow: 0 0 22px rgba(255,120,120,0.6);
      }
      100% {
        transform: scale(1);
      }
    }
    .hotspot[data-effect="neon"] {
      background: linear-gradient(#ff3b3b, #ff6b6b);
      box-shadow:
        0 0 6px rgba(255,90,90,0.8),
        0 0 18px rgba(255,80,80,0.6),
        0 6px 24px rgba(255,40,40,0.12);
      animation: neonPulse 1.8s ease-in-out infinite;
    }
    @keyframes neonPulse {
      0% { transform: scale(1); filter: brightness(1); }
      50% { transform: scale(1.08); filter: brightness(1.18); }
      100% { transform: scale(1); filter: brightness(1); }
    }
    .hotspot[data-effect="ripple"] {
      position: relative;
      overflow: visible;
    }
    .hotspot[data-effect="ripple"]::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 0 rgba(13,110,253,0.45);
      animation: rippleRing 2.2s cubic-bezier(.12,.9,.3,1) infinite;
      pointer-events: none;
      z-index: 6;
    }
    @keyframes rippleRing {
      0% {
        transform: translate(-50%, -50%) scale(.9);
        box-shadow: 0 0 0 0 rgba(13,110,253,0.6);
        opacity: 1;
      }
      70% {
        transform: translate(-50%, -50%) scale(1.6);
        box-shadow: 0 0 0 18px rgba(13,110,253,0.06);
        opacity: .6;
      }
      100% {
        transform: translate(-50%, -50%) scale(2.1);
        box-shadow: 0 0 0 28px rgba(13,110,253,0.02);
        opacity: 0;
      }
    }
    .hotspot[data-effect="breathing"] {
      animation: breatheSlow 3s ease-in-out infinite;
      box-shadow: 0 0 10px rgba(255,90,90,0.28);
    }
    @keyframes breatheSlow {
      0% { transform: scale(1); }
      50% { transform: scale(1.12); box-shadow: 0 0 20px rgba(255,90,90,0.46); }
      100% { transform: scale(1); }
    }
    .hotspot[data-effect="heartbeat"] {
      animation: heartbeat 1.2s cubic-bezier(.2,.9,.4,1) infinite;
      box-shadow: 0 6px 20px rgba(255,70,70,0.35);
    }
    @keyframes heartbeat {
      0% { transform: scale(1); }
      10% { transform: scale(1.18); }
      30% { transform: scale(1); }
      50% { transform: scale(1.12); }
      100% { transform: scale(1); }
    }
    .modal {
      position: fixed;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0,0,0,0.64);
      visibility: hidden;
      opacity: 0;
      transition: opacity .12s ease, visibility .12s ease;
      padding: 20px;
      z-index: 50;
    }
    .modal.show {
      visibility: visible;
      opacity: 1;
    }
    .popup {
      width: min(560px, 96%);
      background: #fff;
      border-radius: 10px;
      padding: 18px;
      overflow: auto;
	  font-size: 16px;
    }
    .popup h2 {
      margin-bottom: 10px;
      font-size: 26px;
    }
    .popup img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      margin-bottom: 10px;
    }
    .popup p {
      color: #000000;
      margin-bottom: 10px;
	  font-size:16px;
    }
    .popup ul {
      padding-left: 18px;
      margin-bottom: 6px;
    }
    .close {
      float: right;
      background: #111;
      color: #fff;
      border: 0;
      padding: 8px 10px;
      border-radius: 6px;
      cursor: pointer;
      margin-bottom:10px;
	  width: 70px;
    }	
	.points {
	  margin-bottom:0px;
	  margin-top:0px;
	  font-size:24px;
    }
    @media (max-width: 600px) {
      .hotspot { width: 18px; height: 18px; }
      .hotspot .dot { width: 18px; height: 18px; font-size: 12px; }
    }