#adCardDrone {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px; /* Sedikit lebih lebar buat padding */
    z-index: 99999;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px); /* Glassmorphism JOSS */
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.4);
    cursor: grab;
    display: none; /* Muncul via JS */
    transition: box-shadow 0.3s ease, opacity 0.5s ease;
    will-change: transform; /* Instruksi GPU Mode */
}

#adCardDrone:active { cursor: grabbing; }

.ad-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 5px;
}

.ad-label {
    font-size: 9px;
    font-weight: 800;
    color: #0ca14a; /* Hijau eCargo */
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ad-close {
    font-size: 20px;
    font-weight: bold;
    color: #ff4444;
    cursor: pointer;
    line-height: 1;
}

.ad-body {
    width: 300px;
    height: 250px;
    background: #fafafa;
    border-radius: 12px;
    overflow: hidden;
}