
@import url('00_main.css');
@import url('01_sidebar.css');
@import url('02_chat.css');
@import url('03_modals.css');

/* --- LAYAR PANGGILAN PALSU --- */
#incomingCallModal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Background Gelap Elegan */
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    transform: translateY(100%); /* Sembunyi di bawah */
    transition: transform 0.3s ease-in-out;
}

#incomingCallModal.active {
    transform: translateY(0); /* Muncul */
}

.caller-avatar-large {
    width: 120px; height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    margin-bottom: 20px;
    animation: pulse-ring 2s infinite;
}

.caller-name { font-size: 24px; font-weight: bold; margin-bottom: 10px; }
.call-status { font-size: 16px; opacity: 0.8; margin-bottom: 50px; }

.call-actions {
    display: flex; gap: 40px;
}

.btn-call-action {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: white;
}

.btn-answer { background-color: #25D366; animation: bounce 1.5s infinite; }
.btn-reject { background-color: #FF3B30; }

@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
@keyframes bounce { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
