/* Canlı Uçuş Haritası — ferdi.fun */
/* Hero canlı rozeti */
.canli-rozet {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.82rem; font-weight: 600;
    color: #e0e7f0;
    background: rgba(10,22,40,0.65);
    border: 1px solid rgba(96,165,250,0.35);
    padding: 8px 16px; border-radius: 100px;
    margin-bottom: 22px; text-decoration: none;
    backdrop-filter: blur(8px);
    transition: all 0.2s;
}
.canli-rozet:hover { border-color: rgba(96,165,250,0.65); background: rgba(10,22,40,0.85); }
.canli-nokta {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e; flex-shrink: 0;
    animation: canliPulse 2s ease-in-out infinite;
}
@keyframes canliPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.45); }
    50% { opacity: 0.55; box-shadow: 0 0 0 7px rgba(34,197,94,0); }
}
.canli-rozet strong { color: #60a5fa; font-family: 'JetBrains Mono', monospace; }
.canli-kutu {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 14px;
    margin-top: 8px;
}
#ucakHarita {
    height: 420px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    z-index: 0;
}
.canli-footer {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    padding: 12px 6px 2px;
    font-size: 0.85rem; color: #94a3b8;
}
.canli-footer strong {
    color: #60a5fa; font-family: 'JetBrains Mono', monospace; font-size: 0.95rem;
}
.canli-yenile {
    padding: 7px 16px; border-radius: 100px;
    font-size: 0.8rem; font-weight: 600;
    background: rgba(96,165,250,0.12);
    border: 1px solid rgba(96,165,250,0.35);
    color: #60a5fa; cursor: pointer; font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}
.canli-yenile:hover { background: rgba(96,165,250,0.22); }
.canli-not { margin-left: auto; font-size: 0.75rem; color: #64748b; }
.ucak-marker { background: transparent; border: none; }
.ucak-popup { font-family: 'Inter', sans-serif; color: #e0e7f0; font-size: 0.85rem; line-height: 1.6; min-width: 160px; }
.ucak-popup-baslik { font-weight: 800; font-size: 0.95rem; color: #fff; margin-bottom: 2px; }
.ucak-popup-meta { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: #64748b; margin-top: 4px; }

/* Leaflet koyu tema uyumu */
.leaflet-container { background: #0a1628; font-family: 'Inter', sans-serif; }
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
    background: #0f1f38; color: #e0e7f0;
    border: 1px solid rgba(255,255,255,0.1);
}
.leaflet-popup-content-wrapper { border-radius: 10px; }
.leaflet-popup-content { margin: 12px 16px; }
.leaflet-popup-close-button { color: #64748b !important; }
.leaflet-control-zoom a {
    background: rgba(15,31,56,0.9); color: #94a3b8;
    border-color: rgba(255,255,255,0.1) !important;
}
.leaflet-control-zoom a:hover { color: #60a5fa; }
.leaflet-control-attribution {
    background: rgba(10,22,40,0.7); color: #64748b; font-size: 9px;
}
.leaflet-control-attribution a { color: #60a5fa; }

@media (max-width: 640px) {
    #ucakHarita { height: 320px; }
    .canli-not { width: 100%; margin-left: 0; }
}
