body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #030712;
    color: #f3f4f6;
    overflow-x: hidden;
    top: 0 !important;
}

/* Hide Default Google Translate Widget Frame */
.goog-te-banner-frame, 
.skiptranslate, 
#google_translate_element {
    display: none !important;
}

/* Glassmorphism Backgrounds (Dioptimalkan untuk Performa Mobile) */
.glass-panel {
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

@supports (backdrop-filter: blur(8px)) {
    .glass-panel {
        background: rgba(15, 23, 42, 0.82);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
}

.glass-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 10px 20px -5px rgba(14, 165, 233, 0.15);
}

/* =========================================================
   INTERACTIVE 3D CSS GLOBE (60 FPS Hardware Accelerated)
   ========================================================= */

#globe-container {
    width: 100%;
    min-height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
}

@media (min-width: 768px) {
    #globe-container {
        min-height: 360px;
    }
}

.globe-wrapper {
    position: relative;
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

@media (min-width: 640px) {
    .globe-wrapper {
        width: 280px;
        height: 280px;
    }
}

.globe-glow {
    position: absolute;
    width: 110%;
    height: 110%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, rgba(14, 165, 233, 0) 70%);
    pointer-events: none;
}

.globe-sphere {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #0c4a6e 0%, #030712 70%);
    border: 1px solid rgba(56, 189, 248, 0.5);
    box-shadow: inset -10px -10px 30px rgba(0, 0, 0, 0.8), 0 0 20px rgba(14, 165, 233, 0.2);
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .globe-sphere {
        width: 200px;
        height: 200px;
    }
}

.globe-grid {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(56, 189, 248, 0.15) 20px),
        repeating-linear-gradient(90deg, transparent, transparent 19px, rgba(56, 189, 248, 0.15) 20px);
    background-size: 20px 20px;
    animation: rotateGlobe 16s linear infinite;
    will-change: background-position;
}

@keyframes rotateGlobe {
    from { background-position: 0 0; }
    to { background-position: 200px 0; }
}

/* Orbit Ring & Plane Animations */
.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(56, 189, 248, 0.35);
    pointer-events: none;
    transform-style: preserve-3d;
}

.ring-1 {
    width: 210px;
    height: 90px;
    transform: rotateX(65deg) rotateY(-20deg);
}

.ring-2 {
    width: 230px;
    height: 100px;
    transform: rotateX(70deg) rotateY(30deg);
}

@media (min-width: 640px) {
    .ring-1 { width: 260px; height: 110px; }
    .ring-2 { width: 280px; height: 120px; }
}

.plane-container {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.plane-1 { animation: orbit1 5s linear infinite; }
.plane-2 { animation: orbit2 7s linear infinite; }

/* PERBAIKAN: Arah rotasi moncong kedua pesawat diatur ke +90deg agar terbang maju */
@keyframes orbit1 {
    0% { transform: rotate(0deg) translateX(105px) rotate(90deg); }
    100% { transform: rotate(360deg) translateX(105px) rotate(90deg); }
}

@keyframes orbit2 {
    0% { transform: rotate(180deg) translateX(115px) rotate(90deg); }
    100% { transform: rotate(540deg) translateX(115px) rotate(90deg); }
}

@media (min-width: 640px) {
    @keyframes orbit1 {
        0% { transform: rotate(0deg) translateX(130px) rotate(90deg); }
        100% { transform: rotate(360deg) translateX(130px) rotate(90deg); }
    }
    @keyframes orbit2 {
        0% { transform: rotate(180deg) translateX(140px) rotate(90deg); }
        100% { transform: rotate(540deg) translateX(140px) rotate(90deg); }
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #030712; }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #0ea5e9; }