.global-hero {
    background: radial-gradient(circle at 50% 50%, #1e3a8a 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    padding-top: 180px;
    padding-bottom: 120px;
    color: white;
}

/* Dijital Wireframe Dünya */
.grid-world {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotate(20deg);
    width: 1200px; height: 1200px;
    background-image: linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    border-radius: 50%;
    opacity: 0.2;
    animation: world-spin 100s linear infinite;
    pointer-events: none;
}
@keyframes world-spin { 100% { transform: translate(-50%, -50%) rotate(380deg); } }

/* CSS Globe (Noktalı Küre & Yörüngeler) */
.globe-container {
    position: absolute; top: 10%; right: 5%;
    width: 600px; height: 600px;
    perspective: 1000px;
    animation: float-globe 12s ease-in-out infinite;
    pointer-events: none;
}
.globe-sphere {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    box-shadow: 0 0 100px rgba(59, 130, 246, 0.1) inset;
}
.globe-ring {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(59, 130, 246, 0.3);
    border-radius: 50%;
}
.ring-1 { width: 110%; height: 110%; animation: spin-slow 40s linear infinite; }
.ring-2 { width: 130%; height: 130%; animation: spin-slow 50s linear infinite reverse; opacity: 0.5; }

/* Uçaklar ve İzleri */
.plane-wrapper {
    position: absolute; top: 50%; left: 50%;
    width: 600px; height: 600px;
    transform: translate(-50%, -50%);
}
.plane-orbit {
    position: absolute; width: 100%; height: 100%;
    animation: orbit-spin linear infinite;
}
.plane-1 { animation-duration: 20s; transform: rotate(45deg); }
.plane-2 { animation-duration: 25s; transform: rotate(120deg); animation-direction: reverse; }
.plane-3 { animation-duration: 30s; transform: rotate(210deg); }

.plane-icon {
    position: absolute; top: -15px; left: 50%;
    color: #60a5fa; font-size: 1.5rem;
    transform: rotate(90deg);
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.8));
}
.contrail {
    position: absolute; top: 0; left: 50%;
    width: 150px; height: 2px;
    background: linear-gradient(to left, rgba(96, 165, 250, 0.8), transparent);
    transform-origin: left center;
    transform: rotate(-90deg) translateY(1px);
    opacity: 0.5;
}

/* Lojistik Akışı (Kayan Yazı) */
.logistics-ticker {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}
.ticker-content {
    display: inline-block;
    animation: ticker-scroll 30s linear infinite;
    font-family: monospace; font-size: 0.9rem; color: #94a3b8;
}
.ticker-item { margin: 0 20px; }
.ticker-item i { color: #60a5fa; margin-right: 5px; }

@keyframes float-globe { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-30px); } }
@keyframes spin-slow { 100% { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes orbit-spin { 100% { transform: rotate(360deg); } }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* 2. Özellik Kartları (Passport Style) */
.passport-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}
.passport-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    border-color: #60a5fa;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.card-bg-icon {
    position: absolute; bottom: -20px; right: -20px;
    font-size: 8rem; color: rgba(255,255,255,0.05);
    transform: rotate(-15deg);
    transition: all 0.4s;
}
.passport-card:hover .card-bg-icon { transform: rotate(0) scale(1.2); color: rgba(59, 130, 246, 0.1); }

/* 3. Simülasyon Ekranı (Language Switch) */
.sim-wrapper {
    position: relative;
    background: white; border-radius: 1.5rem;
    box-shadow: 0 30px 60px -15px rgba(0,0,0,0.2);
    overflow: hidden; border: 4px solid #e2e8f0;
}
.sim-header {
    background: #f1f5f9; padding: 15px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #e2e8f0;
}
.sim-dots { display: flex; gap: 6px; }
.sim-dot { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1; }
.sim-url { 
    background: white; padding: 5px 15px; border-radius: 99px; font-size: 0.8rem; color: #64748b; flex-grow: 1; text-align: center; font-family: monospace; 
    display: flex; align-items: center; justify-content: center; gap: 5px;
}
.flag-icon { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; }

/* 4. Radar Animasyonu (DÜZELTİLDİ: Konik Tarama) */
.radar-scan {
    position: relative; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.3);
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.1) inset;
    overflow: hidden;
}
/* Radar Izgarası */
.radar-grid {
    position: absolute; inset: 0;
    background-image: 
        linear-gradient(rgba(16, 185, 129, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    border-radius: 50%;
    z-index: 1;
}
.radar-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    border: 1px solid rgba(16, 185, 129, 0.2); border-radius: 50%;
    z-index: 1;
}
.r-1 { width: 25%; height: 25%; }
.r-2 { width: 50%; height: 50%; }
.r-3 { width: 75%; height: 75%; }

/* Konik Tarama (Cone Sweep) */
.radar-sweep {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: conic-gradient(from 0deg, rgba(16, 185, 129, 0.4) 0deg, transparent 60deg);
    border-radius: 50%;
    animation: radar-spin 4s linear infinite;
    z-index: 2;
    border-right: 2px solid rgba(16, 185, 129, 0.6); /* Tarama çizgisi */
}

/* Hedefler (Ping) */
.radar-ping {
    position: absolute; width: 12px; height: 12px; background: #10b981; border-radius: 50%;
    box-shadow: 0 0 15px #10b981;
    animation: ping-pulse 2s infinite;
    z-index: 3;
}

/* Yüzen Logolar (Ping ile Senkronize) */
.floating-logo {
    position: absolute; padding: 8px; background: white; border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: logo-float 3s ease-in-out infinite;
    z-index: 10;
}

@keyframes radar-spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes ping-pulse { 0% { opacity: 1; transform: scale(0.8); } 50% { opacity: 0.5; transform: scale(1.2); } 100% { opacity: 0; transform: scale(1.5); } }
@keyframes logo-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }