/* Estilo del mensaje flotante */
.explore-hint {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    animation: slideInRight 0.5s ease-out;
    display: none;
}

.explore-hint.show {
    display: block;
}

.hint-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.hint-content:hover {
    transform: translateX(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.hint-content i:first-child {
    font-size: 18px;
    animation: bounce 1s infinite;
}

.hint-close {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    margin-left: 8px;
}

.hint-close:hover {
    background: rgba(255,255,255,0.4);
}

.hint-arrow {
    position: absolute;
    right: 30px;
    top: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #667eea;
}

/* Animaciones */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Versión responsive para móviles */
@media (max-width: 768px) {
    .explore-hint {
        top: 70px;
        left: 10px;
        left: 10px;
    }
    
    .hint-content {
        font-size: 12px;
        padding: 10px 16px;
        justify-content: center;
    }
    
    .hint-arrow {
        left: 20px;
    }
}
