/* Rafael Picture Styles */
:root {
    --rafael-glow-color: rgba(0, 255, 255, 0.3);
    --rafael-border-color: rgba(0, 255, 255, 0.4);
    --rafael-hover-color: #61a2d3;
}

#rafael-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
    /* Ensure it's above everything */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
    animation: rafaelFloat 4s ease-in-out infinite;
    cursor: pointer;
}

#rafael-pic {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid var(--rafael-border-color);
    box-shadow: 0 0 20px var(--rafael-glow-color);
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
    background-color: #000;
}

/* Hover Effects */
#rafael-container:hover #rafael-pic {
    transform: scale(1.1);
    border-color: var(--rafael-hover-color);
    box-shadow: 0 0 25px var(--rafael-hover-color), 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Floating Animation */
@keyframes rafaelFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Mobile Responsiveness - Adjust size/position if needed */
@media (max-width: 1200px) {
    #rafael-container {
        top: 15px;
        left: 15px;
    }

    #rafael-pic {
        width: 20px;
        height: 20px;
    }
}