
/* Arabe Easter Egg Styles */

.arabe-mini-container {
    position: fixed;
    bottom: -300px; /* Start well below screen */
    z-index: 99999;
    pointer-events: none; /* Allow clicks to pass through */
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100px; /* Base width */
    will-change: transform;
    animation: floatUpArabe linear forwards;
}

.arabe-mini-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.arabe-quote {
    background: #fff;
    color: #000;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    max-width: 200px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    border: 1px solid #ccc;
    font-family: 'Inter', sans-serif;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Speech Bubble Arrow */
.arabe-quote::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}

@keyframes floatUpArabe {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30vh) rotate(5deg);
    }
    50% {
        transform: translateY(-60vh) rotate(-5deg);
    }
    75% {
        transform: translateY(-90vh) rotate(5deg);
    }
    100% {
        transform: translateY(-130vh) rotate(0deg);
    }
}

@keyframes popIn {
    0% { opacity: 0; transform: scale(0.5) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .arabe-mini-container {
        width: 70px;
    }
    .arabe-quote {
        font-size: 10px;
        padding: 5px 8px;
        max-width: 150px;
    }
}
