/* earth-view.css — "skyra" → Mavi Gezegen görünümü, ekran ipucu overlay'i
   Kaldırmak için: bu dosya + earth-view.js + Simulation/Index.cshtml [EARTH] satırları. */
#ev-hint {
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translate(-50%, 14px);
    z-index: 2100;                 /* sim overlay'leriyle uyumlu, navbar üstü */
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(12, 16, 40, .82);
    border: 1px solid rgba(120, 180, 255, .35);
    color: #dce7ff;
    font: 600 13px/1 system-ui, -apple-system, 'Segoe UI', sans-serif;
    letter-spacing: .01em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .5);
    pointer-events: none;
    opacity: 0;
    transition: opacity .35s ease, transform .35s ease;
}
#ev-hint.is-on {
    opacity: 1;
    transform: translate(-50%, 0);
}
@media (prefers-reduced-motion: reduce) {
    #ev-hint { transition: opacity .2s ease; }
}

/* İRL gezi haritası — şehir kartı (pin'e tıklayınca) */
#ev-city {
    position: fixed;
    left: 22px;
    bottom: 26px;
    z-index: 2100;
    min-width: 180px;
    max-width: 320px;
    padding: 12px 15px;
    border-radius: 14px;
    background: rgba(10, 16, 38, .90);
    border: 1px solid rgba(80, 210, 255, .40);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .55);
    color: #eaf6ff;
    font: 500 13px/1.4 system-ui, -apple-system, 'Segoe UI', sans-serif;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}
#ev-city.is-on { opacity: 1; transform: translateY(0); }
#ev-city b { display: block; font-size: 16px; color: #7fe6ff; }
#ev-city span { display: block; margin-top: 2px; color: #aebfe0; font-size: 12px; }
#ev-city p { margin: 8px 0 0; color: #dce7ff; }
