body, html { 
    margin: 0; 
    padding: 0; 
    width: 100%; 
    height: 100%; 
    background: #000; 
    overflow: hidden; 
}

#canvas-container { 
    position: fixed; 
    inset: 0; 
    z-index: 1; 
}

/* تصميم نافذة AirDrop مطابقة للآيفون */
#airdrop-modal { 
    position: absolute; 
    top: 30%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    background: rgba(255, 255, 255, 0.9); 
    color: #000; 
    padding: 20px; 
    border-radius: 15px; 
    width: 260px; 
    display: none; /* تظهر برمجياً في الثانية 24 */
    z-index: 1000; 
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    font-family: -apple-system, system-ui, sans-serif;
}

.airdrop-header { font-weight: bold; font-size: 1.1rem; margin-bottom: 5px; }
.airdrop-desc { font-size: 0.9rem; opacity: 0.7; }

/* تأثير الاهتزاز (الرعب النهائي) */
.horror-glitch { 
    animation: shake 0.1s infinite; 
    filter: contrast(1.5) hue-rotate(180deg); 
}

@keyframes shake {
    0% { transform: translate(2px, 1px); }
    50% { transform: translate(-2px, -1px); }
    100% { transform: translate(1px, -2px); }
}
