.map-wrapper {
            max-width: 1000px; width: 100%;
            position: relative; margin-top: 20px;
        }

        .map-container { position: relative; width: 100%; line-height: 0; }
        .map-container img { width: 100%; height: auto; border-radius: 8px; }

        /* SHARED HOTSPOT STYLE */
        .hotspot {
            position: absolute; cursor: pointer;
            border: 5px dashed #000; border-radius: 4px;
            z-index: 10; background-color: rgba(0, 0, 0, 0.15);
            animation: pulse-glow 2s infinite ease-in-out;
        }

        @keyframes pulse-glow {
            0%, 100% { transform: scale(1); border-color: #37C078; }
            50% { transform: scale(1.05); border-color: #FF6D01; }
        }

        /* INDIVIDUAL POSITIONS (Using % for responsiveness) */
        #basket-hotspot {
            top: 30%; left: 21.2%;
            width: 3.5%; height: 10.5%;
        }
		
		#swimming-hotspot {
            top: 24%; left: 26%;
            width: 4.5%; height: 5.0%;
        }
		
		#kabadi-hotspot {
            top: 30%; left: 26%;
            width: 4.5%; height: 6.0%;
        }
		
		#tennis-hotspot {
            top: 37%; left: 26%;
            width: 4.5%; height: 10.0%;
        }
		
		#volley-hotspot {
            top: 49%; left: 26%;
            width: 4.5%; height: 10.0%;
        }

        #skating-hotspot {
            /* Positioned roughly 30px (~3-4% depending on image height) below the first */
            top: 43%; left: 21.2%; 
            width: 3.5%; height: 14.5%;
        }

        /* MODAL STYLING */
        .modal {
            visibility: hidden; opacity: 0;
            position: absolute; width: 60%; max-width: 280px;
            background-color: white; border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            z-index: 100; transition: all 0.3s ease;
            line-height: 1.4; pointer-events: none;
        }

        .modal.visible { visibility: visible; opacity: 1; pointer-events: auto; }

        .modal-header { 
            background: #37C078; color: white; padding: 8px 12px;
            border-top-left-radius: 8px; border-top-right-radius: 8px;
            display: flex; justify-content: space-between; align-items: center;
        }

        .close-btn { cursor: pointer; font-size: 1.2rem; }
        .modal-body { padding: 12px; }
        .modal-body img { width: 100%; border-radius: 4px; margin-bottom: 8px; }
        .modal-body p { margin: 0; text-align:left; }

        @media (max-width: 600px) {
            .modal { left: 10% !important; width: 80%; top: 5% !important; }
        }